rfc7230_SUITE.erl 51 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426
  1. %% Copyright (c) 2015-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(rfc7230_SUITE).
  15. -compile(export_all).
  16. -import(ct_helper, [doc/1]).
  17. -import(cowboy_test, [raw_open/1]).
  18. -import(cowboy_test, [raw_send/2]).
  19. -import(cowboy_test, [raw_recv_head/1]).
  20. -import(cowboy_test, [raw_recv/3]).
  21. all() -> [{group, http}].
  22. groups() -> [{http, [parallel], ct_helper:all(?MODULE)}]. %% @todo parallel
  23. init_per_group(Name = http, Config) ->
  24. cowboy_test:init_http(Name = http, #{
  25. env => #{dispatch => cowboy_router:compile(init_routes(Config))}
  26. }, Config).
  27. end_per_group(Name, _) ->
  28. ok = cowboy:stop_listener(Name).
  29. init_routes(_) -> [
  30. {"localhost", [
  31. {"/", hello_h, []},
  32. {"/echo/:key", echo_h, []}
  33. %% @todo Something is clearly wrong about routing * right now.
  34. %% {"*", asterisk_h, []}
  35. ]},
  36. {"127.0.0.1", [{"/echo/:key", echo_h, []}]},
  37. {"example.org", [{"/echo/:key", echo_h, []}]}
  38. %% @todo Add IPv6 addresses support to the router. This fails:
  39. %% {"[2001:db8:85a3::8a2e:370:7334]", [{"/echo/:key", echo_h, []}]}
  40. ].
  41. do_raw(Config, Data) ->
  42. Client = raw_open(Config),
  43. ok = raw_send(Client, Data),
  44. {Version, Code, Reason, Rest} = cow_http:parse_status_line(raw_recv_head(Client)),
  45. {Headers, Rest2} = cow_http:parse_headers(Rest),
  46. case lists:keyfind(<<"content-length">>, 1, Headers) of
  47. {_, LengthBin} when LengthBin =/= <<"0">> ->
  48. Length = binary_to_integer(LengthBin),
  49. Body = if
  50. byte_size(Rest2) =:= Length -> Rest2;
  51. true ->
  52. {ok, Body0} = raw_recv(Client, binary_to_integer(LengthBin) - byte_size(Rest2), 5000),
  53. << Rest2/bits, Body0/bits >>
  54. end,
  55. #{client => Client, version => Version, code => Code, reason => Reason, headers => Headers, body => Body};
  56. _ ->
  57. #{client => Client, version => Version, code => Code, reason => Reason, headers => Headers, body => <<>>}
  58. end.
  59. %% Listener.
  60. %% @todo Add to documentation.
  61. %The default port for "http" connections is 80. The connection
  62. %uses plain TCP. (RFC7230 2.7.1)
  63. %
  64. %The default port for "https" connections is 443. The connection
  65. %uses TLS. (RFC7230 2.7.2)
  66. %
  67. %Any other port may be used for either of them.
  68. %% Before the request.
  69. accept_at_least_1_empty_line(Config) ->
  70. doc("A configurable number of empty lines (CRLF) preceding the request "
  71. "must be ignored. At least 1 empty line must be ignored. (RFC7230 3.5)"),
  72. #{code := 200} = do_raw(Config,
  73. "\r\n"
  74. "GET / HTTP/1.1\r\n"
  75. "Host: localhost\r\n"
  76. "\r\n").
  77. reject_response(Config) ->
  78. doc("When receiving a response instead of a request, identified by the "
  79. "status-line which starts with the HTTP version, the server must "
  80. "reject the message with a 400 status code and close the connection. (RFC7230 3.1)"),
  81. #{code := 400, client := Client} = do_raw(Config,
  82. "HTTP/1.1 200 OK\r\n"
  83. "\r\n"),
  84. {error, closed} = raw_recv(Client, 0, 1000).
  85. %% Request.
  86. only_parse_necessary_elements(Config) ->
  87. doc("It is only necessary to parse elements required to process the request. (RFC7230 2.5)"),
  88. #{code := 200} = do_raw(Config,
  89. "GET / HTTP/1.1\r\n"
  90. "Host: localhost\r\n"
  91. "Content-type: purposefully bad header value\r\n"
  92. "\r\n").
  93. %% @todo Add to documentation.
  94. %Parsed elements are subject to configurable limits. A server must
  95. %be able to parse elements at least as long as it generates. (RFC7230 2.5)
  96. no_empty_line_after_request_line(Config) ->
  97. doc("The general format of HTTP requests is strict. No empty line is "
  98. "allowed in-between components except for the empty line "
  99. "indicating the end of the list of headers."),
  100. #{code := 400} = do_raw(Config,
  101. "GET / HTTP/1.1\r\n"
  102. "\r\n"
  103. "Host: localhost\r\n"
  104. "\r\n").
  105. no_empty_line_in_headers(Config) ->
  106. doc("The general format of HTTP requests is strict. No empty line is "
  107. "allowed in-between components except for the empty line "
  108. "indicating the end of the list of headers."),
  109. #{code := 400} = do_raw(Config,
  110. "GET / HTTP/1.1\r\n"
  111. "User-Agent: RFC7230\r\n"
  112. "\r\n"
  113. "Host: localhost\r\n"
  114. "\r\n").
  115. timeout_before_request_line(Config) ->
  116. doc("The time the request (request line and headers) takes to be "
  117. "received by the server must be limited and subject to configuration. "
  118. "No response must be sent before closing if no request was initiated "
  119. "by the reception of a complete request-line."),
  120. Client = raw_open(Config),
  121. ok = raw_send(Client, "GET / HTTP/1.1\r"),
  122. {error, closed} = raw_recv(Client, 0, 6000).
  123. timeout_after_request_line(Config) ->
  124. doc("The time the request (request line and headers) takes to be "
  125. "received by the server must be limited and subject to configuration. "
  126. "A 408 status code must be sent if the request line was received."),
  127. #{code := 408, client := Client} = do_raw(Config, "GET / HTTP/1.1\r\n"),
  128. {error, closed} = raw_recv(Client, 0, 6000).
  129. %% @todo Add an HTTP/1.0 test suite.
  130. %An HTTP/1.1 server must understand any valid HTTP/1.0 request,
  131. %and respond to those with an HTTP/1.1 message that only use
  132. %features understood or safely ignored by HTTP/1.0 clients. (RFC7230 A)
  133. %% Request line.
  134. limit_request_line_8000(Config) ->
  135. doc("It is recommended to limit the request-line length to a configurable "
  136. "limit of at least 8000 octets."),
  137. LongPath = ["/long-path" || _ <- lists:seq(1, 799)],
  138. #{code := 200} = do_raw(Config, [
  139. "GET /?qs=", LongPath, " HTTP/1.1\r\n"
  140. "Host: localhost\r\n"
  141. "\r\n"]).
  142. limit_request_line_9000(Config) ->
  143. doc("It is recommended to limit the request-line length to a configurable "
  144. "limit of at least 8000 octets. A request line too long must be rejected "
  145. "with a 414 status code and the closing of the connection. (RFC7230 3.1.1)"),
  146. LongPath = ["/long-path" || _ <- lists:seq(1, 899)],
  147. #{code := 414, client := Client} = do_raw(Config, [
  148. "GET /very", LongPath, " HTTP/1.1\r\n"
  149. "Host: localhost\r\n"
  150. "\r\n"]),
  151. {error, closed} = raw_recv(Client, 0, 1000).
  152. %% Method.
  153. reject_invalid_method(Config) ->
  154. doc("The request method is defined as 1+ token characters. An invalid "
  155. "method must be rejected with a 400 status code and the "
  156. "closing of the connection. (RFC7230 3.1.1, RFC7230 3.2.6)"),
  157. #{code := 400, client := Client} = do_raw(Config,
  158. "GET\0 / HTTP/1.1\r\n"
  159. "Host: localhost\r\n"
  160. "\r\n"),
  161. {error, closed} = raw_recv(Client, 0, 1000).
  162. reject_empty_method(Config) ->
  163. doc("The request method is defined as 1+ token characters. An empty "
  164. "method must be rejected with a 400 status code and the "
  165. "closing of the connection. (RFC7230 3.1.1, RFC7230 3.2.6)"),
  166. #{code := 400, client := Client} = do_raw(Config,
  167. " / HTTP/1.1\r\n"
  168. "Host: localhost\r\n"
  169. "\r\n"),
  170. {error, closed} = raw_recv(Client, 0, 1000).
  171. %% @todo We probably want to directly match commonly used methods.
  172. %In practice the only characters in use by registered methods are
  173. %uppercase letters [A-Z] and the dash "-". (IANA HTTP Method Registry)
  174. limit_method_name(Config) ->
  175. doc("The length of the method must be subject to a configurable limit. "
  176. "A method too long must be rejected with a 501 status code and the "
  177. "closing of the connection. A good default for the method length limit "
  178. "is the longest method length the server implements. (RFC7230 3.1.1)"),
  179. LongMethod = [$G || _ <- lists:seq(1, 1000)],
  180. #{code := 501, client := Client} = do_raw(Config, [
  181. LongMethod, " / HTTP/1.1\r\n"
  182. "Host: localhost\r\n"
  183. "\r\n"]),
  184. {error, closed} = raw_recv(Client, 0, 1000).
  185. %% Between method and request-target.
  186. reject_tab_between_method_and_request_target(Config) ->
  187. doc("A request that uses anything other than SP as separator between "
  188. "the method and the request-target must be rejected with a 400 "
  189. "status code and the closing of the connection. (RFC7230 3.1.1, RFC7230 3.5)"),
  190. #{code := 400, client := Client} = do_raw(Config,
  191. "GET\t/ HTTP/1.1\r\n"
  192. "Host: localhost\r\n"
  193. "\r\n"),
  194. {error, closed} = raw_recv(Client, 0, 1000).
  195. reject_two_sp_between_method_and_request_target(Config) ->
  196. doc("A request that uses anything other than SP as separator between "
  197. "the method and the request-target must be rejected with a 400 "
  198. "status code and the closing of the connection. (RFC7230 3.1.1, RFC7230 3.5)"),
  199. #{code := 400, client := Client} = do_raw(Config,
  200. "GET / HTTP/1.1\r\n"
  201. "Host: localhost\r\n"
  202. "\r\n"),
  203. {error, closed} = raw_recv(Client, 0, 1000).
  204. %% Request target.
  205. ignore_uri_fragment_after_path(Config) ->
  206. doc("The fragment part of the target URI is not sent. It must be "
  207. "ignored by a server receiving it. (RFC7230 5.1)"),
  208. Echo = <<"http://localhost/echo/url">>,
  209. #{code := 200, body := Echo} = do_raw(Config,
  210. "GET /echo/url#fragment HTTP/1.1\r\n"
  211. "Host: localhost\r\n"
  212. "\r\n").
  213. ignore_uri_fragment_after_query(Config) ->
  214. doc("The fragment part of the target URI is not sent. It must be "
  215. "ignored by a server receiving it. (RFC7230 5.1)"),
  216. Echo = <<"http://localhost/echo/url?key=value">>,
  217. #{code := 200, body := Echo} = do_raw(Config,
  218. "GET /echo/url?key=value#fragment HTTP/1.1\r\n"
  219. "Host: localhost\r\n"
  220. "\r\n").
  221. %% Request target: origin-form.
  222. must_understand_origin_form(Config) ->
  223. doc("A server must be able to handle at least origin-form and absolute-form. (RFC7230 5.3.2)"),
  224. #{code := 200} = do_raw(Config,
  225. "GET / HTTP/1.1\r\n"
  226. "Host: localhost\r\n"
  227. "\r\n").
  228. origin_form_reject_if_connect(Config) ->
  229. doc("origin-form is used when the client does not connect to a proxy, "
  230. "does not use the CONNECT method and does not issue a site-wide "
  231. "OPTIONS request. (RFC7230 5.3.1)"),
  232. #{code := 400, client := Client} = do_raw(Config,
  233. "CONNECT / HTTP/1.1\r\n"
  234. "Host: localhost\r\n"
  235. "\r\n"),
  236. {error, closed} = raw_recv(Client, 0, 1000).
  237. %% @todo Equivalent test for https.
  238. origin_form_tcp_scheme(Config) ->
  239. doc("The scheme is either resolved from configuration or is \"https\" "
  240. "when on a TLS connection and \"http\" otherwise. (RFC7230 5.5)"),
  241. Echo = <<"http://localhost/echo/url">>,
  242. #{code := 200, body := Echo} = do_raw(Config,
  243. "GET /echo/url HTTP/1.1\r\n"
  244. "Host: localhost\r\n"
  245. "\r\n").
  246. origin_form_path(Config) ->
  247. doc("The absolute-path always starts with \"/\" and ends with either \"?\", \"#\" "
  248. "or the end of the URI. (RFC3986 3.3)"),
  249. Echo = <<"/echo/path">>,
  250. #{code := 200, body := Echo} = do_raw(Config,
  251. "GET /echo/path HTTP/1.1\r\n"
  252. "Host: localhost\r\n"
  253. "\r\n").
  254. origin_form_path_query(Config) ->
  255. doc("The absolute-path always starts with \"/\" and ends with either \"?\", \"#\" "
  256. "or the end of the URI. (RFC3986 3.3)"),
  257. Echo = <<"/echo/path">>,
  258. #{code := 200, body := Echo} = do_raw(Config,
  259. "GET /echo/path?key=value HTTP/1.1\r\n"
  260. "Host: localhost\r\n"
  261. "\r\n").
  262. origin_form_path_fragment(Config) ->
  263. doc("The absolute-path always starts with \"/\" and ends with either \"?\", \"#\" "
  264. "or the end of the URI. (RFC3986 3.3)"),
  265. Echo = <<"/echo/path">>,
  266. #{code := 200, body := Echo} = do_raw(Config,
  267. "GET /echo/path#fragment HTTP/1.1\r\n"
  268. "Host: localhost\r\n"
  269. "\r\n").
  270. origin_form_query(Config) ->
  271. doc("The query starts with \"?\" and ends with \"#\" or the end of the URI. (RFC3986 3.4)"),
  272. Echo = <<"key=value">>,
  273. #{code := 200, body := Echo} = do_raw(Config,
  274. "GET /echo/qs?key=value HTTP/1.1\r\n"
  275. "Host: localhost\r\n"
  276. "\r\n").
  277. origin_form_query_fragment(Config) ->
  278. doc("The query starts with \"?\" and ends with \"#\" or the end of the URI. (RFC3986 3.4)"),
  279. Echo = <<"key=value">>,
  280. #{code := 200, body := Echo} = do_raw(Config,
  281. "GET /echo/qs?key=value#fragment HTTP/1.1\r\n"
  282. "Host: localhost\r\n"
  283. "\r\n").
  284. %% @todo origin_form: reject paths with too large depth or query strings with too many keys
  285. %% Request target: absolute-form.
  286. must_understand_absolute_form(Config) ->
  287. doc("A server must be able to handle at least origin-form and absolute-form. (RFC7230 5.3.2)"),
  288. #{code := 200} = do_raw(Config,
  289. "GET http://localhost HTTP/1.1\r\n"
  290. "Host: localhost\r\n"
  291. "\r\n").
  292. absolute_form_case_insensitive_scheme(Config) ->
  293. doc("The scheme is case insensitive and normally provided in lowercase. (RFC7230 2.7.3)"),
  294. Echo = <<"http://localhost/echo/url">>,
  295. #{code := 200, body := Echo} = do_raw(Config,
  296. "GET HttP://localhost/echo/url HTTP/1.1\r\n"
  297. "Host: localhost\r\n"
  298. "\r\n").
  299. absolute_form_case_insensitive_host(Config) ->
  300. doc("The host is case insensitive and normally provided in lowercase. (RFC7230 2.7.3)"),
  301. Echo = <<"http://localhost/echo/url">>,
  302. #{code := 200, body := Echo} = do_raw(Config,
  303. "GET http://LoCaLHOsT/echo/url HTTP/1.1\r\n"
  304. "Host: localhost\r\n"
  305. "\r\n").
  306. absolute_form_reject_unknown_schemes(Config) ->
  307. doc("Unknown schemes must be rejected with a 400 status code and the closing of the connection."),
  308. #{code := 400, client := Client} = do_raw(Config,
  309. "GET bad://localhost/ HTTP/1.1\r\n"
  310. "Host: localhost\r\n"
  311. "\r\n"),
  312. {error, closed} = raw_recv(Client, 0, 1000).
  313. %% @todo Equivalent test for https.
  314. absolute_form_drop_scheme_tcp(Config) ->
  315. doc("The scheme provided with the request must be dropped. The effective "
  316. "scheme is either resolved from configuration or is \"https\" when on "
  317. "a TLS connection and \"http\" otherwise. (RFC7230 5.5)"),
  318. Echo = <<"http://localhost/echo/url">>,
  319. #{code := 200, body := Echo} = do_raw(Config,
  320. "GET https://localhost/echo/url HTTP/1.1\r\n"
  321. "Host: localhost\r\n"
  322. "\r\n").
  323. absolute_form_reject_userinfo(Config) ->
  324. doc("An authority component with a userinfo component (and its "
  325. "\"@\" delimiter) is invalid. The request must be rejected with "
  326. "a 400 status code and the closing of the connection. (RFC7230 2.7.1)"),
  327. #{code := 400, client := Client} = do_raw(Config,
  328. "GET http://username:password@localhost HTTP/1.1\r\n"
  329. "Host: localhost\r\n"
  330. "\r\n"),
  331. {error, closed} = raw_recv(Client, 0, 1000).
  332. absolute_form_reject_missing_host_without_path(Config) ->
  333. doc("A URI with a missing host identifier is invalid. The request must "
  334. "be rejected with a 400 status code and the closing of the connection. (RFC7230 2.7.1)"),
  335. #{code := 400, client := Client} = do_raw(Config,
  336. "GET http:// HTTP/1.1\r\n"
  337. "Host: localhost\r\n"
  338. "\r\n"),
  339. {error, closed} = raw_recv(Client, 0, 1000).
  340. absolute_form_reject_missing_host_with_path(Config) ->
  341. doc("A URI with a missing host identifier is invalid. The request must "
  342. "be rejected with a 400 status code and the closing of the connection. (RFC7230 2.7.1)"),
  343. #{code := 400, client := Client} = do_raw(Config,
  344. "GET http:/// HTTP/1.1\r\n"
  345. "Host: localhost\r\n"
  346. "\r\n"),
  347. {error, closed} = raw_recv(Client, 0, 1000).
  348. absolute_form_ipv4(Config) ->
  349. doc("Absolute form with an IPv4 address for the host. (RFC3986 3.2.2)"),
  350. Echo = <<"127.0.0.1">>,
  351. #{code := 200, body := Echo} = do_raw(Config,
  352. "GET http://127.0.0.1/echo/host HTTP/1.1\r\n"
  353. "Host: 127.0.0.1\r\n"
  354. "\r\n").
  355. absolute_form_ipv4_port(Config) ->
  356. doc("Absolute form with an IPv4 address for the host and a port number. (RFC3986 3.2.2)"),
  357. Host = <<"127.0.0.1">>,
  358. #{code := 200, body := Host} = do_raw(Config,
  359. "GET http://127.0.0.1:8080/echo/host HTTP/1.1\r\n"
  360. "Host: 127.0.0.1:8080\r\n"
  361. "\r\n"),
  362. Port = <<"8080">>,
  363. #{code := 200, body := Port} = do_raw(Config,
  364. "GET http://127.0.0.1:8080/echo/port HTTP/1.1\r\n"
  365. "Host: 127.0.0.1:8080\r\n"
  366. "\r\n").
  367. %% @todo We need the router to support IPv6 addresses to write proper tests for these:
  368. %absolute_form_ipv6(Config) ->
  369. %absolute_form_ipv6_ipv4(Config) ->
  370. %absolute_form_ipv6_zoneid(Config) ->
  371. absolute_form_reg_name(Config) ->
  372. doc("Absolute form with a regular name for the host. (RFC3986 3.2.2)"),
  373. Echo = <<"example.org">>,
  374. #{code := 200, body := Echo} = do_raw(Config,
  375. "GET http://example.org/echo/host HTTP/1.1\r\n"
  376. "Host: example.org\r\n"
  377. "\r\n").
  378. absolute_form_reg_name_port(Config) ->
  379. doc("Absolute form with an IPv4 address for the host and a port number. (RFC3986 3.2.2)"),
  380. Host = <<"example.org">>,
  381. #{code := 200, body := Host} = do_raw(Config,
  382. "GET http://example.org:8080/echo/host HTTP/1.1\r\n"
  383. "Host: example.org:8080\r\n"
  384. "\r\n"),
  385. Port = <<"8080">>,
  386. #{code := 200, body := Port} = do_raw(Config,
  387. "GET http://example.org:8080/echo/port HTTP/1.1\r\n"
  388. "Host: example.org:8080\r\n"
  389. "\r\n").
  390. absolute_form_limit_host(Config) ->
  391. doc("The maximum length for the host component of the URI must be subject "
  392. "to a configurable limit. A good default is 255 characters. "
  393. "(RFC7230 3.1.1, RFC3986 3.2.2, RFC1034 3.1)"),
  394. LongHost = ["host." || _ <- lists:seq(1, 100)],
  395. #{code := 414, client := Client} = do_raw(Config, [
  396. "GET http://", LongHost, "/ HTTP/1.1\r\n"
  397. "Host: ", LongHost, "\r\n"
  398. "\r\n"]),
  399. {error, closed} = raw_recv(Client, 0, 1000).
  400. absolute_form_invalid_port_0(Config) ->
  401. doc("Port number 0 is reserved. The request must be rejected and the connection closed."),
  402. #{code := 400, client := Client} = do_raw(Config,
  403. "GET http://localhost:0/ HTTP/1.1\r\n"
  404. "Host: localhost:0\r\n"
  405. "\r\n"),
  406. {error, closed} = raw_recv(Client, 0, 1000).
  407. absolute_form_invalid_port_65536(Config) ->
  408. doc("Port numbers above 65535 are invalid. The request must be rejected and the connection closed."),
  409. #{code := 400, client := Client} = do_raw(Config,
  410. "GET http://localhost:65536/ HTTP/1.1\r\n"
  411. "Host: localhost:65536\r\n"
  412. "\r\n"),
  413. {error, closed} = raw_recv(Client, 0, 1000).
  414. %% @todo The RFC says to discard the Host header if we are a proxy,
  415. %% and replace it with the content of absolute-form. This means
  416. %% that we should probably keep the absolute-form value when
  417. %% operating in proxy mode. Otherwise the absolute-form value
  418. %% is simply dropped and the Host header is used.
  419. %% @todo The authority is sent both in the URI and in the host header.
  420. %% The authority from the URI must be dropped, and the host header
  421. %% must be used instead. (RFC7230 5.5)
  422. %%
  423. %% It is not possible to test that the absolute-form value is dropped
  424. %% because one of the Host header test ensures that the authority
  425. %% is the same in both, and errors out otherwise.
  426. absolute_form_path(Config) ->
  427. doc("The path always starts with \"/\" and ends with either \"?\", \"#\" "
  428. "or the end of the URI. (RFC3986 3.3)"),
  429. Echo = <<"/echo/path">>,
  430. #{code := 200, body := Echo} = do_raw(Config,
  431. "GET http://localhost/echo/path HTTP/1.1\r\n"
  432. "Host: localhost\r\n"
  433. "\r\n").
  434. absolute_form_path_query(Config) ->
  435. doc("The path always starts with \"/\" and ends with either \"?\", \"#\" "
  436. "or the end of the URI. (RFC3986 3.3)"),
  437. Echo = <<"/echo/path">>,
  438. #{code := 200, body := Echo} = do_raw(Config,
  439. "GET http://localhost/echo/path?key=value HTTP/1.1\r\n"
  440. "Host: localhost\r\n"
  441. "\r\n").
  442. absolute_form_path_fragment(Config) ->
  443. doc("The path always starts with \"/\" and ends with either \"?\", \"#\" "
  444. "or the end of the URI. (RFC3986 3.3)"),
  445. Echo = <<"/echo/path">>,
  446. #{code := 200, body := Echo} = do_raw(Config,
  447. "GET http://localhost/echo/path#fragment HTTP/1.1\r\n"
  448. "Host: localhost\r\n"
  449. "\r\n").
  450. absolute_form_no_path(Config) ->
  451. doc("An empty path component is equivalent to \"/\". (RFC7230 2.7.3)"),
  452. #{code := 200, body := <<"Hello world!">>} = do_raw(Config,
  453. "GET http://localhost HTTP/1.1\r\n"
  454. "Host: localhost\r\n"
  455. "\r\n").
  456. absolute_form_no_path_then_query(Config) ->
  457. doc("An empty path component is equivalent to \"/\". (RFC7230 2.7.3)"),
  458. #{code := 200, body := <<"Hello world!">>} = do_raw(Config,
  459. "GET http://localhost?key=value HTTP/1.1\r\n"
  460. "Host: localhost\r\n"
  461. "\r\n").
  462. absolute_form_no_path_then_fragment(Config) ->
  463. doc("An empty path component is equivalent to \"/\". (RFC7230 2.7.3)"),
  464. #{code := 200, body := <<"Hello world!">>} = do_raw(Config,
  465. "GET http://localhost#fragment HTTP/1.1\r\n"
  466. "Host: localhost\r\n"
  467. "\r\n").
  468. absolute_form_query(Config) ->
  469. doc("The query starts with \"?\" and ends with \"#\" or the end of the URI. (RFC3986 3.4)"),
  470. Echo = <<"key=value">>,
  471. #{code := 200, body := Echo} = do_raw(Config,
  472. "GET http://localhost/echo/qs?key=value HTTP/1.1\r\n"
  473. "Host: localhost\r\n"
  474. "\r\n").
  475. absolute_form_query_fragment(Config) ->
  476. doc("The query starts with \"?\" and ends with \"#\" or the end of the URI. (RFC3986 3.4)"),
  477. Echo = <<"key=value">>,
  478. #{code := 200, body := Echo} = do_raw(Config,
  479. "GET http://localhost/echo/qs?key=value#fragment HTTP/1.1\r\n"
  480. "Host: localhost\r\n"
  481. "\r\n").
  482. %% @todo absolute_form: reject paths with too large depth or query strings with too many keys
  483. %% Request-target: authority-form.
  484. authority_form_reject_if_not_connect(Config) ->
  485. doc("When the method is CONNECT, authority-form must be used. This "
  486. "form does not apply to any other methods which must reject the "
  487. "request with a 400 status code and the closing of the connection. (RFC7230 5.3.3)"),
  488. #{code := 400, client := Client} = do_raw(Config,
  489. "GET localhost:80 HTTP/1.1\r\n"
  490. "Host: localhost\r\n"
  491. "\r\n"),
  492. {error, closed} = raw_recv(Client, 0, 1000).
  493. %% @todo Implement CONNECT.
  494. %authority_form_reject_userinfo(Config) ->
  495. %An authority component with a userinfo component (and its
  496. %"@" delimiter) is invalid. The request must be rejected with
  497. %a 400 status code and the closing of the connection. (RFC7230 2.7.1)
  498. %
  499. %authority_form_limit_host(Config) ->
  500. %authority_form_limit_port0(Config) ->
  501. %authority_form_limit_port65536(Config) ->
  502. %
  503. %A request with a too long component of authority-form must be rejected with
  504. %a 414 status code and the closing of the connection. (RFC7230 3.1.1)
  505. %
  506. %The authority is either resolved from configuration or is taken
  507. %directly from authority-form. (RFC7230 5.5)
  508. %
  509. %authority_form_empty_path(Config) ->
  510. %authority_form_empty_query(Config) ->
  511. %The path and query are empty when using authority-form. (RFC7230 5.5)
  512. %% Request-target: asterisk-form.
  513. asterisk_form_reject_if_not_options(Config) ->
  514. doc("asterisk-form is used for server-wide OPTIONS requests. "
  515. "It is invalid with any other methods which must reject the "
  516. "request with a 400 status code and the closing of the connection. (RFC7230 5.3.4)"),
  517. #{code := 400, client := Client} = do_raw(Config,
  518. "GET * HTTP/1.1\r\n"
  519. "Host: localhost\r\n"
  520. "\r\n"),
  521. {error, closed} = raw_recv(Client, 0, 1000).
  522. asterisk_form_empty_path(Config) ->
  523. doc("The path is empty when using asterisk-form. (RFC7230 5.5)"),
  524. #{code := 200, body := <<>>} = do_raw(Config,
  525. "OPTIONS * HTTP/1.1\r\n"
  526. "Host: localhost\r\n"
  527. "X-Echo: path\r\n"
  528. "\r\n").
  529. asterisk_form_empty_query(Config) ->
  530. doc("The query is empty when using asterisk-form. (RFC7230 5.5)"),
  531. #{code := 200, body := <<>>} = do_raw(Config,
  532. "OPTIONS * HTTP/1.1\r\n"
  533. "Host: localhost\r\n"
  534. "X-Echo: query\r\n"
  535. "\r\n").
  536. %% Invalid request-target.
  537. invalid_request_target(Config) ->
  538. doc("Any other form is invalid and must be rejected with a 400 status code "
  539. "and the closing of the connection."),
  540. #{code := 400, client := Client} = do_raw(Config,
  541. "GET \0 HTTP/1.1\r\n"
  542. "Host: localhost\r\n"
  543. "\r\n"),
  544. {error, closed} = raw_recv(Client, 0, 1000).
  545. %% Between request-target and version.
  546. reject_tab_between_request_target_and_version(Config) ->
  547. doc("A request that uses anything other than SP as separator between "
  548. "the request-target and the version must be rejected with a 400 "
  549. "status code and the closing of the connection. (RFC7230 3.1.1, RFC7230 3.5)"),
  550. #{code := 400, client := Client} = do_raw(Config,
  551. "GET /\tHTTP/1.1\r\n"
  552. "Host: localhost\r\n"
  553. "\r\n"),
  554. {error, closed} = raw_recv(Client, 0, 1000).
  555. reject_two_sp_between_request_target_and_version(Config) ->
  556. doc("A request that uses anything other than SP as separator between "
  557. "the request-target and the version must be rejected with a 400 "
  558. "status code and the closing of the connection. (RFC7230 3.1.1, RFC7230 3.5)"),
  559. #{code := 400, client := Client} = do_raw(Config,
  560. "GET / HTTP/1.1\r\n"
  561. "Host: localhost\r\n"
  562. "\r\n"),
  563. {error, closed} = raw_recv(Client, 0, 1000).
  564. %% Request version.
  565. reject_invalid_version_http100(Config) ->
  566. doc("Any version number other than HTTP/1.0 or HTTP/1.1 must be "
  567. "rejected by a server or intermediary with a 505 status code. (RFC7230 2.6, RFC7230 A.2)"),
  568. #{code := 505} = do_raw(Config,
  569. "GET / HTTP/1.00\r\n"
  570. "Host: localhost\r\n"
  571. "\r\n").
  572. reject_invalid_version_http111(Config) ->
  573. doc("Any version number other than HTTP/1.0 or HTTP/1.1 must be "
  574. "rejected by a server or intermediary with a 505 status code. (RFC7230 2.6, RFC7230 A.2)"),
  575. #{code := 505} = do_raw(Config,
  576. "GET / HTTP/1.11\r\n"
  577. "Host: localhost\r\n"
  578. "\r\n").
  579. reject_invalid_version_http12(Config) ->
  580. doc("Any version number other than HTTP/1.0 or HTTP/1.1 must be "
  581. "rejected by a server or intermediary with a 505 status code. (RFC7230 2.6, RFC7230 A.2)"),
  582. #{code := 505} = do_raw(Config,
  583. "GET / HTTP/1.2\r\n"
  584. "Host: localhost\r\n"
  585. "\r\n").
  586. reject_invalid_version_http2(Config) ->
  587. doc("Any version number other than HTTP/1.0 or HTTP/1.1 must be "
  588. "rejected by a server or intermediary with a 505 status code. (RFC7230 2.6, RFC7230 A.2)"),
  589. #{code := 505} = do_raw(Config,
  590. "GET / HTTP/2\r\n"
  591. "Host: localhost\r\n"
  592. "\r\n").
  593. reject_empty_version(Config) ->
  594. doc("Any version number other than HTTP/1.0 or HTTP/1.1 must be "
  595. "rejected by a server or intermediary with a 505 status code. (RFC7230 2.6, RFC7230 A.2)"),
  596. #{code := 505} = do_raw(Config,
  597. "GET / \r\n"
  598. "Host: localhost\r\n"
  599. "\r\n").
  600. reject_invalid_whitespace_after_version(Config) ->
  601. doc("A request that has whitespace different than CRLF following the "
  602. "version must be rejected with a 400 status code and the closing "
  603. "of the connection. (RFC7230 3.1.1)"),
  604. #{code := 400, client := Client} = do_raw(Config,
  605. "GET / HTTP/1.1 \r\n"
  606. "Host: localhost\r\n"
  607. "\r\n"),
  608. {error, closed} = raw_recv(Client, 0, 1000).
  609. %% Request headers.
  610. %invalid_header(Config) ->
  611. %```
  612. %headers = *( header-field CRLF ) CRLF
  613. %header-field = field-name ":" OWS field-value OWS
  614. %
  615. %field-name = token
  616. %field-value = *( SP / HTAB / %21-7E / %80-FF )
  617. %
  618. %OWS = *( SP / HTAB )
  619. %```
  620. %
  621. %lower_case_header(Config) ->
  622. %upper_case_header(Config) ->
  623. %mixed_case_header(Config) ->
  624. %The header field name is case insensitive. (RFC7230 3.2)
  625. %
  626. %reject_whitespace_before_header_name(Config) ->
  627. %Messages that contain whitespace before the header name must
  628. %be rejected with a 400 status code and the closing of the
  629. %connection. (RFC7230 3.2.4)
  630. %
  631. %reject_whitespace_between_header_name_and_colon(Config) ->
  632. %Messages that contain whitespace between the header name and
  633. %colon must be rejected with a 400 status code and the closing
  634. %of the connection. (RFC7230 3.2.4)
  635. limit_header_name(Config) ->
  636. doc("The header name must be subject to a configurable limit. A "
  637. "good default is 50 characters, well above the longest registered "
  638. "header. Such a request must be rejected with a 431 status code "
  639. "and the closing of the connection. "
  640. "(RFC7230 3.2.5, RFC6585 5, IANA Message Headers registry)"),
  641. #{code := 431, client := Client} = do_raw(Config, [
  642. "GET / HTTP/1.1\r\n"
  643. "Host: localhost\r\n",
  644. binary:copy(<<$a>>, 32768), ": bad\r\n"
  645. "\r\n"]),
  646. {error, closed} = raw_recv(Client, 0, 1000).
  647. limit_header_value(Config) ->
  648. doc("The header value and the optional whitespace around it must be "
  649. "subject to a configurable limit. There is no recommendations "
  650. "for the default. 4096 characters is known to work well. Such "
  651. "a request must be rejected with a 431 status code and the closing "
  652. "of the connection. (RFC7230 3.2.5, RFC6585 5)"),
  653. #{code := 431, client := Client} = do_raw(Config, [
  654. "GET / HTTP/1.1\r\n"
  655. "Host: localhost\r\n"
  656. "bad: ", binary:copy(<<$a>>, 32768), "\r\n"
  657. "\r\n"]),
  658. {error, closed} = raw_recv(Client, 0, 1000).
  659. %drop_whitespace_before_header_value(Config) ->
  660. %drop_whitespace_after_header_value(Config) ->
  661. %Optional whitespace before and after the header value is not
  662. %part of the value and must be dropped.
  663. %
  664. %@todo
  665. %The order of header fields with differing names is not significant. (RFC7230 3.2.2)
  666. %
  667. %@todo
  668. %The normal procedure for parsing headers is to read each header
  669. %field into a hash table by field name until the empty line. (RFC7230 3)
  670. reject_duplicate_content_length_header(Config) ->
  671. doc("Requests with duplicate content-length headers must be rejected "
  672. "with a 400 status code and the closing of the connection. (RFC7230 3.3.2)"),
  673. #{code := 400, client := Client} = do_raw(Config, [
  674. "POST / HTTP/1.1\r\n"
  675. "Host: localhost\r\n"
  676. "Content-length: 12\r\n"
  677. "Content-length: 12\r\n"
  678. "\r\n"
  679. "Hello world!"]),
  680. {error, closed} = raw_recv(Client, 0, 1000).
  681. %reject_duplicate_host_header(Config) ->
  682. %Requests with duplicate content-length or host headers must be rejected
  683. %with a 400 status code and the closing of the connection. (RFC7230 3.3.2)
  684. %
  685. %combine_duplicate_headers(Config) ->
  686. %Other duplicate header fields must be combined by inserting a comma
  687. %between the values in the order they were received. (RFC7230 3.2.2)
  688. %
  689. %Duplicate header field names are only allowed when their value is
  690. %a comma-separated list. In practice there is no need to perform
  691. %a check while reading the headers as the value will become invalid
  692. %and the error can be handled while parsing the header later on. (RFC7230 3.2.2)
  693. %
  694. %wait_for_eoh_before_processing_request(Config) ->
  695. %The request must not be processed until all headers have arrived. (RFC7230 3.2.2)
  696. %
  697. %limit_headers(Config) ->
  698. %The number of headers allowed in a request must be subject to
  699. %a configurable limit. There is no recommendations for the default.
  700. %100 headers is known to work well. Such a request must be rejected
  701. %with a 431 status code and the closing of the connection. (RFC7230 3.2.5, RFC6585 5)
  702. %
  703. %@todo
  704. %When parsing header field values, the server must ignore empty
  705. %list elements, and not count those as the count of elements present. (RFC7230 7)
  706. %
  707. %@todo
  708. %The information in the via header is largely unreliable. (RFC7230 5.7.1)
  709. %
  710. %%% Request body.
  711. %
  712. %@todo
  713. %The message body is the octets after decoding any transfer
  714. %codings. (RFC7230 3.3)
  715. %
  716. %no_request_body(Config) ->
  717. %no_request_body_content_length_zero(Config) ->
  718. %request_body_content_length(Config) ->
  719. %request_body_transfer_encoding(Config) ->
  720. %A request has a message body only if it includes a transfer-encoding
  721. %header or a non-zero content-length header. (RFC7230 3.3)
  722. %
  723. %```
  724. %Transfer-Encoding = 1#transfer-coding
  725. %
  726. %transfer-coding = "chunked" / "compress" / "deflate" / "gzip" / transfer-extension
  727. %transfer-extension = token *( OWS ";" OWS transfer-parameter )
  728. %transfer-parameter = token BWS "=" BWS ( token / quoted-string )
  729. %```
  730. %
  731. %case_insensitive_transfer_encoding(Config) ->
  732. %The transfer-coding is case insensitive. (RFC7230 4)
  733. %
  734. %@todo
  735. %There are no known other transfer-extension with the exception of
  736. %deprecated aliases "x-compress" and "x-gzip". (IANA HTTP Transfer Coding Registry,
  737. %RFC7230 4.2.1, RFC7230 4.2.3, RFC7230 8.4.2)
  738. %
  739. %must_understand_chunked(Config) ->
  740. %A server must be able to handle at least chunked transfer-encoding.
  741. %This is also the only coding that sees widespread use. (RFC7230 3.3.1, RFC7230 4.1)
  742. %
  743. %reject_double_chunked_encoding(Config) ->
  744. %Messages encoded more than once with chunked transfer-encoding
  745. %must be rejected with a 400 status code and the closing of the
  746. %connection. (RFC7230 3.3.1)
  747. %
  748. %reject_non_terminal_chunked(Config) ->
  749. %Messages where chunked, when present, is not the last
  750. %transfer-encoding must be rejected with a 400 status code
  751. %and the closing of the connection. (RFC7230 3.3.3)
  752. %
  753. %@todo
  754. %Some non-conformant implementations send the "deflate" compressed
  755. %data without the zlib wrapper. (RFC7230 4.2.2)
  756. %
  757. %reject_unknown_transfer_encoding(Config) ->
  758. %Messages encoded with a transfer-encoding the server does not
  759. %understand must be rejected with a 501 status code and the
  760. %closing of the connection. (RFC7230 3.3.1)
  761. %
  762. %@todo
  763. %A server can reject requests with a body and no content-length
  764. %header with a 411 status code. (RFC7230 3.3.3)
  765. %
  766. %```
  767. %Content-Length = 1*DIGIT
  768. %```
  769. reject_invalid_content_length(Config) ->
  770. doc("A request with an invalid content-length header must be rejected "
  771. "with a 400 status code and the closing of the connection. (RFC7230 3.3.3)"),
  772. #{code := 400, client := Client1} = do_raw(Config, [
  773. "POST / HTTP/1.1\r\n"
  774. "Host: localhost\r\n"
  775. "Content-length: 12,12\r\n"
  776. "\r\n"
  777. "Hello world!"]),
  778. {error, closed} = raw_recv(Client1, 0, 1000),
  779. #{code := 400, client := Client2} = do_raw(Config, [
  780. "POST / HTTP/1.1\r\n"
  781. "Host: localhost\r\n"
  782. "Content-length: NaN\r\n"
  783. "\r\n"
  784. "Hello world!"]),
  785. {error, closed} = raw_recv(Client2, 0, 1000).
  786. %@todo
  787. %The content-length header ranges from 0 to infinity. Requests
  788. %with a message body too large must be rejected with a 413 status
  789. %code and the closing of the connection. (RFC7230 3.3.2)
  790. %
  791. %ignore_content_length_when_transfer_encoding(Config) ->
  792. %When a message includes both transfer-encoding and content-length
  793. %headers, the content-length header must be removed before processing
  794. %the request. (RFC7230 3.3.3)
  795. %
  796. %socket_error_while_reading_body(Config) ->
  797. %If a socket error occurs while reading the body the server
  798. %must send a 400 status code response and close the connection. (RFC7230 3.3.3, RFC7230 3.4)
  799. %
  800. %timeout_while_reading_body(Config) ->
  801. %If a timeout occurs while reading the body the server must
  802. %send a 408 status code response and close the connection. (RFC7230 3.3.3, RFC7230 3.4)
  803. %
  804. %%% Body length.
  805. %
  806. %body_length_chunked_before(Config) ->
  807. %The length of a message with a transfer-encoding header can
  808. %only be determined on decoding completion. (RFC7230 3.3.3)
  809. %
  810. %body_length_chunked_after(Config) ->
  811. %Upon completion of chunk decoding the server must add a content-length
  812. %header with the value set to the total length of data read. (RFC7230 4.1.3)
  813. %
  814. %body_length_content_length(Config) ->
  815. %The length of a message with a content-length header is
  816. %the numeric value in octets found in the header. (RFC7230 3.3.3)
  817. %
  818. %body_length_zero(Config) ->
  819. %A message with no transfer-encoding or content-length header
  820. %has a body length of 0. (RFC7230 3.3.3)
  821. %
  822. %%% Chunked transfer-encoding.
  823. %
  824. %reject_invalid_chunk_size(Config) ->
  825. %
  826. %```
  827. %chunked-body = *chunk last-chunk trailer-part CRLF
  828. %
  829. %chunk = chunk-size [ chunk-ext ] CRLF chunk-data CRLF
  830. %chunk-size = 1*HEXDIG
  831. %chunk-data = 1*OCTET ; a sequence of chunk-size octets
  832. %
  833. %last-chunk = 1*("0") [ chunk-ext ] CRLF
  834. %```
  835. %
  836. %The chunk-size field is a string of hex digits indicating the size of
  837. %the chunk-data in octets.
  838. %
  839. %```
  840. %chunk-ext = *( ";" chunk-ext-name [ "=" chunk-ext-val ] )
  841. %chunk-ext-name = token
  842. %chunk-ext-val = token / quoted-string
  843. %```
  844. %
  845. %ignore_unknown_chunk_extensions(Config) ->
  846. %Unknown chunk extensions must be ignored. (RFC7230 4.1.1)
  847. %
  848. %reject_invalid_chunk_extensions(Config) ->
  849. %
  850. %limit_chunk_size_line(Config) ->
  851. %The chunk-size line length must be subject to configuration.
  852. %There are no recommended defaults, although 100 octets should work.
  853. %Requests with a too long line must be rejected with a 400 status
  854. %code and the closing of the connection.
  855. %
  856. %reject_invalid_chunk_line_crlf(Config) ->
  857. %reject_invalid_chunk_data_crlf(Config) ->
  858. %
  859. %```
  860. %trailer-part = *( header-field CRLF )
  861. %```
  862. %
  863. %%% @todo see headers above and reject the same way, space etc.
  864. %reject_invalid_trailer_part(Config) ->
  865. %
  866. %ignore_trailer_transfer_encoding(Config) ->
  867. %ignore_trailer_content_length(Config) ->
  868. %ignore_trailer_host(Config) ->
  869. %ignore_trailer_cache_control(Config) ->
  870. %ignore_trailer_expect(Config) ->
  871. %ignore_trailer_max_forwards(Config) ->
  872. %ignore_trailer_pragma(Config) ->
  873. %ignore_trailer_range(Config) ->
  874. %ignore_trailer_te(Config) ->
  875. %ignore_trailer_if_match(Config) ->
  876. %ignore_trailer_if_none_match(Config) ->
  877. %ignore_trailer_if_modified_since(Config) ->
  878. %ignore_trailer_if_unmodified_since(Config) ->
  879. %ignore_trailer_if_range(Config) ->
  880. %ignore_trailer_www_authenticate(Config) ->
  881. %ignore_trailer_authorization(Config) ->
  882. %ignore_trailer_proxy_authenticate(Config) ->
  883. %ignore_trailer_proxy_authorization(Config) ->
  884. %ignore_trailer_content_encoding(Config) ->
  885. %ignore_trailer_content_type(Config) ->
  886. %ignore_trailer_content_range(Config) ->
  887. %ignore_trailer_trailer(Config) ->
  888. %
  889. %ignore_trailer_header(Config, Header) ->
  890. %Trailing headers must not include transfer-encoding, content-length,
  891. %host, cache-control, expect, max-forwards, pragma, range, te,
  892. %if-match, if-none-match, if-modified-since, if-unmodified-since,
  893. %if-range, www-authenticate, authorization, proxy-authenticate,
  894. %proxy-authorization, age, cache-control, expires, date, location,
  895. %retry-after, vary, warning, content-encoding, content-type,
  896. %content-range, or trailer. (RFC7230 4.1.2)
  897. %
  898. %Trailer headers can be ignored safely. (RFC7230 4.1.2)
  899. %
  900. %When trailer headers are processed, invalid headers must be ignored.
  901. %Valid headers must be added to the list of headers of the request. (RFC7230 4.1.2)
  902. %
  903. %limit_trailer_headers(Config) ->
  904. %The number of trailer headers must be subject to configuration.
  905. %There is no known recommendations for the default. A value of 10
  906. %should cover most cases. Requests with too many trailer headers
  907. %must be rejected with a 431 status code and the closing of the
  908. %connection. (RFC6585 5)
  909. %
  910. %remove_transfer_encoding_chunked_after_body_read(Config) ->
  911. %Upon completion of chunk decoding the server must remove "chunked"
  912. %from the transfer-encoding header. This header must be removed if
  913. %it becomes empty following this removal. (RFC7230 4.1.3)
  914. %
  915. %remove_trailer_after_body_read(Config) ->
  916. %Upon completion of chunk decoding the server must remove the trailer
  917. %header from the list of headers. (RFC7230 4.1.3)
  918. %
  919. %```
  920. %Trailer = 1#field-name
  921. %```
  922. %
  923. %ignore_chunked_headers_not_in_trailer(Config) ->
  924. %The trailer header can be used to list the headers found in the
  925. %trailer. A server must have the option of ignoring trailer headers
  926. %that were not listed in the trailer header. (RFC7230 4.4)
  927. %
  928. %ignore_chunked_headers_if_trailer_not_in_connection(Config) ->
  929. %The trailer header must be listed in the connection header field.
  930. %Trailers must be ignored otherwise.
  931. %
  932. %%% @todo Though we need a compatibility mode as some clients don't send it...
  933. %reject_chunked_missing_end_crlf(Config) ->
  934. %@todo ending CRLF
  935. %
  936. %%% Connection management.
  937. %
  938. %@todo can probably test using auth
  939. %Never assume any two requests on a single connection come
  940. %from the same user agent. (RFC7230 2.3)
  941. %
  942. %```
  943. %Connection = 1#token ; case-insensitive
  944. %```
  945. %
  946. %The connection token is either case insensitive "close", "keep-alive"
  947. %or a header field name.
  948. %
  949. %There are no corresponding "close" or "keep-alive" headers. (RFC7230 8.1, RFC7230 A.2)
  950. %
  951. %The connection header is valid only for the immediate connection,
  952. %alongside any header field it lists. (RFC7230 6.1)
  953. %
  954. %The server must determine if the connection is persistent for
  955. %every message received by looking at the connection header and
  956. %HTTP version. (RFC7230 6.3)
  957. %
  958. %no_connection_header_keepalive(Config) ->
  959. %%% @todo http/1.0 suite? connection_keepalive(Config) ->
  960. %HTTP/1.1 requests with no "close" option and HTTP/1.0 with the
  961. %"keep-alive" option indicate the connection will persist. (RFC7230 6.1, RFC7230 6.3)
  962. %
  963. %connection_close(Config) ->
  964. %%% @todo http/1.0 suite? no_connection_close(Config) ->
  965. %HTTP/1.1 requests with the "close" option and HTTP/1.0 with no
  966. %"keep-alive" option indicate the connection will be closed
  967. %upon reception of the response by the client. (RFC7230 6.1, RFC7230 6.3)
  968. %
  969. %limit_requests_keepalive(Config) ->
  970. %The maximum number of requests sent using a persistent connection
  971. %must be subject to configuration. The connection must be closed
  972. %when the limit is reached. (RFC7230 6.3)
  973. %
  974. %skip_request_body_by_closing_connection(Config) ->
  975. %%A server that doesn't want to read the entire body of a message
  976. %%must close the connection, if possible after sending the "close"
  977. %%connection option in the response. (RFC7230 6.3)
  978. %
  979. %pipeline(Config) ->
  980. %%% @todo pipeline_parallel (safe methods can, others can't)
  981. %A server can receive more than one request before any response
  982. %is sent. This is called pipelining. The requests can be processed
  983. %in parallel if they all have safe methods. Responses must be sent
  984. %in the same order as the requests. (RFC7230 6.3.2)
  985. %
  986. %@todo
  987. %The server must reject abusive traffic by closing the connection.
  988. %Abusive traffic can come from the form of too many requests in a
  989. %given amount of time, or too many concurrent connections. Limits
  990. %must be subject to configuration. (RFC7230 6.4)
  991. %
  992. %close_inactive_connections(Config) ->
  993. %The server must close inactive connections. The timeout
  994. %must be subject to configuration. (RFC7230 6.5)
  995. %
  996. %@todo
  997. %The server must monitor connections for the close signal
  998. %and close the socket on its end accordingly. (RFC7230 6.5)
  999. %
  1000. %@todo
  1001. %A connection close may occur at any time. (RFC7230 6.5)
  1002. %
  1003. %ignore_requests_after_connection_close(Config) ->
  1004. %The server must not process any request after sending or
  1005. %receiving the "close" connection option. (RFC7230 6.6)
  1006. %
  1007. %@todo
  1008. %The server must close the connection in stages to avoid the
  1009. %TCP reset problem. The server starts by closing the write
  1010. %side of the socket. The server then reads until it detects
  1011. %the socket has been closed, until it can be certain its
  1012. %last response has been received by the client, or until
  1013. %a close or timeout occurs. The server then fully close the
  1014. %connection. (6.6)
  1015. %
  1016. %%% Routing.
  1017. %
  1018. %```
  1019. %Host = authority ; same as authority-form
  1020. %```
  1021. %
  1022. %reject_missing_host(Config) ->
  1023. %An HTTP/1.1 request that lacks a host header must be rejected with
  1024. %a 400 status code and the closing of the connection. (RFC7230 5.4)
  1025. %
  1026. %%% @todo http/1.0 missing_host(Config) ->
  1027. %An HTTP/1.0 request that lack a host header is valid. Behavior
  1028. %for these requests is configuration dependent. (RFC7230 5.5)
  1029. %
  1030. %reject_invalid_host(Config) ->
  1031. %A request with an invalid host header must be rejected with a
  1032. %400 status code and the closing of the connection. (RFC7230 5.4)
  1033. %
  1034. %reject_userinfo(Config) ->
  1035. %An authority component with a userinfo component (and its
  1036. %"@" delimiter) is invalid. The request must be rejected with
  1037. %a 400 status code and the closing of the connection. (RFC7230 2.7.1)
  1038. %
  1039. %reject_absolute_form_different_host(Config) ->
  1040. %When using absolute-form the URI authority component must be
  1041. %identical to the host header. Invalid requests must be rejected
  1042. %with a 400 status code and the closing of the connection. (RFC7230 5.4)
  1043. %
  1044. %reject_authority_form_different_host(Config) ->
  1045. %When using authority-form the URI authority component must be
  1046. %identical to the host header. Invalid requests must be rejected
  1047. %with a 400 status code and the closing of the connection.
  1048. %
  1049. %empty_host(Config) ->
  1050. %The host header is empty when the authority component is undefined. (RFC7230 5.4)
  1051. %
  1052. %@todo
  1053. %The effective request URI can be rebuilt by concatenating scheme,
  1054. %"://", authority, path and query components. (RFC7230 5.5)
  1055. %
  1056. %@todo
  1057. %Resources with identical URI except for the scheme component
  1058. %must be treated as different. (RFC7230 2.7.2)
  1059. %
  1060. %%% Response.
  1061. %
  1062. %@todo
  1063. %A server can send more than one response per request only when a
  1064. %1xx response is sent preceding the final response. (RFC7230 5.6)
  1065. %
  1066. %@todo
  1067. %A server that does parallel pipelining must send responses in the
  1068. %same order as the requests came in. (RFC7230 5.6)
  1069. %
  1070. %```
  1071. %HTTP-response = status-line *( header-field CRLF ) CRLF [ message-body ]
  1072. %```
  1073. %
  1074. %@todo
  1075. %The response format must be followed strictly.
  1076. %
  1077. %```
  1078. %status-line = HTTP-version SP status-code SP reason-phrase CRLF
  1079. %status-code = 3DIGIT
  1080. %reason-phrase = *( HTAB / SP / VCHAR / obs-text )
  1081. %```
  1082. %
  1083. %http10_request_http11_response(Config) ->
  1084. %A server must send its own version. (RFC7230 2.6)
  1085. %
  1086. %@todo
  1087. %An HTTP/1.1 server may send an HTTP/1.0 version for compatibility purposes. (RFC7230 2.6)
  1088. %
  1089. %@todo
  1090. %RFC6585 defines additional status code a server can use to reject
  1091. %messages. (RFC7230 9.3, RFC6585)
  1092. %
  1093. %%% Response headers.
  1094. %
  1095. %@todo
  1096. %In responses, OWS must be generated as SP or not generated
  1097. %at all. RWS must be generated as SP. BWS must not be
  1098. %generated. (RFC7230 3.2.3)
  1099. %
  1100. %```
  1101. %header-field = field-name ":" SP field-value
  1102. %
  1103. %field-name = token ; case-insensitive
  1104. %field-value = *( SP / %21-7E / %80-FF )
  1105. %```
  1106. %
  1107. %@todo
  1108. %In quoted-string found in field-value, quoted-pair must only be
  1109. %used for DQUOTE and backslash. (RFC7230 3.2.6)
  1110. %
  1111. %@todo
  1112. %HTTP header values must use US-ASCII encoding and must only send
  1113. %printable characters or SP. (RFC7230 3.2.4, RFC7230 9.4)
  1114. %
  1115. %@todo
  1116. %The server must not generate empty list elements in headers. (RFC7230 7)
  1117. %
  1118. %@todo
  1119. %When encoding an URI as part of a response, only characters that
  1120. %are reserved need to be percent-encoded. (RFC7230 2.7.3)
  1121. %
  1122. %special_set_cookie_handling(Config) ->
  1123. %The set-cookie header must be handled as a special case. There
  1124. %must be exactly one set-cookie header field per cookie. (RFC7230 3.2.2)
  1125. %
  1126. %@todo
  1127. %The server must list headers for or about the immediate connection
  1128. %in the connection header field. (RFC7230 6.1)
  1129. %
  1130. %@todo
  1131. %A server that does not support persistent connections must
  1132. %send "close" in every non-1xx response. (RFC7230 6.1)
  1133. %
  1134. %no_close_in_100_response(Config) ->
  1135. %no_close_in_101_response(Config) ->
  1136. %no_close_in_102_response(Config) ->
  1137. %A server must not send a "close" connection option
  1138. %in 1xx responses. (RFC7230 6.1)
  1139. %
  1140. %@todo
  1141. %The "close" connection must be sent in a message when the
  1142. %sender knows it will close the connection after fully sending
  1143. %the response. (RFC7230 6.6)
  1144. %
  1145. %@todo
  1146. %A server must close the connection after sending or
  1147. %receiving a "close" once the response has been sent. (RFC7230 6.6)
  1148. %
  1149. %close_request_close_response(Config) ->
  1150. %A server must send a "close" in a response to a request
  1151. %containing a "close". (RFC7230 6.6)
  1152. %
  1153. %%% Response body.
  1154. %
  1155. %no_body_in_head_response(Config) -> %% @todo test different ways to send a body in response
  1156. %Responses to HEAD requests never include a message body. (RFC7230 3.3)
  1157. %
  1158. %%% @todo Implement CONNECT
  1159. %2xx responses to CONNECT requests never include a message
  1160. %body. (RFC7230 3.3)
  1161. %
  1162. %no_body_in_100_response(Config) ->
  1163. %no_body_in_101_response(Config) ->
  1164. %no_body_in_102_response(Config) ->
  1165. %no_body_in_204_response(Config) ->
  1166. %no_body_in_304_response(Config) ->
  1167. %1xx, 204 and 304 responses never include a message body. (RFC7230 3.3)
  1168. %
  1169. %same_content_length_as_get_in_head_response(Config) ->
  1170. %same_transfer_encoding_as_get_in_head_response(Config) ->
  1171. %same_content_length_as_200_in_304_response(Config) ->
  1172. %same_transfer_encoding_as_200_in_304_response(Config) ->
  1173. %Responses to HEAD requests and 304 responses can include a
  1174. %content-length or transfer-encoding header. Their value must
  1175. %be the same as if the request was an unconditional GET. (RFC7230 3.3, RFC7230 3.3.1, RFC7230 3.3.2)
  1176. %
  1177. %no_transfer_encoding_in_100_response(Config) ->
  1178. %no_transfer_encoding_in_101_response(Config) ->
  1179. %no_transfer_encoding_in_102_response(Config) ->
  1180. %no_transfer_encoding_in_204_response(Config) ->
  1181. %%% @todo CONNECT no_transfer_encoding_in_2xx_response_to_connect_request(Config) ->
  1182. %no_content_length_in_100_response(Config) ->
  1183. %no_content_length_in_101_response(Config) ->
  1184. %no_content_length_in_102_response(Config) ->
  1185. %no_content_length_in_204_response(Config) ->
  1186. %%% @todo CONNECT no_content_length_in_2xx_response_to_connect_request(Config) ->
  1187. %1xx, 204 responses and "2xx responses to CONNECT requests" must
  1188. %not include a content-length or transfer-encoding header. (RFC7230 3.3.1, RFC7230 3.3.2)
  1189. %
  1190. %```
  1191. %message-body = *OCTET
  1192. %```
  1193. %
  1194. %The message body is the octets after decoding any transfer
  1195. %codings. (RFC7230 3.3)
  1196. %
  1197. %content_length_0_when_no_body(Config) ->
  1198. %content_length_response(Config) ->
  1199. %When the length is known in advance, the server must send a
  1200. %content-length header, including if the length is 0. (RFC7230 3.3.2, RFC7230 3.3.3)
  1201. %
  1202. %chunked_response(Config) ->
  1203. %When the length is not known in advance, the chunked transfer-encoding
  1204. %must be used. (RFC7230 3.3.2, RFC7230 3.3.3)
  1205. %
  1206. %compat_no_content_length_or_transfer_encoding_close_on_body_end(Config) ->
  1207. %For compatibility purposes a server can send no content-length or
  1208. %transfer-encoding header. In this case the connection must be
  1209. %closed after the response has been sent fully. (RFC7230 3.3.2, RFC7230 3.3.3)
  1210. %
  1211. %no_content_length_if_transfer_encoding(Config) ->
  1212. %The content-length header must not be sent when a transfer-encoding
  1213. %header already exists. (RFC7230 3.3.2)
  1214. %
  1215. %@todo
  1216. %The server must not apply the chunked transfer-encoding more than
  1217. %once. (RFC7230 3.3.1)
  1218. %
  1219. %@todo
  1220. %The server must apply the chunked transfer-encoding last. (RFC7230 3.3.1)
  1221. %
  1222. %http10_request_no_transfer_encoding_in_response(Config) ->
  1223. %The transfer-encoding header must not be sent in responses to
  1224. %HTTP/1.0 requests, or in responses that use the HTTP/1.0 version.
  1225. %No transfer codings must be applied in these cases. (RFC7230 3.3.1)
  1226. %
  1227. %```
  1228. %TE = #t-codings
  1229. %
  1230. %t-codings = "trailers" / ( transfer-coding [ t-ranking ] )
  1231. %t-ranking = OWS ";" OWS "q=" rank
  1232. %rank = ( "0" [ "." 0*3DIGIT ] ) / ( "1" [ "." 0*3("0") ] )
  1233. %```
  1234. %
  1235. %no_te_no_trailers(Config) ->
  1236. %te_trailers(Config) ->
  1237. %Trailers can only be sent if the request includes a TE header
  1238. %containing "trailers". (RFC7230 4.1.2)
  1239. %
  1240. %te_ignore_chunked(Config) ->
  1241. %te_ignore_chunked_0(Config) ->
  1242. %The presence of "chunked" in a TE header must be ignored as it
  1243. %is always acceptable with HTTP/1.1. (RFC7230 4.3)
  1244. %
  1245. %%% @todo te_not_acceptable_coding(Config) ->
  1246. %A qvalue of 0 in the TE header means "not acceptable". (RFC7230 4.3)
  1247. %
  1248. %@todo
  1249. %The lack of a TE header or an empty TE header means only "chunked"
  1250. %(with no trailers) or no transfer-encoding is acceptable. (RFC7230 4.3)
  1251. %
  1252. %ignore_te_if_not_in_connection_header(Config) ->
  1253. %The TE header must be listed in the connection header field,
  1254. %or must be ignored otherwise.
  1255. %
  1256. %@todo
  1257. %Trailer headers must be listed in the trailer header field value. (RFC7230 4.4)
  1258. %
  1259. %@todo
  1260. %When defined, the trailer header must also be listed in the connection header. (RFC7230 4.4)
  1261. %
  1262. %:: Upgrade
  1263. %
  1264. %```
  1265. %Upgrade = 1#protocol
  1266. %
  1267. %protocol = protocol-name ["/" protocol-version]
  1268. %protocol-name = token
  1269. %protocol-version = token
  1270. %```
  1271. %
  1272. %The upgrade header contains the list of protocols the
  1273. %client wishes to upgrade to, in order of preference. (RFC7230 6.7)
  1274. %
  1275. %upgrade_safely_ignored(Config) ->
  1276. %The upgrade header can be safely ignored. (RFC7230 6.7)
  1277. %
  1278. %upgrade_must_be_in_connection_header(Config) ->
  1279. %The upgrade header must be listed under the connection header,
  1280. %or must be ignored otherwise. (RFC7230 6.7)
  1281. %
  1282. %@todo
  1283. %A server accepting an upgrade request must send a 101 status
  1284. %code with a upgrade header listing the protocol(s) it upgrades
  1285. %to, in layer-ascending order. In addition the upgrade header
  1286. %must be listed in the connection header. (RFC7230 6.7)
  1287. %
  1288. %%A server must not switch to a protocol not listed in the
  1289. %%request's upgrade header. (RFC7230 6.7)
  1290. %
  1291. %@todo
  1292. %A server that sends a 426 status code must include a upgrade
  1293. %header listing acceptable protocols in order of preference. (RFC7230 6.7)
  1294. %
  1295. %@todo
  1296. %A server can send a upgrade header to any response to advertise
  1297. %its support for other protocols listed in order of preference. (RFC7230 6.7)
  1298. %
  1299. %@todo
  1300. %Immediately after a server responds with a 101 status code
  1301. %it must respond to the original request using the new protocol. (RFC7230 6.7)
  1302. %
  1303. %@todo
  1304. %%A server must not switch protocols unless the original message's
  1305. %%semantics can be honored by the new protocol. OPTIONS requests
  1306. %%can be honored by any protocol. (RFC7230 6.7)
  1307. %
  1308. %http10_ignore_upgrade_header(Config) ->
  1309. %A server must ignore an upgrade header received by an HTTP/1.0
  1310. %request. (RFC7230 6.7)
  1311. %
  1312. %expect_then_upgrade(Config) ->
  1313. %A server receiving both an upgrade header and an expect header
  1314. %containing "100-continue" must send a 100 response before the
  1315. %101 response. (RFC7230 6.7)
  1316. %
  1317. %The upgrade header field cannot be used for switching the
  1318. %connection protocol (e.g. TCP) or switching connections. (RFC7230 6.7)
  1319. %
  1320. %%% Compatibility.
  1321. %
  1322. %@todo
  1323. %A server can choose to be non-conformant to the specifications
  1324. %for the sake of compatibility. Such behavior can be enabled
  1325. %through configuration and/or software identification. (RFC7230 2.5)