aboutsummaryrefslogtreecommitdiffstats
path: root/test/http_SUITE.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-03-02 14:38:10 +0100
committerLoïc Hoguin <[email protected]>2013-03-02 14:39:05 +0100
commit0ba06578f2c0c100797aac34d0e8cca7fd8a8ed7 (patch)
tree2234fa55e9ee2b3b4bfbc2bdf6759c563a9025ea /test/http_SUITE.erl
parent8dd6ce83571b54a4cc7fe571c98afdbec57bbc31 (diff)
downloadcowboy-0ba06578f2c0c100797aac34d0e8cca7fd8a8ed7.tar.gz
cowboy-0ba06578f2c0c100797aac34d0e8cca7fd8a8ed7.tar.bz2
cowboy-0ba06578f2c0c100797aac34d0e8cca7fd8a8ed7.zip
Use random ports for tests
Diffstat (limited to 'test/http_SUITE.erl')
-rw-r--r--test/http_SUITE.erl32
1 files changed, 16 insertions, 16 deletions
diff --git a/test/http_SUITE.erl b/test/http_SUITE.erl
index 8e53dc7..b684e6a 100644
--- a/test/http_SUITE.erl
+++ b/test/http_SUITE.erl
@@ -180,19 +180,18 @@ end_per_suite(_Config) ->
ok.
init_per_group(http, Config) ->
- Port = 33080,
Transport = ranch_tcp,
Config1 = init_static_dir(Config),
- {ok, _} = cowboy:start_http(http, 100, [{port, Port}], [
+ {ok, _} = cowboy:start_http(http, 100, [{port, 0}], [
{env, [{dispatch, init_dispatch(Config1)}]},
{max_keepalive, 50},
{timeout, 500}
]),
+ Port = ranch:get_port(http),
{ok, Client} = cowboy_client:init([]),
[{scheme, <<"http">>}, {port, Port}, {opts, []},
{transport, Transport}, {client, Client}|Config1];
init_per_group(https, Config) ->
- Port = 33081,
Transport = ranch_ssl,
Opts = [
{certfile, ?config(data_dir, Config) ++ "cert.pem"},
@@ -202,29 +201,29 @@ init_per_group(https, Config) ->
Config1 = init_static_dir(Config),
application:start(public_key),
application:start(ssl),
- {ok, _} = cowboy:start_https(https, 100, Opts ++ [{port, Port}], [
+ {ok, _} = cowboy:start_https(https, 100, Opts ++ [{port, 0}], [
{env, [{dispatch, init_dispatch(Config1)}]},
{max_keepalive, 50},
{timeout, 500}
]),
+ Port = ranch:get_port(https),
{ok, Client} = cowboy_client:init(Opts),
[{scheme, <<"https">>}, {port, Port}, {opts, Opts},
{transport, Transport}, {client, Client}|Config1];
init_per_group(http_compress, Config) ->
- Port = 33082,
Transport = ranch_tcp,
Config1 = init_static_dir(Config),
- {ok, _} = cowboy:start_http(http_compress, 100, [{port, Port}], [
+ {ok, _} = cowboy:start_http(http_compress, 100, [{port, 0}], [
{compress, true},
{env, [{dispatch, init_dispatch(Config1)}]},
{max_keepalive, 50},
{timeout, 500}
]),
+ Port = ranch:get_port(http_compress),
{ok, Client} = cowboy_client:init([]),
[{scheme, <<"http">>}, {port, Port}, {opts, []},
{transport, Transport}, {client, Client}|Config1];
init_per_group(https_compress, Config) ->
- Port = 33083,
Transport = ranch_ssl,
Opts = [
{certfile, ?config(data_dir, Config) ++ "cert.pem"},
@@ -234,59 +233,60 @@ init_per_group(https_compress, Config) ->
Config1 = init_static_dir(Config),
application:start(public_key),
application:start(ssl),
- {ok, _} = cowboy:start_https(https_compress, 100, Opts ++ [{port, Port}], [
+ {ok, _} = cowboy:start_https(https_compress, 100, Opts ++ [{port, 0}], [
{compress, true},
{env, [{dispatch, init_dispatch(Config1)}]},
{max_keepalive, 50},
{timeout, 500}
]),
+ Port = ranch:get_port(https_compress),
{ok, Client} = cowboy_client:init(Opts),
[{scheme, <<"https">>}, {port, Port}, {opts, Opts},
{transport, Transport}, {client, Client}|Config1];
init_per_group(onrequest, Config) ->
- Port = 33084,
Transport = ranch_tcp,
- {ok, _} = cowboy:start_http(onrequest, 100, [{port, Port}], [
+ {ok, _} = cowboy:start_http(onrequest, 100, [{port, 0}], [
{env, [{dispatch, init_dispatch(Config)}]},
{max_keepalive, 50},
{onrequest, fun onrequest_hook/1},
{timeout, 500}
]),
+ Port = ranch:get_port(onrequest),
{ok, Client} = cowboy_client:init([]),
[{scheme, <<"http">>}, {port, Port}, {opts, []},
{transport, Transport}, {client, Client}|Config];
init_per_group(onresponse, Config) ->
- Port = 33085,
Transport = ranch_tcp,
- {ok, _} = cowboy:start_http(onresponse, 100, [{port, Port}], [
+ {ok, _} = cowboy:start_http(onresponse, 100, [{port, 0}], [
{env, [{dispatch, init_dispatch(Config)}]},
{max_keepalive, 50},
{onresponse, fun onresponse_hook/4},
{timeout, 500}
]),
+ Port = ranch:get_port(onresponse),
{ok, Client} = cowboy_client:init([]),
[{scheme, <<"http">>}, {port, Port}, {opts, []},
{transport, Transport}, {client, Client}|Config];
init_per_group(onresponse_capitalize, Config) ->
- Port = 33086,
Transport = ranch_tcp,
- {ok, _} = cowboy:start_http(onresponse_capitalize, 100, [{port, Port}], [
+ {ok, _} = cowboy:start_http(onresponse_capitalize, 100, [{port, 0}], [
{env, [{dispatch, init_dispatch(Config)}]},
{max_keepalive, 50},
{onresponse, fun onresponse_capitalize_hook/4},
{timeout, 500}
]),
+ Port = ranch:get_port(onresponse_capitalize),
{ok, Client} = cowboy_client:init([]),
[{scheme, <<"http">>}, {port, Port}, {opts, []},
{transport, Transport}, {client, Client}|Config];
init_per_group(set_env, Config) ->
- Port = 33087,
Transport = ranch_tcp,
- {ok, _} = cowboy:start_http(set_env, 100, [{port, Port}], [
+ {ok, _} = cowboy:start_http(set_env, 100, [{port, 0}], [
{env, [{dispatch, []}]},
{max_keepalive, 50},
{timeout, 500}
]),
+ Port = ranch:get_port(set_env),
{ok, Client} = cowboy_client:init([]),
[{scheme, <<"http">>}, {port, Port}, {opts, []},
{transport, Transport}, {client, Client}|Config].