diff options
author | Loïc Hoguin <[email protected]> | 2013-04-30 03:21:55 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-04-30 03:21:55 +0200 |
commit | e0130d64c9f9fe50f86ccf6b0eaa9ac6a31fbf0b (patch) | |
tree | 21fe6b9c57fdb39469821bfede08c765feaa8f89 /test/acceptor_SUITE.erl | |
parent | ae1d1846c6cfaa5f0ec7d34cd07ec8e856d1cfae (diff) | |
parent | 3cc134ef693e6c8184d82635faa195d1010603c7 (diff) | |
download | ranch-e0130d64c9f9fe50f86ccf6b0eaa9ac6a31fbf0b.tar.gz ranch-e0130d64c9f9fe50f86ccf6b0eaa9ac6a31fbf0b.tar.bz2 ranch-e0130d64c9f9fe50f86ccf6b0eaa9ac6a31fbf0b.zip |
Merge branch 'ssl_listen_nofile' of git://github.com/archaelus/ranch
Diffstat (limited to 'test/acceptor_SUITE.erl')
-rw-r--r-- | test/acceptor_SUITE.erl | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/acceptor_SUITE.erl b/test/acceptor_SUITE.erl index 861ea33..f7f3b31 100644 --- a/test/acceptor_SUITE.erl +++ b/test/acceptor_SUITE.erl @@ -30,6 +30,7 @@ %% ssl. -export([ssl_accept_error/1]). -export([ssl_accept_socket/1]). +-export([ssl_accept_socket_nofile/1]). -export([ssl_active_echo/1]). -export([ssl_echo/1]). @@ -70,6 +71,7 @@ groups() -> ]}, {ssl, [ ssl_accept_error, ssl_accept_socket, + ssl_accept_socket_nofile, ssl_active_echo, ssl_echo ]}, {misc, [ @@ -136,6 +138,31 @@ ssl_accept_error(Config) -> true = is_process_alive(AcceptorPid), ranch:stop_listener(Name). +ssl_accept_socket_nofile(Config) -> + %%% XXX we can't do the spawn to test the controlling process change + %%% because of the bug in ssl + {ok, Pem} = file:read_file(filename:join(?config(data_dir, Config), + "cert.pem")), + [{KeyType, Key, not_encrypted}, + {_CertType, Cert, not_encrypted}] = public_key:pem_decode(Pem), + Name = ssl_accept_socket, + {ok, S} = ssl:listen(0, + [{cert, Cert}, {key, {KeyType, Key}}, binary, + {active, false}, {packet, raw}, {reuseaddr, true}]), + {ok, _} = ranch:start_listener(Name, 1, + ranch_ssl, [{socket, S}], echo_protocol, []), + Port = ranch:get_port(Name), + {ok, Socket} = ssl:connect("localhost", Port, + [binary, {active, false}, {packet, raw}, + {certfile, ?config(data_dir, Config) ++ "cert.pem"}]), + ok = ssl:send(Socket, <<"TCP Ranch is working!">>), + {ok, <<"TCP Ranch is working!">>} = ssl:recv(Socket, 21, 1000), + ok = ranch:stop_listener(Name), + {error, closed} = ssl:recv(Socket, 0, 1000), + %% Make sure the listener stopped. + {'EXIT', _} = begin catch ranch:get_port(Name) end, + ok. + ssl_accept_socket(Config) -> %%% XXX we can't do the spawn to test the controlling process change %%% because of the bug in ssl |