Browse Source

Add cow_http_hd:access_control_allow_methods/1

Andrei Nesterov 9 years ago
parent
commit
987f4d5e84
1 changed files with 29 additions and 0 deletions
  1. 29 0
      src/cow_http_hd.erl

+ 29 - 0
src/cow_http_hd.erl

@@ -114,6 +114,7 @@
 %% Building.
 -export([access_control_allow_credentials/0]).
 -export([access_control_allow_headers/1]).
+-export([access_control_allow_methods/1]).
 
 -type etag() :: {weak | strong, binary()}.
 -export_type([etag/0]).
@@ -3251,6 +3252,34 @@ horse_access_control_allow_headers() ->
 	).
 -endif.
 
+%% @doc Build the Access-Control-Allow-Methods header.
+
+-spec access_control_allow_methods([binary()]) -> iodata().
+access_control_allow_methods(Methods) ->
+	join_token_list(nonempty(Methods)).
+
+-ifdef(TEST).
+access_control_allow_methods_test_() ->
+	Tests = [
+		{[<<"GET">>], <<"GET">>},
+		{[<<"GET">>, <<"POST">>, <<"DELETE">>], <<"GET, POST, DELETE">>}
+	],
+	[{lists:flatten(io_lib:format("~p", [V])),
+		fun() -> R = iolist_to_binary(access_control_allow_methods(V)) end} || {V, R} <- Tests].
+
+access_control_allow_methods_error_test_() ->
+	Tests = [
+		[]
+	],
+	[{lists:flatten(io_lib:format("~p", [V])),
+		fun() -> {'EXIT', _} = (catch access_control_allow_methods(V)) end} || V <- Tests].
+
+horse_access_control_allow_methods() ->
+	horse:repeat(200000,
+		access_control_allow_methods([<<"GET">>, <<"POST">>, <<"DELETE">>])
+	).
+-endif.
+
 %% Internal.
 
 %% Only return if the list is not empty.