diff options
author | Fredrik Gustafsson <[email protected]> | 2013-08-21 11:23:20 +0200 |
---|---|---|
committer | Ingela Anderton Andin <[email protected]> | 2014-02-05 10:32:23 +0100 |
commit | 459c933d7c186ea7d862b9fe4f308e9ea632a3d2 (patch) | |
tree | 817242a84a8b5bd90ea9ce3e7800d923dd3e211d | |
parent | 79377d58e3f42a3f866998f2135c42c05a51d945 (diff) | |
download | otp-459c933d7c186ea7d862b9fe4f308e9ea632a3d2.tar.gz otp-459c933d7c186ea7d862b9fe4f308e9ea632a3d2.tar.bz2 otp-459c933d7c186ea7d862b9fe4f308e9ea632a3d2.zip |
inets: added simple testcase for option erl_script_nocache
-rw-r--r-- | lib/inets/test/httpd_basic_SUITE.erl | 25 |
1 files changed, 24 insertions, 1 deletions
diff --git a/lib/inets/test/httpd_basic_SUITE.erl b/lib/inets/test/httpd_basic_SUITE.erl index 523cf9d38c..92024b6fdf 100644 --- a/lib/inets/test/httpd_basic_SUITE.erl +++ b/lib/inets/test/httpd_basic_SUITE.erl @@ -33,7 +33,8 @@ suite() -> [{ct_hooks,[ts_install_cth]}]. all() -> [ uri_too_long_414, - header_too_long_413, + header_too_long_413, + erl_script_nocache_opt, escaped_url_in_error_body, slowdose ]. @@ -178,6 +179,28 @@ header_too_long_413(Config) when is_list(Config) -> {version, "HTTP/1.1"}]), inets:stop(httpd, Pid). +%%------------------------------------------------------------------------- +%%------------------------------------------------------------------------- + +erl_script_nocache_opt(doc) -> + ["Test that too long headers's get 413 HTTP code"]; +erl_script_nocache_opt(suite) -> + []; +erl_script_nocache_opt(Config) when is_list(Config) -> + HttpdConf = ?config(httpd_conf, Config), + {ok, Pid} = inets:start(httpd, [{port, 0}, {erl_script_nocache, true} | HttpdConf]), + Info = httpd:info(Pid), + Port = proplists:get_value(port, Info), + _Address = proplists:get_value(bind_address, Info), + URL1 = ?URL_START ++ integer_to_list(Port), + case httpc:request(get, {URL1 ++ "/dummy.html", []}, + [{url_encode, false}, + {version, "HTTP/1.0"}], + [{full_result, false}]) of + {ok, {200, _}} -> + ok + end, + inets:stop(httpd, Pid). %%------------------------------------------------------------------------- %%------------------------------------------------------------------------- |