rfc7231_SUITE.erl 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945
  1. %% Copyright (c) 2017, Loïc Hoguin <essen@ninenines.eu>
  2. %%
  3. %% Permission to use, copy, modify, and/or distribute this software for any
  4. %% purpose with or without fee is hereby granted, provided that the above
  5. %% copyright notice and this permission notice appear in all copies.
  6. %%
  7. %% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
  8. %% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
  9. %% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
  10. %% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
  11. %% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
  12. %% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  13. %% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  14. -module(rfc7231_SUITE).
  15. -compile(export_all).
  16. -compile(nowarn_export_all).
  17. -import(ct_helper, [config/2]).
  18. -import(ct_helper, [doc/1]).
  19. -import(cowboy_test, [gun_open/1]).
  20. -import(cowboy_test, [gun_open/2]).
  21. -import(cowboy_test, [raw_open/1]).
  22. -import(cowboy_test, [raw_send/2]).
  23. -import(cowboy_test, [raw_recv_head/1]).
  24. -import(cowboy_test, [raw_recv/3]).
  25. all() ->
  26. cowboy_test:common_all().
  27. groups() ->
  28. cowboy_test:common_groups(ct_helper:all(?MODULE)).
  29. init_per_group(Name, Config) ->
  30. cowboy_test:init_common_groups(Name, Config, ?MODULE).
  31. end_per_group(Name, _) ->
  32. cowboy_test:stop_group(Name).
  33. init_dispatch(_) ->
  34. cowboy_router:compile([{"[...]", [
  35. {"*", asterisk_h, []},
  36. {"/", hello_h, []},
  37. {"/echo/:key", echo_h, []},
  38. {"/delay/echo/:key", echo_h, []},
  39. {"/resp/:key[/:arg]", resp_h, []},
  40. {"/ws", ws_init_h, []}
  41. ]}]).
  42. %% @todo The documentation should list what methods, headers and status codes
  43. %% are handled automatically so users can know what befalls to them to implement.
  44. %% Representations.
  45. %% Cowboy has cowboy_compress_h that could be concerned with this.
  46. %% However Cowboy will not attempt to compress if any content-coding
  47. %% is already applied, regardless of what they are.
  48. %
  49. % If one or more encodings have been applied to a representation, the
  50. % sender that applied the encodings MUST generate a Content-Encoding
  51. % header field that lists the content codings in the order in which
  52. % they were applied. Additional information about the encoding
  53. % parameters can be provided by other header fields not defined by this
  54. % specification. (RFC7231 3.1.2.2)
  55. %% Methods.
  56. method_get(Config) ->
  57. doc("The GET method is accepted. (RFC7231 4.3.1)"),
  58. ConnPid = gun_open(Config),
  59. Ref = gun:get(ConnPid, "/", [
  60. {<<"accept-encoding">>, <<"gzip">>}
  61. ]),
  62. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  63. {ok, <<"Hello world!">>} = gun:await_body(ConnPid, Ref),
  64. ok.
  65. method_head(Config) ->
  66. doc("The HEAD method is accepted. (RFC7231 4.3.2)"),
  67. ConnPid = gun_open(Config),
  68. Ref = gun:head(ConnPid, "/", [
  69. {<<"accept-encoding">>, <<"gzip">>}
  70. ]),
  71. {response, fin, 200, _} = gun:await(ConnPid, Ref),
  72. ok.
  73. method_head_same_resp_headers_as_get(Config) ->
  74. doc("Responses to HEAD should return the same headers as GET. (RFC7231 4.3.2)"),
  75. ConnPid = gun_open(Config),
  76. Ref1 = gun:get(ConnPid, "/", [
  77. {<<"accept-encoding">>, <<"gzip">>}
  78. ]),
  79. {response, nofin, 200, Headers1} = gun:await(ConnPid, Ref1),
  80. {ok, <<"Hello world!">>} = gun:await_body(ConnPid, Ref1),
  81. Ref2 = gun:head(ConnPid, "/", [
  82. {<<"accept-encoding">>, <<"gzip">>}
  83. ]),
  84. {response, fin, 200, Headers2} = gun:await(ConnPid, Ref2),
  85. %% We remove the date header since the date might have changed between requests.
  86. Headers = lists:keydelete(<<"date">>, 1, Headers1),
  87. Headers = lists:keydelete(<<"date">>, 1, Headers2),
  88. ok.
  89. method_head_same_resp_headers_as_get_stream_reply(Config) ->
  90. doc("Responses to HEAD should return the same headers as GET. (RFC7231 4.3.2)"),
  91. ConnPid = gun_open(Config),
  92. Ref1 = gun:get(ConnPid, "/resp/stream_reply2/200", [
  93. {<<"accept-encoding">>, <<"gzip">>}
  94. ]),
  95. {response, nofin, 200, Headers1} = gun:await(ConnPid, Ref1),
  96. {ok, _} = gun:await_body(ConnPid, Ref1),
  97. Ref2 = gun:head(ConnPid, "/resp/stream_reply2/200", [
  98. {<<"accept-encoding">>, <<"gzip">>}
  99. ]),
  100. {response, fin, 200, Headers2} = gun:await(ConnPid, Ref2),
  101. %% We remove the date header since the date might have changed between requests.
  102. Headers = lists:keydelete(<<"date">>, 1, Headers1),
  103. Headers = lists:keydelete(<<"date">>, 1, Headers2),
  104. ok.
  105. method_post(Config) ->
  106. doc("The POST method is accepted. (RFC7231 4.3.3)"),
  107. ConnPid = gun_open(Config),
  108. Ref = gun:post(ConnPid, "/echo/read_body", [
  109. {<<"accept-encoding">>, <<"gzip">>},
  110. {<<"content-type">>, <<"application/x-www-form-urlencoded">>}
  111. ], <<"hello=world">>),
  112. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  113. {ok, <<"hello=world">>} = gun:await_body(ConnPid, Ref),
  114. ok.
  115. method_put(Config) ->
  116. doc("The PUT method is accepted. (RFC7231 4.3.4)"),
  117. ConnPid = gun_open(Config),
  118. Ref = gun:put(ConnPid, "/echo/read_body", [
  119. {<<"accept-encoding">>, <<"gzip">>},
  120. {<<"content-type">>, <<"application/x-www-form-urlencoded">>}
  121. ], <<"hello=world">>),
  122. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  123. {ok, <<"hello=world">>} = gun:await_body(ConnPid, Ref),
  124. ok.
  125. method_delete(Config) ->
  126. doc("The DELETE method is accepted. (RFC7231 4.3.5)"),
  127. ConnPid = gun_open(Config),
  128. Ref = gun:delete(ConnPid, "/echo/method", [
  129. {<<"accept-encoding">>, <<"gzip">>}
  130. ]),
  131. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  132. {ok, <<"DELETE">>} = gun:await_body(ConnPid, Ref),
  133. ok.
  134. %% @todo This test is currently broken because Gun does not
  135. %% send a proper CONNECT request.
  136. %method_connect(Config) ->
  137. % doc("The CONNECT method is currently not implemented. (RFC7231 4.3.6)"),
  138. % ConnPid = gun_open(Config),
  139. % Ref = gun:request(ConnPid, <<"CONNECT">>, "localhost:8080", [
  140. % {<<"accept-encoding">>, <<"gzip">>}
  141. % ], <<>>),
  142. % {response, fin, 501, _} = gun:await(ConnPid, Ref),
  143. % ok.
  144. % A client sending a CONNECT request MUST send the authority form of
  145. % request-target (Section 5.3 of [RFC7230]); i.e., the request-target
  146. % consists of only the host name and port number of the tunnel
  147. % destination, separated by a colon.
  148. %
  149. % A server MUST NOT send any Transfer-Encoding or Content-Length header
  150. % fields in a 2xx (Successful) response to CONNECT. A client MUST
  151. % ignore any Content-Length or Transfer-Encoding header fields received
  152. % in a successful response to CONNECT.
  153. %
  154. % A payload within a CONNECT request message has no defined semantics;
  155. % sending a payload body on a CONNECT request might cause some existing
  156. % implementations to reject the request.
  157. method_options(Config) ->
  158. doc("The OPTIONS method is accepted. (RFC7231 4.3.7)"),
  159. ConnPid = gun_open(Config),
  160. Ref = gun:options(ConnPid, "/echo/method", [
  161. {<<"accept-encoding">>, <<"gzip">>}
  162. ]),
  163. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  164. {ok, <<"OPTIONS">>} = gun:await_body(ConnPid, Ref),
  165. ok.
  166. method_options_asterisk(Config) ->
  167. doc("The OPTIONS method is accepted with an asterisk. (RFC7231 4.3.7)"),
  168. ConnPid = gun_open(Config),
  169. Ref = gun:options(ConnPid, "*", [
  170. {<<"accept-encoding">>, <<"gzip">>},
  171. {<<"x-echo">>, <<"method">>}
  172. ]),
  173. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  174. {ok, <<"OPTIONS">>} = gun:await_body(ConnPid, Ref),
  175. ok.
  176. method_options_content_length_0(Config) ->
  177. doc("The OPTIONS method must set the content-length header "
  178. "to 0 when no body is returned. (RFC7231 4.3.7)"),
  179. ConnPid = gun_open(Config),
  180. Ref = gun:options(ConnPid, "*", [
  181. {<<"accept-encoding">>, <<"gzip">>}
  182. ]),
  183. {response, fin, 200, Headers} = gun:await(ConnPid, Ref),
  184. {_, <<"0">>} = lists:keyfind(<<"content-length">>, 1, Headers),
  185. ok.
  186. method_trace(Config) ->
  187. doc("The TRACE method is currently not implemented. (RFC7231 4.3.8)"),
  188. ConnPid = gun_open(Config),
  189. Ref = gun:request(ConnPid, <<"TRACE">>, "/", [
  190. {<<"accept-encoding">>, <<"gzip">>}
  191. ], <<>>),
  192. {response, fin, 501, _} = gun:await(ConnPid, Ref),
  193. ok.
  194. %% Request headers.
  195. %% @todo It could be useful to check that we can parse all request headers defined in this RFC.
  196. %% @todo The same applies to any other RFC for which we have a test suite.
  197. expect(Config) ->
  198. doc("A server that receives a 100-continue expectation should honor it. (RFC7231 5.1.1)"),
  199. ConnPid = gun_open(Config),
  200. Ref = gun:post(ConnPid, "/echo/read_body", [
  201. {<<"accept-encoding">>, <<"gzip">>},
  202. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  203. {<<"expect">>, <<"100-continue">>}
  204. ]),
  205. {inform, 100, _} = gun:await(ConnPid, Ref),
  206. ok.
  207. http10_expect(Config) ->
  208. case config(protocol, Config) of
  209. http ->
  210. do_http10_expect(Config);
  211. http2 ->
  212. expect(Config);
  213. http3 ->
  214. expect(Config)
  215. end.
  216. do_http10_expect(Config) ->
  217. doc("A server that receives a 100-continue expectation "
  218. "in an HTTP/1.0 request must ignore it. (RFC7231 5.1.1)"),
  219. Body = <<"hello=world">>,
  220. ConnPid = gun_open(Config, #{http_opts => #{version => 'HTTP/1.0'}}),
  221. Ref = gun:post(ConnPid, "/echo/read_body", [
  222. {<<"accept-encoding">>, <<"gzip">>},
  223. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  224. {<<"content-length">>, integer_to_binary(byte_size(Body))},
  225. {<<"expect">>, <<"100-continue">>}
  226. ]),
  227. timer:sleep(500),
  228. ok = gun:data(ConnPid, Ref, fin, Body),
  229. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  230. {ok, Body} = gun:await_body(ConnPid, Ref),
  231. ok.
  232. %% Cowboy ignores the expect header when the value is not 100-continue.
  233. %
  234. % A server that receives an Expect field-value other than 100-continue
  235. % MAY respond with a 417 (Expectation Failed) status code to indicate
  236. % that the unexpected expectation cannot be met.
  237. expect_receive_body_omit_100_continue(Config) ->
  238. doc("A server may omit sending a 100 Continue response if it has "
  239. "already started receiving the request body. (RFC7231 5.1.1)"),
  240. ConnPid = gun_open(Config),
  241. Ref = gun:post(ConnPid, "/delay/echo/read_body", [
  242. {<<"accept-encoding">>, <<"gzip">>},
  243. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  244. {<<"expect">>, <<"100-continue">>}
  245. ], <<"hello=world">>),
  246. %% We receive the response directly without a 100 Continue.
  247. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  248. {ok, <<"hello=world">>} = gun:await_body(ConnPid, Ref),
  249. ok.
  250. expect_discard_body_skip(Config) ->
  251. doc("A server that responds with a final status code before reading "
  252. "the entire message body should keep the connection open and skip "
  253. "the body when appropriate. (RFC7231 5.1.1)"),
  254. ConnPid = gun_open(Config),
  255. Ref1 = gun:post(ConnPid, "/echo/method", [
  256. {<<"accept-encoding">>, <<"gzip">>},
  257. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  258. {<<"expect">>, <<"100-continue">>}
  259. ], <<"hello=world">>),
  260. {response, nofin, 200, _} = gun:await(ConnPid, Ref1),
  261. {ok, <<"POST">>} = gun:await_body(ConnPid, Ref1),
  262. Ref2 = gun:get(ConnPid, "/echo/method", [
  263. {<<"accept-encoding">>, <<"gzip">>},
  264. {<<"content-type">>, <<"application/x-www-form-urlencoded">>}
  265. ]),
  266. {response, nofin, 200, _} = gun:await(ConnPid, Ref2),
  267. {ok, <<"GET">>} = gun:await_body(ConnPid, Ref2),
  268. ok.
  269. expect_discard_body_close(Config) ->
  270. case config(protocol, Config) of
  271. http ->
  272. do_expect_discard_body_close(Config);
  273. http2 ->
  274. doc("There's no reason to close the connection when using HTTP/2, "
  275. "even if a stream body is too large. We just cancel the stream.");
  276. http3 ->
  277. doc("There's no reason to close the connection when using HTTP/3, "
  278. "even if a stream body is too large. We just cancel the stream.")
  279. end.
  280. do_expect_discard_body_close(Config) ->
  281. doc("A server that responds with a final status code before reading "
  282. "the entire message body may close the connection to avoid "
  283. "reading a potentially large request body. (RFC7231 5.1.1, RFC7230 6.6)"),
  284. ConnPid = gun_open(Config),
  285. Ref1 = gun:post(ConnPid, "/echo/method", [
  286. {<<"accept-encoding">>, <<"gzip">>},
  287. {<<"content-length">>, <<"10000000">>},
  288. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  289. {<<"expect">>, <<"100-continue">>}
  290. ]),
  291. {response, nofin, 200, _Headers} = gun:await(ConnPid, Ref1),
  292. %% Ideally we would send a connection: close. Cowboy however
  293. %% cannot know the intent of the application until after we
  294. %% sent the response.
  295. % {_, <<"close">>} = lists:keyfind(<<"connection">>, 1, Headers),
  296. {ok, <<"POST">>} = gun:await_body(ConnPid, Ref1),
  297. %% The connection is gone.
  298. receive
  299. {gun_down, ConnPid, _, closed, _} ->
  300. ok
  301. after 1000 ->
  302. error(timeout)
  303. end.
  304. no_accept_encoding(Config) ->
  305. doc("While a request with no accept-encoding header implies the "
  306. "user agent has no preferences and any would be acceptable, "
  307. "Cowboy will not serve content-codings by defaults to ensure "
  308. "the content can safely be read. (RFC7231 5.3.4)"),
  309. ConnPid = gun_open(Config),
  310. Ref = gun:get(ConnPid, "/resp/stream_reply2/200"),
  311. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  312. false = lists:keyfind(<<"content-encoding">>, 1, Headers),
  313. ok.
  314. %% Cowboy currently ignores any information about the identity content-coding
  315. %% and instead considers it always acceptable.
  316. %
  317. % 2. If the representation has no content-coding, then it is
  318. % acceptable by default unless specifically excluded by the
  319. % Accept-Encoding field stating either "identity;q=0" or "*;q=0"
  320. % without a more specific entry for "identity".
  321. accept_encoding_gzip(Config) ->
  322. doc("No qvalue means the content-coding is acceptable. (RFC7231 5.3.4)"),
  323. ConnPid = gun_open(Config),
  324. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  325. {<<"accept-encoding">>, <<"gzip">>}
  326. ]),
  327. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  328. _ = case config(flavor, Config) of
  329. compress ->
  330. {_, <<"gzip">>} = lists:keyfind(<<"content-encoding">>, 1, Headers);
  331. _ ->
  332. false = lists:keyfind(<<"content-encoding">>, 1, Headers)
  333. end,
  334. ok.
  335. accept_encoding_gzip_1(Config) ->
  336. doc("A qvalue different than 0 means the content-coding is acceptable. (RFC7231 5.3.4)"),
  337. ConnPid = gun_open(Config),
  338. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  339. {<<"accept-encoding">>, <<"gzip;q=1.0">>}
  340. ]),
  341. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  342. _ = case config(flavor, Config) of
  343. compress ->
  344. {_, <<"gzip">>} = lists:keyfind(<<"content-encoding">>, 1, Headers);
  345. _ ->
  346. false = lists:keyfind(<<"content-encoding">>, 1, Headers)
  347. end,
  348. ok.
  349. accept_encoding_gzip_0(Config) ->
  350. doc("A qvalue of 0 means the content-coding is not acceptable. (RFC7231 5.3.1, RFC7231 5.3.4)"),
  351. ConnPid = gun_open(Config),
  352. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  353. {<<"accept-encoding">>, <<"gzip;q=0">>}
  354. ]),
  355. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  356. false = lists:keyfind(<<"content-encoding">>, 1, Headers),
  357. ok.
  358. %% Cowboy currently only supports gzip automatically via cowboy_compress_h.
  359. %
  360. % 4. If multiple content-codings are acceptable, then the acceptable
  361. % content-coding with the highest non-zero qvalue is preferred.
  362. accept_encoding_empty(Config) ->
  363. doc("An empty content-coding means that the user agent does not "
  364. "want any content-coding applied to the response. (RFC7231 5.3.4)"),
  365. ConnPid = gun_open(Config),
  366. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  367. {<<"accept-encoding">>, <<>>}
  368. ]),
  369. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  370. false = lists:keyfind(<<"content-encoding">>, 1, Headers),
  371. ok.
  372. accept_encoding_unknown(Config) ->
  373. doc("An accept-encoding header only containing unknown content-codings "
  374. "should result in no content-coding being applied. (RFC7231 5.3.4)"),
  375. ConnPid = gun_open(Config),
  376. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  377. {<<"accept-encoding">>, <<"deflate">>}
  378. ]),
  379. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  380. false = lists:keyfind(<<"content-encoding">>, 1, Headers),
  381. ok.
  382. %% Status codes.
  383. http10_status_code_100(Config) ->
  384. case config(protocol, Config) of
  385. http ->
  386. doc("The 100 Continue status code must not "
  387. "be sent to HTTP/1.0 endpoints. (RFC7231 6.2)"),
  388. do_unsupported_status_code_1xx(100, Config);
  389. http2 ->
  390. status_code_100(Config);
  391. http3 ->
  392. status_code_100(Config)
  393. end.
  394. http10_status_code_101(Config) ->
  395. case config(protocol, Config) of
  396. http ->
  397. doc("The 101 Switching Protocols status code must not "
  398. "be sent to HTTP/1.0 endpoints. (RFC7231 6.2)"),
  399. do_unsupported_status_code_1xx(101, Config);
  400. http2 ->
  401. status_code_101(Config);
  402. http3 ->
  403. %% While 101 is not supported by HTTP/3, there is no
  404. %% wording in RFC9114 that forbids sending it.
  405. status_code_101(Config)
  406. end.
  407. do_unsupported_status_code_1xx(StatusCode, Config) ->
  408. ConnPid = gun_open(Config, #{http_opts => #{version => 'HTTP/1.0'}}),
  409. Ref = gun:get(ConnPid, "/resp/inform2/" ++ integer_to_list(StatusCode), [
  410. {<<"accept-encoding">>, <<"gzip">>}
  411. ]),
  412. {response, _, 200, _} = gun:await(ConnPid, Ref),
  413. ok.
  414. status_code_100(Config) ->
  415. doc("The 100 Continue status code can be sent. (RFC7231 6.2.1)"),
  416. ConnPid = gun_open(Config),
  417. Ref = gun:get(ConnPid, "/resp/inform2/100", [
  418. {<<"accept-encoding">>, <<"gzip">>}
  419. ]),
  420. {inform, 100, []} = gun:await(ConnPid, Ref),
  421. ok.
  422. status_code_101(Config) ->
  423. doc("The 101 Switching Protocols status code can be sent. (RFC7231 6.2.2)"),
  424. ConnPid = gun_open(Config),
  425. Ref = gun:get(ConnPid, "/resp/inform2/101", [
  426. {<<"accept-encoding">>, <<"gzip">>}
  427. ]),
  428. {inform, 101, []} = gun:await(ConnPid, Ref),
  429. ok.
  430. status_code_200(Config) ->
  431. doc("The 200 OK status code can be sent. (RFC7231 6.3.1)"),
  432. ConnPid = gun_open(Config),
  433. Ref = gun:get(ConnPid, "/resp/reply2/200", [
  434. {<<"accept-encoding">>, <<"gzip">>}
  435. ]),
  436. {response, _, 200, _} = gun:await(ConnPid, Ref),
  437. ok.
  438. status_code_201(Config) ->
  439. doc("The 201 Created status code can be sent. (RFC7231 6.3.2)"),
  440. ConnPid = gun_open(Config),
  441. Ref = gun:get(ConnPid, "/resp/reply2/201", [
  442. {<<"accept-encoding">>, <<"gzip">>}
  443. ]),
  444. {response, _, 201, _} = gun:await(ConnPid, Ref),
  445. ok.
  446. status_code_202(Config) ->
  447. doc("The 202 Accepted status code can be sent. (RFC7231 6.3.3)"),
  448. ConnPid = gun_open(Config),
  449. Ref = gun:get(ConnPid, "/resp/reply2/202", [
  450. {<<"accept-encoding">>, <<"gzip">>}
  451. ]),
  452. {response, _, 202, _} = gun:await(ConnPid, Ref),
  453. ok.
  454. status_code_203(Config) ->
  455. doc("The 203 Non-Authoritative Information status code can be sent. (RFC7231 6.3.4)"),
  456. ConnPid = gun_open(Config),
  457. Ref = gun:get(ConnPid, "/resp/reply2/203", [
  458. {<<"accept-encoding">>, <<"gzip">>}
  459. ]),
  460. {response, _, 203, _} = gun:await(ConnPid, Ref),
  461. ok.
  462. status_code_204(Config) ->
  463. doc("The 204 No Content status code can be sent. (RFC7231 6.3.5)"),
  464. ConnPid = gun_open(Config),
  465. Ref = gun:get(ConnPid, "/resp/reply2/204", [
  466. {<<"accept-encoding">>, <<"gzip">>}
  467. ]),
  468. {response, _, 204, _} = gun:await(ConnPid, Ref),
  469. ok.
  470. status_code_205(Config) ->
  471. doc("The 205 Reset Content status code can be sent. (RFC7231 6.3.6)"),
  472. ConnPid = gun_open(Config),
  473. Ref = gun:get(ConnPid, "/resp/reply2/205", [
  474. {<<"accept-encoding">>, <<"gzip">>}
  475. ]),
  476. {response, _, 205, _} = gun:await(ConnPid, Ref),
  477. ok.
  478. status_code_300(Config) ->
  479. doc("The 300 Multiple Choices status code can be sent. (RFC7231 6.4.1)"),
  480. ConnPid = gun_open(Config),
  481. Ref = gun:get(ConnPid, "/resp/reply2/300", [
  482. {<<"accept-encoding">>, <<"gzip">>}
  483. ]),
  484. {response, _, 300, _} = gun:await(ConnPid, Ref),
  485. ok.
  486. status_code_301(Config) ->
  487. doc("The 301 Moved Permanently status code can be sent. (RFC7231 6.4.2)"),
  488. ConnPid = gun_open(Config),
  489. Ref = gun:get(ConnPid, "/resp/reply2/301", [
  490. {<<"accept-encoding">>, <<"gzip">>}
  491. ]),
  492. {response, _, 301, _} = gun:await(ConnPid, Ref),
  493. ok.
  494. status_code_302(Config) ->
  495. doc("The 302 Found status code can be sent. (RFC7231 6.4.3)"),
  496. ConnPid = gun_open(Config),
  497. Ref = gun:get(ConnPid, "/resp/reply2/302", [
  498. {<<"accept-encoding">>, <<"gzip">>}
  499. ]),
  500. {response, _, 302, _} = gun:await(ConnPid, Ref),
  501. ok.
  502. status_code_303(Config) ->
  503. doc("The 303 See Other status code can be sent. (RFC7231 6.4.4)"),
  504. ConnPid = gun_open(Config),
  505. Ref = gun:get(ConnPid, "/resp/reply2/303", [
  506. {<<"accept-encoding">>, <<"gzip">>}
  507. ]),
  508. {response, _, 303, _} = gun:await(ConnPid, Ref),
  509. ok.
  510. status_code_305(Config) ->
  511. doc("The 305 Use Proxy status code can be sent. (RFC7231 6.4.5)"),
  512. ConnPid = gun_open(Config),
  513. Ref = gun:get(ConnPid, "/resp/reply2/305", [
  514. {<<"accept-encoding">>, <<"gzip">>}
  515. ]),
  516. {response, _, 305, _} = gun:await(ConnPid, Ref),
  517. ok.
  518. %% The status code 306 is no longer used. (RFC7231 6.4.6)
  519. status_code_307(Config) ->
  520. doc("The 307 Temporary Redirect status code can be sent. (RFC7231 6.4.7)"),
  521. ConnPid = gun_open(Config),
  522. Ref = gun:get(ConnPid, "/resp/reply2/307", [
  523. {<<"accept-encoding">>, <<"gzip">>}
  524. ]),
  525. {response, _, 307, _} = gun:await(ConnPid, Ref),
  526. ok.
  527. status_code_400(Config) ->
  528. doc("The 400 Bad Request status code can be sent. (RFC7231 6.5.1)"),
  529. ConnPid = gun_open(Config),
  530. Ref = gun:get(ConnPid, "/resp/reply2/400", [
  531. {<<"accept-encoding">>, <<"gzip">>}
  532. ]),
  533. {response, _, 400, _} = gun:await(ConnPid, Ref),
  534. ok.
  535. status_code_402(Config) ->
  536. doc("The 402 Payment Required status code can be sent. (RFC7231 6.5.2)"),
  537. ConnPid = gun_open(Config),
  538. Ref = gun:get(ConnPid, "/resp/reply2/402", [
  539. {<<"accept-encoding">>, <<"gzip">>}
  540. ]),
  541. {response, _, 402, _} = gun:await(ConnPid, Ref),
  542. ok.
  543. status_code_403(Config) ->
  544. doc("The 403 Forbidden status code can be sent. (RFC7231 6.5.3)"),
  545. ConnPid = gun_open(Config),
  546. Ref = gun:get(ConnPid, "/resp/reply2/403", [
  547. {<<"accept-encoding">>, <<"gzip">>}
  548. ]),
  549. {response, _, 403, _} = gun:await(ConnPid, Ref),
  550. ok.
  551. status_code_404(Config) ->
  552. doc("The 404 Not Found status code can be sent. (RFC7231 6.5.4)"),
  553. ConnPid = gun_open(Config),
  554. Ref = gun:get(ConnPid, "/resp/reply2/404", [
  555. {<<"accept-encoding">>, <<"gzip">>}
  556. ]),
  557. {response, _, 404, _} = gun:await(ConnPid, Ref),
  558. ok.
  559. status_code_404_not_found(Config) ->
  560. doc("The 404 Not Found status code is sent when the target "
  561. "resource does not exist. (RFC7231 6.5.4)"),
  562. ConnPid = gun_open(Config),
  563. Ref = gun:get(ConnPid, "/not/found", [
  564. {<<"accept-encoding">>, <<"gzip">>}
  565. ]),
  566. {response, _, 404, _} = gun:await(ConnPid, Ref),
  567. ok.
  568. status_code_405(Config) ->
  569. doc("The 405 Method Not Allowed status code can be sent. (RFC7231 6.5.5)"),
  570. ConnPid = gun_open(Config),
  571. Ref = gun:get(ConnPid, "/resp/reply2/405", [
  572. {<<"accept-encoding">>, <<"gzip">>}
  573. ]),
  574. {response, _, 405, _} = gun:await(ConnPid, Ref),
  575. ok.
  576. status_code_406(Config) ->
  577. doc("The 406 Not Acceptable status code can be sent. (RFC7231 6.5.6)"),
  578. ConnPid = gun_open(Config),
  579. Ref = gun:get(ConnPid, "/resp/reply2/406", [
  580. {<<"accept-encoding">>, <<"gzip">>}
  581. ]),
  582. {response, _, 406, _} = gun:await(ConnPid, Ref),
  583. ok.
  584. status_code_408(Config) ->
  585. doc("The 408 Request Timeout status code can be sent. (RFC7231 6.5.7)"),
  586. ConnPid = gun_open(Config),
  587. Ref = gun:get(ConnPid, "/resp/reply2/408", [
  588. {<<"accept-encoding">>, <<"gzip">>}
  589. ]),
  590. {response, _, 408, _} = gun:await(ConnPid, Ref),
  591. ok.
  592. status_code_408_connection_close(Config) ->
  593. case config(protocol, Config) of
  594. http ->
  595. do_http11_status_code_408_connection_close(Config);
  596. http2 ->
  597. doc("HTTP/2 connections are not closed on 408 responses.");
  598. http3 ->
  599. doc("HTTP/3 connections are not closed on 408 responses.")
  600. end.
  601. do_http11_status_code_408_connection_close(Config) ->
  602. doc("A 408 response should result in a connection close "
  603. "for HTTP/1.1 connections. (RFC7231 6.5.7)"),
  604. Client = raw_open(Config),
  605. ok = raw_send(Client, "GET / HTTP/1.1\r\n"),
  606. {_, 408, _, Rest} = cow_http:parse_status_line(raw_recv_head(Client)),
  607. {Headers, <<>>} = cow_http:parse_headers(Rest),
  608. {_, <<"close">>} = lists:keyfind(<<"connection">>, 1, Headers),
  609. {error, closed} = raw_recv(Client, 0, 1000),
  610. ok.
  611. status_code_409(Config) ->
  612. doc("The 409 Conflict status code can be sent. (RFC7231 6.5.8)"),
  613. ConnPid = gun_open(Config),
  614. Ref = gun:get(ConnPid, "/resp/reply2/409", [
  615. {<<"accept-encoding">>, <<"gzip">>}
  616. ]),
  617. {response, _, 409, _} = gun:await(ConnPid, Ref),
  618. ok.
  619. status_code_410(Config) ->
  620. doc("The 410 Gone status code can be sent. (RFC7231 6.5.9)"),
  621. ConnPid = gun_open(Config),
  622. Ref = gun:get(ConnPid, "/resp/reply2/410", [
  623. {<<"accept-encoding">>, <<"gzip">>}
  624. ]),
  625. {response, _, 410, _} = gun:await(ConnPid, Ref),
  626. ok.
  627. status_code_411(Config) ->
  628. doc("The 411 Length Required status code can be sent. (RFC7231 6.5.10)"),
  629. ConnPid = gun_open(Config),
  630. Ref = gun:get(ConnPid, "/resp/reply2/411", [
  631. {<<"accept-encoding">>, <<"gzip">>}
  632. ]),
  633. {response, _, 411, _} = gun:await(ConnPid, Ref),
  634. ok.
  635. status_code_413(Config) ->
  636. doc("The 413 Payload Too Large status code can be sent. (RFC7231 6.5.11)"),
  637. ConnPid = gun_open(Config),
  638. Ref = gun:get(ConnPid, "/resp/reply2/413", [
  639. {<<"accept-encoding">>, <<"gzip">>}
  640. ]),
  641. {response, _, 413, _} = gun:await(ConnPid, Ref),
  642. ok.
  643. status_code_414(Config) ->
  644. doc("The 414 URI Too Long status code can be sent. (RFC7231 6.5.12)"),
  645. ConnPid = gun_open(Config),
  646. Ref = gun:get(ConnPid, "/resp/reply2/414", [
  647. {<<"accept-encoding">>, <<"gzip">>}
  648. ]),
  649. {response, _, 414, _} = gun:await(ConnPid, Ref),
  650. ok.
  651. status_code_415(Config) ->
  652. doc("The 415 Unsupported Media Type status code can be sent. (RFC7231 6.5.13)"),
  653. ConnPid = gun_open(Config),
  654. Ref = gun:get(ConnPid, "/resp/reply2/415", [
  655. {<<"accept-encoding">>, <<"gzip">>}
  656. ]),
  657. {response, _, 415, _} = gun:await(ConnPid, Ref),
  658. ok.
  659. status_code_417(Config) ->
  660. doc("The 417 Expectation Failed status code can be sent. (RFC7231 6.5.14)"),
  661. ConnPid = gun_open(Config),
  662. Ref = gun:get(ConnPid, "/resp/reply2/417", [
  663. {<<"accept-encoding">>, <<"gzip">>}
  664. ]),
  665. {response, _, 417, _} = gun:await(ConnPid, Ref),
  666. ok.
  667. status_code_426(Config) ->
  668. doc("The 426 Upgrade Required status code can be sent. (RFC7231 6.5.15)"),
  669. ConnPid = gun_open(Config),
  670. Ref = gun:get(ConnPid, "/resp/reply2/426", [
  671. {<<"accept-encoding">>, <<"gzip">>}
  672. ]),
  673. {response, _, 426, _} = gun:await(ConnPid, Ref),
  674. ok.
  675. status_code_426_upgrade_header(Config) ->
  676. case config(protocol, Config) of
  677. http ->
  678. do_status_code_426_upgrade_header(Config);
  679. http2 ->
  680. doc("HTTP/2 does not support the HTTP/1.1 Upgrade mechanism.");
  681. http3 ->
  682. doc("HTTP/3 does not support the HTTP/1.1 Upgrade mechanism.")
  683. end.
  684. do_status_code_426_upgrade_header(Config) ->
  685. doc("A 426 response must include a upgrade header. (RFC7231 6.5.15)"),
  686. ConnPid = gun_open(Config),
  687. Ref = gun:get(ConnPid, "/ws?ok", [
  688. {<<"accept-encoding">>, <<"gzip">>}
  689. ]),
  690. {response, _, 426, Headers} = gun:await(ConnPid, Ref),
  691. {_, <<"upgrade">>} = lists:keyfind(<<"connection">>, 1, Headers),
  692. {_, <<"websocket">>} = lists:keyfind(<<"upgrade">>, 1, Headers),
  693. ok.
  694. status_code_500(Config) ->
  695. doc("The 500 Internal Server Error status code can be sent. (RFC7231 6.6.1)"),
  696. ConnPid = gun_open(Config),
  697. Ref = gun:get(ConnPid, "/resp/reply2/500", [
  698. {<<"accept-encoding">>, <<"gzip">>}
  699. ]),
  700. {response, _, 500, _} = gun:await(ConnPid, Ref),
  701. ok.
  702. status_code_501(Config) ->
  703. doc("The 501 Not Implemented status code can be sent. (RFC7231 6.6.2)"),
  704. ConnPid = gun_open(Config),
  705. Ref = gun:get(ConnPid, "/resp/reply2/501", [
  706. {<<"accept-encoding">>, <<"gzip">>}
  707. ]),
  708. {response, _, 501, _} = gun:await(ConnPid, Ref),
  709. ok.
  710. status_code_502(Config) ->
  711. doc("The 502 Bad Gateway status code can be sent. (RFC7231 6.6.3)"),
  712. ConnPid = gun_open(Config),
  713. Ref = gun:get(ConnPid, "/resp/reply2/502", [
  714. {<<"accept-encoding">>, <<"gzip">>}
  715. ]),
  716. {response, _, 502, _} = gun:await(ConnPid, Ref),
  717. ok.
  718. status_code_503(Config) ->
  719. doc("The 503 Service Unavailable status code can be sent. (RFC7231 6.6.4)"),
  720. ConnPid = gun_open(Config),
  721. Ref = gun:get(ConnPid, "/resp/reply2/503", [
  722. {<<"accept-encoding">>, <<"gzip">>}
  723. ]),
  724. {response, _, 503, _} = gun:await(ConnPid, Ref),
  725. ok.
  726. status_code_504(Config) ->
  727. doc("The 504 Gateway Timeout status code can be sent. (RFC7231 6.6.5)"),
  728. ConnPid = gun_open(Config),
  729. Ref = gun:get(ConnPid, "/resp/reply2/504", [
  730. {<<"accept-encoding">>, <<"gzip">>}
  731. ]),
  732. {response, _, 504, _} = gun:await(ConnPid, Ref),
  733. ok.
  734. status_code_505(Config) ->
  735. doc("The 505 HTTP Version Not Supported status code can be sent. (RFC7231 6.6.6)"),
  736. ConnPid = gun_open(Config),
  737. Ref = gun:get(ConnPid, "/resp/reply2/505", [
  738. {<<"accept-encoding">>, <<"gzip">>}
  739. ]),
  740. {response, _, 505, _} = gun:await(ConnPid, Ref),
  741. ok.
  742. %% The 505 response code is supposed to be about the major HTTP version.
  743. %% Cowboy instead rejects any version that isn't HTTP/1.0 or HTTP/1.1
  744. %% when expecting an h1 request. While this is not correct in theory
  745. %% it works in practice because there are no other minor versions.
  746. %%
  747. %% Cowboy does not do version checking for HTTP/2 since the protocol
  748. %% does not include a version number in the messages.
  749. %% Response headers.
  750. %% @todo No such header in this suite, but some in other suites (if-(un)modified-since).
  751. % A recipient that parses a timestamp value in an HTTP header field
  752. % MUST accept all three HTTP-date formats. (RFC7231 7.1.1.1)
  753. date_imf_fixdate(Config) ->
  754. doc("The date header uses the IMF-fixdate format. (RFC7231 7.1.1.1, RFC7231 7.1.1.2)"),
  755. ConnPid = gun_open(Config),
  756. Ref = gun:get(ConnPid, "/", [
  757. {<<"accept-encoding">>, <<"gzip">>}
  758. ]),
  759. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  760. {_, <<_,_,_,", ",_,_," ",_,_,_," ",_,_,_,_," ",_,_,":",_,_,":",_,_," GMT">>}
  761. = lists:keyfind(<<"date">>, 1, Headers),
  762. ok.
  763. %% @todo Applies to both date and other headers (if-(un)modified-since).
  764. % HTTP-date is case sensitive. A sender MUST NOT generate additional
  765. % whitespace in an HTTP-date beyond that specifically included as SP in
  766. % the grammar. The semantics of day-name, day, month, year, and
  767. % time-of-day are the same as those defined for the Internet Message
  768. % Format constructs with the corresponding name ([RFC5322], Section
  769. % 3.3). (RFC7231 7.1.1.1)
  770. %% @todo No such header in this suite, but some in other suites (if-(un)modified-since).
  771. % Recipients of a timestamp value in rfc850-date format, which uses a
  772. % two-digit year, MUST interpret a timestamp that appears to be more
  773. % than 50 years in the future as representing the most recent year in
  774. % the past that had the same last two digits. (RFC7231 7.1.1.1)
  775. %% @todo Add an option to disable sending the date header.
  776. % An origin server MUST NOT send a Date header field if it does not
  777. % have a clock capable of providing a reasonable approximation of the
  778. % current instance in Coordinated Universal Time. (RFC7231 7.1.1.2)
  779. no_date_1xx(Config) ->
  780. doc("The date header is optional for 1xx responses. "
  781. "Cowboy does not send it with those responses. (RFC7231 7.1.1.2)"),
  782. ConnPid = gun_open(Config),
  783. Ref = gun:get(ConnPid, "/resp/inform2/100", [
  784. {<<"accept-encoding">>, <<"gzip">>}
  785. ]),
  786. {inform, 100, Headers} = gun:await(ConnPid, Ref),
  787. false = lists:keyfind(<<"date">>, 1, Headers),
  788. ok.
  789. date_2xx(Config) ->
  790. doc("A date header must be sent for 2xx status codes. (RFC7231 7.1.1.2)"),
  791. ConnPid = gun_open(Config),
  792. Ref = gun:get(ConnPid, "/resp/reply2/200", [
  793. {<<"accept-encoding">>, <<"gzip">>}
  794. ]),
  795. {response, _, 200, Headers} = gun:await(ConnPid, Ref),
  796. {_, _} = lists:keyfind(<<"date">>, 1, Headers),
  797. ok.
  798. date_3xx(Config) ->
  799. doc("A date header must be sent for 3xx status codes. (RFC7231 7.1.1.2)"),
  800. ConnPid = gun_open(Config),
  801. Ref = gun:get(ConnPid, "/resp/reply2/300", [
  802. {<<"accept-encoding">>, <<"gzip">>}
  803. ]),
  804. {response, _, 300, Headers} = gun:await(ConnPid, Ref),
  805. {_, _} = lists:keyfind(<<"date">>, 1, Headers),
  806. ok.
  807. date_4xx(Config) ->
  808. doc("A date header must be sent for 4xx status codes. (RFC7231 7.1.1.2)"),
  809. ConnPid = gun_open(Config),
  810. Ref = gun:get(ConnPid, "/resp/reply2/400", [
  811. {<<"accept-encoding">>, <<"gzip">>}
  812. ]),
  813. {response, _, 400, Headers} = gun:await(ConnPid, Ref),
  814. {_, _} = lists:keyfind(<<"date">>, 1, Headers),
  815. ok.
  816. date_5xx(Config) ->
  817. doc("The date header is optional for 5xx status codes. "
  818. "Cowboy however does send it with those responses. (RFC7231 7.1.1.2)"),
  819. ConnPid = gun_open(Config),
  820. Ref = gun:get(ConnPid, "/resp/reply2/500", [
  821. {<<"accept-encoding">>, <<"gzip">>}
  822. ]),
  823. {response, _, 500, Headers} = gun:await(ConnPid, Ref),
  824. {_, _} = lists:keyfind(<<"date">>, 1, Headers),
  825. ok.
  826. server_header(Config) ->
  827. doc("An origin server may generate a server header field. "
  828. "Cowboy generates a small one by default. (RFC7231 7.4.2)"),
  829. ConnPid = gun_open(Config),
  830. Ref = gun:get(ConnPid, "/"),
  831. {response, _, 200, Headers} = gun:await(ConnPid, Ref),
  832. {_, <<"Cowboy">>} = lists:keyfind(<<"server">>, 1, Headers),
  833. ok.
  834. server_header_override(Config) ->
  835. doc("An origin server may generate a server header field. "
  836. "Cowboy allows the user to override the default. (RFC7231 7.4.2)"),
  837. ConnPid = gun_open(Config),
  838. Ref = gun:get(ConnPid, "/resp/set_resp_header_server"),
  839. {response, _, 200, Headers} = gun:await(ConnPid, Ref),
  840. {_, <<"nginx">>} = lists:keyfind(<<"server">>, 1, Headers),
  841. ok.
  842. %% @todo It's worth revisiting this RFC in the context of cowboy_rest
  843. %% to ensure the state machine is doing what's expected by the RFC.