Browse Source

Alphabetical order some tests

Loïc Hoguin 7 years ago
parent
commit
0828e0b9ce
1 changed files with 27 additions and 27 deletions
  1. 27 27
      test/static_handler_SUITE.erl

+ 27 - 27
test/static_handler_SUITE.erl

@@ -209,6 +209,11 @@ bad_dir_route(Config) ->
 	{500, _, _} = do_get("/bad/dir/route", Config),
 	ok.
 
+bad_file_in_priv_dir_in_ez_archive(Config) ->
+	doc("Get a missing file from a priv_dir stored in Erlang application .ez archive."),
+	{404, _, _} = do_get("/ez_priv_dir/index.php", Config),
+	ok.
+
 bad_file_path(Config) ->
 	doc("Bad cowboy_static options: wrong path."),
 	{404, _, _} = do_get("/bad/file/path", Config),
@@ -234,6 +239,11 @@ bad_priv_dir_app(Config) ->
 	{500, _, _} = do_get("/bad/priv_dir/app/style.css", Config),
 	ok.
 
+bad_priv_dir_in_ez_archive(Config) ->
+	doc("Bad cowboy_static options: priv_dir path missing from Erlang application .ez archive."),
+	{404, _, _} = do_get("/bad/ez_priv_dir/index.html", Config),
+	ok.
+
 bad_priv_dir_no_priv(Config) ->
 	doc("Bad cowboy_static options: application has no priv directory."),
 	{404, _, _} = do_get("/bad/priv_dir/no-priv/style.css", Config),
@@ -254,6 +264,11 @@ bad_priv_file_app(Config) ->
 	{500, _, _} = do_get("/bad/priv_file/app", Config),
 	ok.
 
+bad_priv_file_in_ez_archive(Config) ->
+	doc("Bad cowboy_static options: priv_file path missing from Erlang application .ez archive."),
+	{404, _, _} = do_get("/bad/ez_priv_file/index.php", Config),
+	ok.
+
 bad_priv_file_no_priv(Config) ->
 	doc("Bad cowboy_static options: application has no priv directory."),
 	{404, _, _} = do_get("/bad/priv_file/no-priv", Config),
@@ -731,12 +746,24 @@ mime_hardcode_tuple(Config) ->
 	{_, <<"application/vnd.ninenines.cowboy+xml;v=1">>} = lists:keyfind(<<"content-type">>, 1, Headers),
 	ok.
 
+priv_dir_in_ez_archive(Config) ->
+	doc("Get a file from a priv_dir stored in Erlang application .ez archive."),
+	{200, Headers, <<"<h1>It works!</h1>\n">>} = do_get("/ez_priv_dir/index.html", Config),
+	{_, <<"text/html">>} = lists:keyfind(<<"content-type">>, 1, Headers),
+	ok.
+
 priv_file(Config) ->
 	doc("Get a file with hardcoded route."),
 	{200, Headers, <<"body{color:red}\n">>} = do_get("/priv_file/style.css", Config),
 	{_, <<"text/css">>} = lists:keyfind(<<"content-type">>, 1, Headers),
 	ok.
 
+priv_file_in_ez_archive(Config) ->
+	doc("Get a file stored in Erlang application .ez archive."),
+	{200, Headers, <<"<h1>It works!</h1>\n">>} = do_get("/ez_priv_file/index.html", Config),
+	{_, <<"text/html">>} = lists:keyfind(<<"content-type">>, 1, Headers),
+	ok.
+
 unicode_basic_latin(Config) ->
 	doc("Get a file with non-urlencoded characters from Unicode Basic Latin block."),
 	_ = [case do_get("/char/" ++ [C], Config) of
@@ -788,30 +815,3 @@ unknown_option(Config) ->
 	{200, Headers, <<"body{color:red}\n">>} = do_get("/unknown/option", Config),
 	{_, <<"text/css">>} = lists:keyfind(<<"content-type">>, 1, Headers),
 	ok.
-
-priv_file_in_ez_archive(Config) ->
-	doc("Get a file stored in Erlang application .ez archive."),
-	{200, Headers, <<"<h1>It works!</h1>\n">>} = do_get("/ez_priv_file/index.html", Config),
-	{_, <<"text/html">>} = lists:keyfind(<<"content-type">>, 1, Headers),
-	ok.
-
-bad_priv_file_in_ez_archive(Config) ->
-	doc("Bad cowboy_static options: priv_file path missing from Erlang application .ez archive."),
-	{404, _, _} = do_get("/bad/ez_priv_file/index.php", Config),
-	ok.
-
-priv_dir_in_ez_archive(Config) ->
-	doc("Get a file from a priv_dir stored in Erlang application .ez archive."),
-	{200, Headers, <<"<h1>It works!</h1>\n">>} = do_get("/ez_priv_dir/index.html", Config),
-	{_, <<"text/html">>} = lists:keyfind(<<"content-type">>, 1, Headers),
-	ok.
-
-bad_file_in_priv_dir_in_ez_archive(Config) ->
-	doc("Get a missing file from a priv_dir stored in Erlang application .ez archive."),
-	{404, _, _} = do_get("/ez_priv_dir/index.php", Config),
-	ok.
-
-bad_priv_dir_in_ez_archive(Config) ->
-	doc("Bad cowboy_static options: priv_dir path missing from Erlang application .ez archive."),
-	{404, _, _} = do_get("/bad/ez_priv_dir/index.html", Config),
-	ok.