aboutsummaryrefslogtreecommitdiffstats
path: root/src/cow_http_hd.erl
diff options
context:
space:
mode:
Diffstat (limited to 'src/cow_http_hd.erl')
-rw-r--r--src/cow_http_hd.erl29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/cow_http_hd.erl b/src/cow_http_hd.erl
index 0baacab..80a2f8a 100644
--- a/src/cow_http_hd.erl
+++ b/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.