Browse Source

Reorganize the http test suite

Loïc Hoguin 12 years ago
parent
commit
ad91aaf81a

+ 14 - 14
test/http_SUITE.erl

@@ -319,21 +319,21 @@ end_per_group(Name, _) ->
 init_dispatch(Config) ->
 	cowboy_router:compile([
 		{"localhost", [
-			{"/chunked_response", chunked_handler, []},
-			{"/init_shutdown", http_handler_init_shutdown, []},
-			{"/long_polling", http_handler_long_polling, []},
+			{"/chunked_response", http_chunked, []},
+			{"/init_shutdown", http_init_shutdown, []},
+			{"/long_polling", http_long_polling, []},
 			{"/headers/dupe", http_handler,
 				[{headers, [{<<"connection">>, <<"close">>}]}]},
-			{"/set_resp/header", http_handler_set_resp,
+			{"/set_resp/header", http_set_resp,
 				[{headers, [{<<"vary">>, <<"Accept">>}]}]},
-			{"/set_resp/overwrite", http_handler_set_resp,
+			{"/set_resp/overwrite", http_set_resp,
 				[{headers, [{<<"server">>, <<"DesireDrive/1.0">>}]}]},
-			{"/set_resp/body", http_handler_set_resp,
+			{"/set_resp/body", http_set_resp,
 				[{body, <<"A flameless dance does not equal a cycle">>}]},
-			{"/stream_body/set_resp", http_handler_stream_body,
+			{"/stream_body/set_resp", http_stream_body,
 				[{reply, set_resp}, {body, <<"stream_body_set_resp">>}]},
 			{"/stream_body/set_resp_close",
-				http_handler_stream_body, [
+				http_stream_body, [
 					{reply, set_resp_close},
 					{body, <<"stream_body_set_resp_close">>}]},
 			{"/static/[...]", cowboy_static,
@@ -343,7 +343,7 @@ init_dispatch(Config) ->
 				[{directory, ?config(static_dir, Config)},
 				 {mimetypes, {fun(Path, data) when is_binary(Path) ->
 					[<<"text/html">>] end, data}}]},
-			{"/handler_errors", http_handler_errors, []},
+			{"/handler_errors", http_errors, []},
 			{"/static_attribute_etag/[...]", cowboy_static,
 				[{directory, ?config(static_dir, Config)},
 				 {etag, {attributes, [filepath, filesize, inode, mtime]}}]},
@@ -354,9 +354,9 @@ init_dispatch(Config) ->
 				[{directory, ?config(static_dir, Config)},
 				 {mimetypes, [{<<".css">>, [<<"text/css">>]}]},
 				 {file, <<"test_file.css">>}]},
-			{"/multipart", http_handler_multipart, []},
-			{"/echo/body", http_handler_echo_body, []},
-			{"/echo/body_qs", http_handler_body_qs, []},
+			{"/multipart", http_multipart, []},
+			{"/echo/body", http_echo_body, []},
+			{"/echo/body_qs", http_body_qs, []},
 			{"/param_all", rest_param_all, []},
 			{"/bad_accept", rest_simple_resource, []},
 			{"/bad_content_type", rest_patch_resource, []},
@@ -370,8 +370,8 @@ init_dispatch(Config) ->
 			{"/resetags", rest_resource_etags, []},
 			{"/rest_expires", rest_expires, []},
 			{"/rest_empty_resource", rest_empty_resource, []},
-			{"/loop_recv", http_handler_loop_recv, []},
-			{"/loop_timeout", http_handler_loop_timeout, []},
+			{"/loop_recv", http_loop_recv, []},
+			{"/loop_timeout", http_loop_timeout, []},
 			{"/", http_handler, []}
 		]}
 	]).

+ 1 - 1
test/http_handler_body_qs.erl → test/http_SUITE_data/http_body_qs.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_body_qs).
+-module(http_body_qs).
 -behaviour(cowboy_http_handler).
 -export([init/3, handle/2, terminate/3]).
 

+ 1 - 1
test/chunked_handler.erl → test/http_SUITE_data/http_chunked.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(chunked_handler).
+-module(http_chunked).
 -behaviour(cowboy_http_handler).
 -export([init/3, handle/2, terminate/3]).
 

+ 1 - 1
test/http_handler_echo_body.erl → test/http_SUITE_data/http_echo_body.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_echo_body).
+-module(http_echo_body).
 -behaviour(cowboy_http_handler).
 -export([init/3, handle/2, terminate/3]).
 

+ 1 - 1
test/http_handler_errors.erl → test/http_SUITE_data/http_errors.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_errors).
+-module(http_errors).
 -behaviour(cowboy_http_handler).
 -export([init/3, handle/2, terminate/3]).
 

+ 0 - 0
test/http_handler.erl → test/http_SUITE_data/http_handler.erl


+ 1 - 1
test/http_handler_init_shutdown.erl → test/http_SUITE_data/http_init_shutdown.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_init_shutdown).
+-module(http_init_shutdown).
 -behaviour(cowboy_http_handler).
 -export([init/3, handle/2, terminate/3]).
 

