rfc7231_SUITE.erl 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900
  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:stop_listener(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. method_connect(Config) ->
  135. doc("The CONNECT method is currently not implemented. (RFC7231 4.3.6)"),
  136. ConnPid = gun_open(Config),
  137. Ref = gun:request(ConnPid, <<"CONNECT">>, "localhost:8080", [
  138. {<<"accept-encoding">>, <<"gzip">>}
  139. ]),
  140. {response, fin, 501, _} = gun:await(ConnPid, Ref),
  141. ok.
  142. % A client sending a CONNECT request MUST send the authority form of
  143. % request-target (Section 5.3 of [RFC7230]); i.e., the request-target
  144. % consists of only the host name and port number of the tunnel
  145. % destination, separated by a colon.
  146. %
  147. % A server MUST NOT send any Transfer-Encoding or Content-Length header
  148. % fields in a 2xx (Successful) response to CONNECT. A client MUST
  149. % ignore any Content-Length or Transfer-Encoding header fields received
  150. % in a successful response to CONNECT.
  151. %
  152. % A payload within a CONNECT request message has no defined semantics;
  153. % sending a payload body on a CONNECT request might cause some existing
  154. % implementations to reject the request.
  155. method_options(Config) ->
  156. doc("The OPTIONS method is accepted. (RFC7231 4.3.7)"),
  157. ConnPid = gun_open(Config),
  158. Ref = gun:options(ConnPid, "/echo/method", [
  159. {<<"accept-encoding">>, <<"gzip">>}
  160. ]),
  161. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  162. {ok, <<"OPTIONS">>} = gun:await_body(ConnPid, Ref),
  163. ok.
  164. method_options_asterisk(Config) ->
  165. doc("The OPTIONS method is accepted with an asterisk. (RFC7231 4.3.7)"),
  166. ConnPid = gun_open(Config),
  167. Ref = gun:options(ConnPid, "*", [
  168. {<<"accept-encoding">>, <<"gzip">>},
  169. {<<"x-echo">>, <<"method">>}
  170. ]),
  171. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  172. {ok, <<"OPTIONS">>} = gun:await_body(ConnPid, Ref),
  173. ok.
  174. method_options_content_length_0(Config) ->
  175. doc("The OPTIONS method must set the content-length header "
  176. "to 0 when no body is returned. (RFC7231 4.3.7)"),
  177. ConnPid = gun_open(Config),
  178. Ref = gun:options(ConnPid, "*", [
  179. {<<"accept-encoding">>, <<"gzip">>}
  180. ]),
  181. {response, fin, 200, Headers} = gun:await(ConnPid, Ref),
  182. {_, <<"0">>} = lists:keyfind(<<"content-length">>, 1, Headers),
  183. ok.
  184. method_trace(Config) ->
  185. doc("The TRACE method is currently not implemented. (RFC7231 4.3.8)"),
  186. ConnPid = gun_open(Config),
  187. Ref = gun:request(ConnPid, <<"TRACE">>, "/", [
  188. {<<"accept-encoding">>, <<"gzip">>}
  189. ]),
  190. {response, fin, 501, _} = gun:await(ConnPid, Ref),
  191. ok.
  192. %% Request headers.
  193. %% @todo It could be useful to check that we can parse all request headers defined in this RFC.
  194. %% @todo The same applies to any other RFC for which we have a test suite.
  195. expect(Config) ->
  196. doc("A server that receives a 100-continue expectation should honor it. (RFC7231 5.1.1)"),
  197. ConnPid = gun_open(Config),
  198. Ref = gun:post(ConnPid, "/echo/read_body", [
  199. {<<"accept-encoding">>, <<"gzip">>},
  200. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  201. {<<"expect">>, <<"100-continue">>}
  202. ]),
  203. {inform, 100, _} = gun:await(ConnPid, Ref),
  204. ok.
  205. http10_expect(Config) ->
  206. case config(protocol, Config) of
  207. http ->
  208. do_http10_expect(Config);
  209. http2 ->
  210. expect(Config)
  211. end.
  212. do_http10_expect(Config) ->
  213. doc("A server that receives a 100-continue expectation "
  214. "in an HTTP/1.0 request must ignore it. (RFC7231 5.1.1)"),
  215. Body = <<"hello=world">>,
  216. ConnPid = gun_open(Config, #{http_opts => #{version => 'HTTP/1.0'}}),
  217. Ref = gun:post(ConnPid, "/echo/read_body", [
  218. {<<"accept-encoding">>, <<"gzip">>},
  219. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  220. {<<"content-length">>, integer_to_binary(byte_size(Body))},
  221. {<<"expect">>, <<"100-continue">>}
  222. ]),
  223. timer:sleep(500),
  224. ok = gun:data(ConnPid, Ref, fin, Body),
  225. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  226. {ok, Body} = gun:await_body(ConnPid, Ref),
  227. ok.
  228. %% Cowboy ignores the expect header when the value is not 100-continue.
  229. %
  230. % A server that receives an Expect field-value other than 100-continue
  231. % MAY respond with a 417 (Expectation Failed) status code to indicate
  232. % that the unexpected expectation cannot be met.
  233. expect_receive_body_omit_100_continue(Config) ->
  234. doc("A server may omit sending a 100 Continue response if it has "
  235. "already started receiving the request body. (RFC7231 5.1.1)"),
  236. ConnPid = gun_open(Config),
  237. Ref = gun:post(ConnPid, "/delay/echo/read_body", [
  238. {<<"accept-encoding">>, <<"gzip">>},
  239. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  240. {<<"expect">>, <<"100-continue">>}
  241. ], <<"hello=world">>),
  242. %% We receive the response directly without a 100 Continue.
  243. {response, nofin, 200, _} = gun:await(ConnPid, Ref),
  244. {ok, <<"hello=world">>} = gun:await_body(ConnPid, Ref),
  245. ok.
  246. expect_discard_body_skip(Config) ->
  247. doc("A server that responds with a final status code before reading "
  248. "the entire message body should keep the connection open and skip "
  249. "the body when appropriate. (RFC7231 5.1.1)"),
  250. ConnPid = gun_open(Config),
  251. Ref1 = gun:post(ConnPid, "/echo/method", [
  252. {<<"accept-encoding">>, <<"gzip">>},
  253. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  254. {<<"expect">>, <<"100-continue">>}
  255. ], <<"hello=world">>),
  256. {response, nofin, 200, _} = gun:await(ConnPid, Ref1),
  257. {ok, <<"POST">>} = gun:await_body(ConnPid, Ref1),
  258. Ref2 = gun:get(ConnPid, "/echo/method", [
  259. {<<"accept-encoding">>, <<"gzip">>},
  260. {<<"content-type">>, <<"application/x-www-form-urlencoded">>}
  261. ]),
  262. {response, nofin, 200, _} = gun:await(ConnPid, Ref2),
  263. {ok, <<"GET">>} = gun:await_body(ConnPid, Ref2),
  264. ok.
  265. expect_discard_body_close(Config) ->
  266. case config(protocol, Config) of
  267. http ->
  268. do_expect_discard_body_close(Config);
  269. http2 ->
  270. doc("There's no reason to close the connection when using HTTP/2, "
  271. "even if a stream body is too large. We just cancel the stream.")
  272. end.
  273. do_expect_discard_body_close(Config) ->
  274. doc("A server that responds with a final status code before reading "
  275. "the entire message body may close the connection to avoid "
  276. "reading a potentially large request body. (RFC7231 5.1.1, RFC7230 6.6)"),
  277. ConnPid = gun_open(Config),
  278. Ref1 = gun:post(ConnPid, "/echo/method", [
  279. {<<"accept-encoding">>, <<"gzip">>},
  280. {<<"content-length">>, <<"10000000">>},
  281. {<<"content-type">>, <<"application/x-www-form-urlencoded">>},
  282. {<<"expect">>, <<"100-continue">>}
  283. ]),
  284. {response, nofin, 200, _Headers} = gun:await(ConnPid, Ref1),
  285. %% Ideally we would send a connection: close. Cowboy however
  286. %% cannot know the intent of the application until after we
  287. %% sent the response.
  288. % {_, <<"close">>} = lists:keyfind(<<"connection">>, 1, Headers),
  289. {ok, <<"POST">>} = gun:await_body(ConnPid, Ref1),
  290. %% The connection is gone.
  291. receive
  292. {gun_down, ConnPid, _, closed, _, _} ->
  293. ok
  294. after 1000 ->
  295. error(timeout)
  296. end.
  297. no_accept_encoding(Config) ->
  298. doc("While a request with no accept-encoding header implies the "
  299. "user agent has no preferences and any would be acceptable, "
  300. "Cowboy will not serve content-codings by defaults to ensure "
  301. "the content can safely be read. (RFC7231 5.3.4)"),
  302. ConnPid = gun_open(Config),
  303. Ref = gun:get(ConnPid, "/resp/stream_reply2/200"),
  304. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  305. false = lists:keyfind(<<"content-encoding">>, 1, Headers),
  306. ok.
  307. %% Cowboy currently ignores any information about the identity content-coding
  308. %% and instead considers it always acceptable.
  309. %
  310. % 2. If the representation has no content-coding, then it is
  311. % acceptable by default unless specifically excluded by the
  312. % Accept-Encoding field stating either "identity;q=0" or "*;q=0"
  313. % without a more specific entry for "identity".
  314. accept_encoding_gzip(Config) ->
  315. doc("No qvalue means the content-coding is acceptable. (RFC7231 5.3.4)"),
  316. ConnPid = gun_open(Config),
  317. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  318. {<<"accept-encoding">>, <<"gzip">>}
  319. ]),
  320. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  321. _ = case config(flavor, Config) of
  322. compress ->
  323. {_, <<"gzip">>} = lists:keyfind(<<"content-encoding">>, 1, Headers);
  324. _ ->
  325. false = lists:keyfind(<<"content-encoding">>, 1, Headers)
  326. end,
  327. ok.
  328. accept_encoding_gzip_1(Config) ->
  329. doc("A qvalue different than 0 means the content-coding is acceptable. (RFC7231 5.3.4)"),
  330. ConnPid = gun_open(Config),
  331. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  332. {<<"accept-encoding">>, <<"gzip;q=1.0">>}
  333. ]),
  334. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  335. _ = case config(flavor, Config) of
  336. compress ->
  337. {_, <<"gzip">>} = lists:keyfind(<<"content-encoding">>, 1, Headers);
  338. _ ->
  339. false = lists:keyfind(<<"content-encoding">>, 1, Headers)
  340. end,
  341. ok.
  342. accept_encoding_gzip_0(Config) ->
  343. doc("A qvalue of 0 means the content-coding is not acceptable. (RFC7231 5.3.1, RFC7231 5.3.4)"),
  344. ConnPid = gun_open(Config),
  345. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  346. {<<"accept-encoding">>, <<"gzip;q=0">>}
  347. ]),
  348. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  349. false = lists:keyfind(<<"content-encoding">>, 1, Headers),
  350. ok.
  351. %% Cowboy currently only supports gzip automatically via cowboy_compress_h.
  352. %
  353. % 4. If multiple content-codings are acceptable, then the acceptable
  354. % content-coding with the highest non-zero qvalue is preferred.
  355. accept_encoding_empty(Config) ->
  356. doc("An empty content-coding means that the user agent does not "
  357. "want any content-coding applied to the response. (RFC7231 5.3.4)"),
  358. ConnPid = gun_open(Config),
  359. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  360. {<<"accept-encoding">>, <<>>}
  361. ]),
  362. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  363. false = lists:keyfind(<<"content-encoding">>, 1, Headers),
  364. ok.
  365. accept_encoding_unknown(Config) ->
  366. doc("An accept-encoding header only containing unknown content-codings "
  367. "should result in no content-coding being applied. (RFC7231 5.3.4)"),
  368. ConnPid = gun_open(Config),
  369. Ref = gun:get(ConnPid, "/resp/stream_reply2/200", [
  370. {<<"accept-encoding">>, <<"deflate">>}
  371. ]),
  372. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  373. false = lists:keyfind(<<"content-encoding">>, 1, Headers),
  374. ok.
  375. %% Status codes.
  376. http10_status_code_100(Config) ->
  377. case config(protocol, Config) of
  378. http ->
  379. doc("The 100 Continue status code must not "
  380. "be sent to HTTP/1.0 endpoints. (RFC7231 6.2)"),
  381. do_http10_status_code_1xx(100, Config);
  382. http2 ->
  383. status_code_100(Config)
  384. end.
  385. http10_status_code_101(Config) ->
  386. case config(protocol, Config) of
  387. http ->
  388. doc("The 101 Switching Protocols status code must not "
  389. "be sent to HTTP/1.0 endpoints. (RFC7231 6.2)"),
  390. do_http10_status_code_1xx(101, Config);
  391. http2 ->
  392. status_code_101(Config)
  393. end.
  394. do_http10_status_code_1xx(StatusCode, Config) ->
  395. ConnPid = gun_open(Config, #{http_opts => #{version => 'HTTP/1.0'}}),
  396. Ref = gun:get(ConnPid, "/resp/inform2/" ++ integer_to_list(StatusCode), [
  397. {<<"accept-encoding">>, <<"gzip">>}
  398. ]),
  399. {response, _, 200, _} = gun:await(ConnPid, Ref),
  400. ok.
  401. status_code_100(Config) ->
  402. doc("The 100 Continue status code can be sent. (RFC7231 6.2.1)"),
  403. ConnPid = gun_open(Config),
  404. Ref = gun:get(ConnPid, "/resp/inform2/100", [
  405. {<<"accept-encoding">>, <<"gzip">>}
  406. ]),
  407. {inform, 100, []} = gun:await(ConnPid, Ref),
  408. ok.
  409. status_code_101(Config) ->
  410. doc("The 101 Switching Protocols status code can be sent. (RFC7231 6.2.2)"),
  411. ConnPid = gun_open(Config),
  412. Ref = gun:get(ConnPid, "/resp/inform2/101", [
  413. {<<"accept-encoding">>, <<"gzip">>}
  414. ]),
  415. {inform, 101, []} = gun:await(ConnPid, Ref),
  416. ok.
  417. status_code_200(Config) ->
  418. doc("The 200 OK status code can be sent. (RFC7231 6.3.1)"),
  419. ConnPid = gun_open(Config),
  420. Ref = gun:get(ConnPid, "/resp/reply2/200", [
  421. {<<"accept-encoding">>, <<"gzip">>}
  422. ]),
  423. {response, _, 200, _} = gun:await(ConnPid, Ref),
  424. ok.
  425. status_code_201(Config) ->
  426. doc("The 201 Created status code can be sent. (RFC7231 6.3.2)"),
  427. ConnPid = gun_open(Config),
  428. Ref = gun:get(ConnPid, "/resp/reply2/201", [
  429. {<<"accept-encoding">>, <<"gzip">>}
  430. ]),
  431. {response, _, 201, _} = gun:await(ConnPid, Ref),
  432. ok.
  433. status_code_202(Config) ->
  434. doc("The 202 Accepted status code can be sent. (RFC7231 6.3.3)"),
  435. ConnPid = gun_open(Config),
  436. Ref = gun:get(ConnPid, "/resp/reply2/202", [
  437. {<<"accept-encoding">>, <<"gzip">>}
  438. ]),
  439. {response, _, 202, _} = gun:await(ConnPid, Ref),
  440. ok.
  441. status_code_203(Config) ->
  442. doc("The 203 Non-Authoritative Information status code can be sent. (RFC7231 6.3.4)"),
  443. ConnPid = gun_open(Config),
  444. Ref = gun:get(ConnPid, "/resp/reply2/203", [
  445. {<<"accept-encoding">>, <<"gzip">>}
  446. ]),
  447. {response, _, 203, _} = gun:await(ConnPid, Ref),
  448. ok.
  449. status_code_204(Config) ->
  450. doc("The 204 No Content status code can be sent. (RFC7231 6.3.5)"),
  451. ConnPid = gun_open(Config),
  452. Ref = gun:get(ConnPid, "/resp/reply2/204", [
  453. {<<"accept-encoding">>, <<"gzip">>}
  454. ]),
  455. {response, _, 204, _} = gun:await(ConnPid, Ref),
  456. ok.
  457. status_code_205(Config) ->
  458. doc("The 205 Reset Content status code can be sent. (RFC7231 6.3.6)"),
  459. ConnPid = gun_open(Config),
  460. Ref = gun:get(ConnPid, "/resp/reply2/205", [
  461. {<<"accept-encoding">>, <<"gzip">>}
  462. ]),
  463. {response, _, 205, _} = gun:await(ConnPid, Ref),
  464. ok.
  465. status_code_300(Config) ->
  466. doc("The 300 Multiple Choices status code can be sent. (RFC7231 6.4.1)"),
  467. ConnPid = gun_open(Config),
  468. Ref = gun:get(ConnPid, "/resp/reply2/300", [
  469. {<<"accept-encoding">>, <<"gzip">>}
  470. ]),
  471. {response, _, 300, _} = gun:await(ConnPid, Ref),
  472. ok.
  473. status_code_301(Config) ->
  474. doc("The 301 Moved Permanently status code can be sent. (RFC7231 6.4.2)"),
  475. ConnPid = gun_open(Config),
  476. Ref = gun:get(ConnPid, "/resp/reply2/301", [
  477. {<<"accept-encoding">>, <<"gzip">>}
  478. ]),
  479. {response, _, 301, _} = gun:await(ConnPid, Ref),
  480. ok.
  481. status_code_302(Config) ->
  482. doc("The 302 Found status code can be sent. (RFC7231 6.4.3)"),
  483. ConnPid = gun_open(Config),
  484. Ref = gun:get(ConnPid, "/resp/reply2/302", [
  485. {<<"accept-encoding">>, <<"gzip">>}
  486. ]),
  487. {response, _, 302, _} = gun:await(ConnPid, Ref),
  488. ok.
  489. status_code_303(Config) ->
  490. doc("The 303 See Other status code can be sent. (RFC7231 6.4.4)"),
  491. ConnPid = gun_open(Config),
  492. Ref = gun:get(ConnPid, "/resp/reply2/303", [
  493. {<<"accept-encoding">>, <<"gzip">>}
  494. ]),
  495. {response, _, 303, _} = gun:await(ConnPid, Ref),
  496. ok.
  497. status_code_305(Config) ->
  498. doc("The 305 Use Proxy status code can be sent. (RFC7231 6.4.5)"),
  499. ConnPid = gun_open(Config),
  500. Ref = gun:get(ConnPid, "/resp/reply2/305", [
  501. {<<"accept-encoding">>, <<"gzip">>}
  502. ]),
  503. {response, _, 305, _} = gun:await(ConnPid, Ref),
  504. ok.
  505. %% The status code 306 is no longer used. (RFC7231 6.4.6)
  506. status_code_307(Config) ->
  507. doc("The 307 Temporary Redirect status code can be sent. (RFC7231 6.4.7)"),
  508. ConnPid = gun_open(Config),
  509. Ref = gun:get(ConnPid, "/resp/reply2/307", [
  510. {<<"accept-encoding">>, <<"gzip">>}
  511. ]),
  512. {response, _, 307, _} = gun:await(ConnPid, Ref),
  513. ok.
  514. status_code_400(Config) ->
  515. doc("The 400 Bad Request status code can be sent. (RFC7231 6.5.1)"),
  516. ConnPid = gun_open(Config),
  517. Ref = gun:get(ConnPid, "/resp/reply2/400", [
  518. {<<"accept-encoding">>, <<"gzip">>}
  519. ]),
  520. {response, _, 400, _} = gun:await(ConnPid, Ref),
  521. ok.
  522. status_code_402(Config) ->
  523. doc("The 402 Payment Required status code can be sent. (RFC7231 6.5.2)"),
  524. ConnPid = gun_open(Config),
  525. Ref = gun:get(ConnPid, "/resp/reply2/402", [
  526. {<<"accept-encoding">>, <<"gzip">>}
  527. ]),
  528. {response, _, 402, _} = gun:await(ConnPid, Ref),
  529. ok.
  530. status_code_403(Config) ->
  531. doc("The 403 Forbidden status code can be sent. (RFC7231 6.5.3)"),
  532. ConnPid = gun_open(Config),
  533. Ref = gun:get(ConnPid, "/resp/reply2/403", [
  534. {<<"accept-encoding">>, <<"gzip">>}
  535. ]),
  536. {response, _, 403, _} = gun:await(ConnPid, Ref),
  537. ok.
  538. status_code_404(Config) ->
  539. doc("The 404 Not Found status code can be sent. (RFC7231 6.5.4)"),
  540. ConnPid = gun_open(Config),
  541. Ref = gun:get(ConnPid, "/resp/reply2/404", [
  542. {<<"accept-encoding">>, <<"gzip">>}
  543. ]),
  544. {response, _, 404, _} = gun:await(ConnPid, Ref),
  545. ok.
  546. status_code_405(Config) ->
  547. doc("The 405 Method Not Allowed status code can be sent. (RFC7231 6.5.5)"),
  548. ConnPid = gun_open(Config),
  549. Ref = gun:get(ConnPid, "/resp/reply2/405", [
  550. {<<"accept-encoding">>, <<"gzip">>}
  551. ]),
  552. {response, _, 405, _} = gun:await(ConnPid, Ref),
  553. ok.
  554. status_code_406(Config) ->
  555. doc("The 406 Not Acceptable status code can be sent. (RFC7231 6.5.6)"),
  556. ConnPid = gun_open(Config),
  557. Ref = gun:get(ConnPid, "/resp/reply2/406", [
  558. {<<"accept-encoding">>, <<"gzip">>}
  559. ]),
  560. {response, _, 406, _} = gun:await(ConnPid, Ref),
  561. ok.
  562. status_code_408(Config) ->
  563. doc("The 408 Request Timeout status code can be sent. (RFC7231 6.5.7)"),
  564. ConnPid = gun_open(Config),
  565. Ref = gun:get(ConnPid, "/resp/reply2/408", [
  566. {<<"accept-encoding">>, <<"gzip">>}
  567. ]),
  568. {response, _, 408, _} = gun:await(ConnPid, Ref),
  569. ok.
  570. status_code_408_connection_close(Config) ->
  571. case config(protocol, Config) of
  572. http ->
  573. do_http11_status_code_408_connection_close(Config);
  574. http2 ->
  575. doc("HTTP/2 connections are not closed on 408 responses.")
  576. end.
  577. do_http11_status_code_408_connection_close(Config) ->
  578. doc("A 408 response should result in a connection close "
  579. "for HTTP/1.1 connections. (RFC7231 6.5.7)"),
  580. Client = raw_open(Config),
  581. ok = raw_send(Client, "GET / HTTP/1.1\r\n"),
  582. {_, 408, _, Rest} = cow_http:parse_status_line(raw_recv_head(Client)),
  583. {Headers, <<>>} = cow_http:parse_headers(Rest),
  584. {_, <<"close">>} = lists:keyfind(<<"connection">>, 1, Headers),
  585. {error, closed} = raw_recv(Client, 0, 1000),
  586. ok.
  587. status_code_409(Config) ->
  588. doc("The 409 Conflict status code can be sent. (RFC7231 6.5.8)"),
  589. ConnPid = gun_open(Config),
  590. Ref = gun:get(ConnPid, "/resp/reply2/409", [
  591. {<<"accept-encoding">>, <<"gzip">>}
  592. ]),
  593. {response, _, 409, _} = gun:await(ConnPid, Ref),
  594. ok.
  595. status_code_410(Config) ->
  596. doc("The 410 Gone status code can be sent. (RFC7231 6.5.9)"),
  597. ConnPid = gun_open(Config),
  598. Ref = gun:get(ConnPid, "/resp/reply2/410", [
  599. {<<"accept-encoding">>, <<"gzip">>}
  600. ]),
  601. {response, _, 410, _} = gun:await(ConnPid, Ref),
  602. ok.
  603. status_code_411(Config) ->
  604. doc("The 411 Length Required status code can be sent. (RFC7231 6.5.10)"),
  605. ConnPid = gun_open(Config),
  606. Ref = gun:get(ConnPid, "/resp/reply2/411", [
  607. {<<"accept-encoding">>, <<"gzip">>}
  608. ]),
  609. {response, _, 411, _} = gun:await(ConnPid, Ref),
  610. ok.
  611. status_code_413(Config) ->
  612. doc("The 413 Payload Too Large status code can be sent. (RFC7231 6.5.11)"),
  613. ConnPid = gun_open(Config),
  614. Ref = gun:get(ConnPid, "/resp/reply2/413", [
  615. {<<"accept-encoding">>, <<"gzip">>}
  616. ]),
  617. {response, _, 413, _} = gun:await(ConnPid, Ref),
  618. ok.
  619. status_code_414(Config) ->
  620. doc("The 414 URI Too Long status code can be sent. (RFC7231 6.5.12)"),
  621. ConnPid = gun_open(Config),
  622. Ref = gun:get(ConnPid, "/resp/reply2/414", [
  623. {<<"accept-encoding">>, <<"gzip">>}
  624. ]),
  625. {response, _, 414, _} = gun:await(ConnPid, Ref),
  626. ok.
  627. status_code_415(Config) ->
  628. doc("The 415 Unsupported Media Type status code can be sent. (RFC7231 6.5.13)"),
  629. ConnPid = gun_open(Config),
  630. Ref = gun:get(ConnPid, "/resp/reply2/415", [
  631. {<<"accept-encoding">>, <<"gzip">>}
  632. ]),
  633. {response, _, 415, _} = gun:await(ConnPid, Ref),
  634. ok.
  635. status_code_417(Config) ->
  636. doc("The 417 Expectation Failed status code can be sent. (RFC7231 6.5.14)"),
  637. ConnPid = gun_open(Config),
  638. Ref = gun:get(ConnPid, "/resp/reply2/417", [
  639. {<<"accept-encoding">>, <<"gzip">>}
  640. ]),
  641. {response, _, 417, _} = gun:await(ConnPid, Ref),
  642. ok.
  643. status_code_426(Config) ->
  644. doc("The 426 Upgrade Required status code can be sent. (RFC7231 6.5.15)"),
  645. ConnPid = gun_open(Config),
  646. Ref = gun:get(ConnPid, "/resp/reply2/426", [
  647. {<<"accept-encoding">>, <<"gzip">>}
  648. ]),
  649. {response, _, 426, _} = gun:await(ConnPid, Ref),
  650. ok.
  651. status_code_426_upgrade_header(Config) ->
  652. case config(protocol, Config) of
  653. http ->
  654. do_status_code_426_upgrade_header(Config);
  655. http2 ->
  656. doc("HTTP/2 does not support the HTTP/1.1 Upgrade mechanism.")
  657. end.
  658. do_status_code_426_upgrade_header(Config) ->
  659. doc("A 426 response must include a upgrade header. (RFC7231 6.5.15)"),
  660. ConnPid = gun_open(Config),
  661. Ref = gun:get(ConnPid, "/ws?ok", [
  662. {<<"accept-encoding">>, <<"gzip">>}
  663. ]),
  664. {response, _, 426, Headers} = gun:await(ConnPid, Ref),
  665. {_, <<"upgrade">>} = lists:keyfind(<<"connection">>, 1, Headers),
  666. {_, <<"websocket">>} = lists:keyfind(<<"upgrade">>, 1, Headers),
  667. ok.
  668. status_code_500(Config) ->
  669. doc("The 500 Internal Server Error status code can be sent. (RFC7231 6.6.1)"),
  670. ConnPid = gun_open(Config),
  671. Ref = gun:get(ConnPid, "/resp/reply2/500", [
  672. {<<"accept-encoding">>, <<"gzip">>}
  673. ]),
  674. {response, _, 500, _} = gun:await(ConnPid, Ref),
  675. ok.
  676. status_code_501(Config) ->
  677. doc("The 501 Not Implemented status code can be sent. (RFC7231 6.6.2)"),
  678. ConnPid = gun_open(Config),
  679. Ref = gun:get(ConnPid, "/resp/reply2/501", [
  680. {<<"accept-encoding">>, <<"gzip">>}
  681. ]),
  682. {response, _, 501, _} = gun:await(ConnPid, Ref),
  683. ok.
  684. status_code_502(Config) ->
  685. doc("The 502 Bad Gateway status code can be sent. (RFC7231 6.6.3)"),
  686. ConnPid = gun_open(Config),
  687. Ref = gun:get(ConnPid, "/resp/reply2/502", [
  688. {<<"accept-encoding">>, <<"gzip">>}
  689. ]),
  690. {response, _, 502, _} = gun:await(ConnPid, Ref),
  691. ok.
  692. status_code_503(Config) ->
  693. doc("The 503 Service Unavailable status code can be sent. (RFC7231 6.6.4)"),
  694. ConnPid = gun_open(Config),
  695. Ref = gun:get(ConnPid, "/resp/reply2/503", [
  696. {<<"accept-encoding">>, <<"gzip">>}
  697. ]),
  698. {response, _, 503, _} = gun:await(ConnPid, Ref),
  699. ok.
  700. status_code_504(Config) ->
  701. doc("The 504 Gateway Timeout status code can be sent. (RFC7231 6.6.5)"),
  702. ConnPid = gun_open(Config),
  703. Ref = gun:get(ConnPid, "/resp/reply2/504", [
  704. {<<"accept-encoding">>, <<"gzip">>}
  705. ]),
  706. {response, _, 504, _} = gun:await(ConnPid, Ref),
  707. ok.
  708. status_code_505(Config) ->
  709. doc("The 505 HTTP Version Not Supported status code can be sent. (RFC7231 6.6.6)"),
  710. ConnPid = gun_open(Config),
  711. Ref = gun:get(ConnPid, "/resp/reply2/505", [
  712. {<<"accept-encoding">>, <<"gzip">>}
  713. ]),
  714. {response, _, 505, _} = gun:await(ConnPid, Ref),
  715. ok.
  716. %% The 505 response code is supposed to be about the major HTTP version.
  717. %% Cowboy instead rejects any version that isn't HTTP/1.0 or HTTP/1.1
  718. %% when expecting an h1 request. While this is not correct in theory
  719. %% it works in practice because there are no other minor versions.
  720. %%
  721. %% Cowboy does not do version checking for HTTP/2 since the protocol
  722. %% does not include a version number in the messages.
  723. %% Response headers.
  724. %% @todo No such header in this suite, but some in other suites (if-(un)modified-since).
  725. % A recipient that parses a timestamp value in an HTTP header field
  726. % MUST accept all three HTTP-date formats. (RFC7231 7.1.1.1)
  727. date_imf_fixdate(Config) ->
  728. doc("The date header uses the IMF-fixdate format. (RFC7231 7.1.1.1, RFC7231 7.1.1.2)"),
  729. ConnPid = gun_open(Config),
  730. Ref = gun:get(ConnPid, "/", [
  731. {<<"accept-encoding">>, <<"gzip">>}
  732. ]),
  733. {response, nofin, 200, Headers} = gun:await(ConnPid, Ref),
  734. {_, <<_,_,_,", ",_,_," ",_,_,_," ",_,_,_,_," ",_,_,":",_,_,":",_,_," GMT">>}
  735. = lists:keyfind(<<"date">>, 1, Headers),
  736. ok.
  737. %% @todo Applies to both date and other headers (if-(un)modified-since).
  738. % HTTP-date is case sensitive. A sender MUST NOT generate additional
  739. % whitespace in an HTTP-date beyond that specifically included as SP in
  740. % the grammar. The semantics of day-name, day, month, year, and
  741. % time-of-day are the same as those defined for the Internet Message
  742. % Format constructs with the corresponding name ([RFC5322], Section
  743. % 3.3). (RFC7231 7.1.1.1)
  744. %% @todo No such header in this suite, but some in other suites (if-(un)modified-since).
  745. % Recipients of a timestamp value in rfc850-date format, which uses a
  746. % two-digit year, MUST interpret a timestamp that appears to be more
  747. % than 50 years in the future as representing the most recent year in
  748. % the past that had the same last two digits. (RFC7231 7.1.1.1)
  749. %% @todo Add an option to disable sending the date header.
  750. % An origin server MUST NOT send a Date header field if it does not
  751. % have a clock capable of providing a reasonable approximation of the
  752. % current instance in Coordinated Universal Time. (RFC7231 7.1.1.2)
  753. no_date_1xx(Config) ->
  754. doc("The date header is optional for 1xx responses. "
  755. "Cowboy does not send it with those responses. (RFC7231 7.1.1.2)"),
  756. ConnPid = gun_open(Config),
  757. Ref = gun:get(ConnPid, "/resp/inform2/100", [
  758. {<<"accept-encoding">>, <<"gzip">>}
  759. ]),
  760. {inform, 100, Headers} = gun:await(ConnPid, Ref),
  761. false = lists:keyfind(<<"date">>, 1, Headers),
  762. ok.
  763. date_2xx(Config) ->
  764. doc("A date header must be sent for 2xx status codes. (RFC7231 7.1.1.2)"),
  765. ConnPid = gun_open(Config),
  766. Ref = gun:get(ConnPid, "/resp/reply2/200", [
  767. {<<"accept-encoding">>, <<"gzip">>}
  768. ]),
  769. {response, _, 200, Headers} = gun:await(ConnPid, Ref),
  770. {_, _} = lists:keyfind(<<"date">>, 1, Headers),
  771. ok.
  772. date_3xx(Config) ->
  773. doc("A date header must be sent for 3xx status codes. (RFC7231 7.1.1.2)"),
  774. ConnPid = gun_open(Config),
  775. Ref = gun:get(ConnPid, "/resp/reply2/300", [
  776. {<<"accept-encoding">>, <<"gzip">>}
  777. ]),
  778. {response, _, 300, Headers} = gun:await(ConnPid, Ref),
  779. {_, _} = lists:keyfind(<<"date">>, 1, Headers),
  780. ok.
  781. date_4xx(Config) ->
  782. doc("A date header must be sent for 4xx status codes. (RFC7231 7.1.1.2)"),
  783. ConnPid = gun_open(Config),
  784. Ref = gun:get(ConnPid, "/resp/reply2/400", [
  785. {<<"accept-encoding">>, <<"gzip">>}
  786. ]),
  787. {response, _, 400, Headers} = gun:await(ConnPid, Ref),
  788. {_, _} = lists:keyfind(<<"date">>, 1, Headers),
  789. ok.
  790. date_5xx(Config) ->
  791. doc("The date header is optional for 5xx status codes. "
  792. "Cowboy however does send it with those responses. (RFC7231 7.1.1.2)"),
  793. ConnPid = gun_open(Config),
  794. Ref = gun:get(ConnPid, "/resp/reply2/500", [
  795. {<<"accept-encoding">>, <<"gzip">>}
  796. ]),
  797. {response, _, 500, Headers} = gun:await(ConnPid, Ref),
  798. {_, _} = lists:keyfind(<<"date">>, 1, Headers),
  799. ok.
  800. %% @todo It's worth revisiting this RFC in the context of cowboy_rest
  801. %% to ensure the state machine is doing what's expected by the RFC.