+ 1 - 1
test/http_handler_long_polling.erl → test/http_SUITE_data/http_long_polling.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_long_polling).
+-module(http_long_polling).
 -behaviour(cowboy_http_handler).
 -export([init/3, handle/2, info/3, terminate/3]).
 

+ 1 - 1
test/http_handler_loop_recv.erl → test/http_SUITE_data/http_loop_recv.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_loop_recv).
+-module(http_loop_recv).
 -behaviour(cowboy_loop_handler).
 -export([init/3, info/3, terminate/3]).
 

+ 1 - 1
test/http_handler_loop_timeout.erl → test/http_SUITE_data/http_loop_timeout.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_loop_timeout).
+-module(http_loop_timeout).
 -behaviour(cowboy_loop_handler).
 -export([init/3, info/3, terminate/3]).
 

+ 1 - 1
test/http_handler_multipart.erl → test/http_SUITE_data/http_multipart.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_multipart).
+-module(http_multipart).
 -behaviour(cowboy_http_handler).
 -export([init/3, handle/2, terminate/3]).
 

+ 1 - 1
test/http_handler_set_resp.erl → test/http_SUITE_data/http_set_resp.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_set_resp).
+-module(http_set_resp).
 -behaviour(cowboy_http_handler).
 -export([init/3, handle/2, terminate/3]).
 

+ 1 - 1
test/http_handler_stream_body.erl → test/http_SUITE_data/http_stream_body.erl

@@ -1,6 +1,6 @@
 %% Feel free to use, reuse and abuse the code in this file.
 
--module(http_handler_stream_body).
+-module(http_stream_body).
 -behaviour(cowboy_http_handler).
 -export([init/3, handle/2, terminate/3]).
 

+ 0 - 0
test/rest_empty_resource.erl → test/http_SUITE_data/rest_empty_resource.erl


+ 0 - 0
test/rest_expires.erl → test/http_SUITE_data/rest_expires.erl


+ 0 - 0
test/rest_forbidden_resource.erl → test/http_SUITE_data/rest_forbidden_resource.erl


+ 0 - 0
test/rest_missing_callbacks.erl → test/http_SUITE_data/rest_missing_callbacks.erl


+ 0 - 0
test/rest_nodelete_resource.erl → test/http_SUITE_data/rest_nodelete_resource.erl


+ 0 - 0
test/rest_param_all.erl → test/http_SUITE_data/rest_param_all.erl


+ 0 - 0
test/rest_patch_resource.erl → test/http_SUITE_data/rest_patch_resource.erl


+ 0 - 0
test/rest_resource_etags.erl → test/http_SUITE_data/rest_resource_etags.erl


+ 0 - 0
test/rest_simple_resource.erl → test/http_SUITE_data/rest_simple_resource.erl