diff options
author | Valentin Bartenev <vbart@nginx.com> | 2018-03-15 21:07:57 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2018-03-15 21:07:57 +0300 |
commit | 0b628bfe484d1262d37e5043cad9f7a326d0d5e4 (patch) | |
tree | a0265b06d8e503c75cf8e672e779c2ca174616c7 /src/test/nxt_http_parse_test.c | |
parent | 3d2f85d9ca66aecaf1c46a818998a27f99f755e2 (diff) | |
download | unit-0b628bfe484d1262d37e5043cad9f7a326d0d5e4.tar.gz unit-0b628bfe484d1262d37e5043cad9f7a326d0d5e4.tar.bz2 |
HTTP parser: allowing tabs in field values as per RFC 7230.
Diffstat (limited to 'src/test/nxt_http_parse_test.c')
-rw-r--r-- | src/test/nxt_http_parse_test.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/nxt_http_parse_test.c b/src/test/nxt_http_parse_test.c index bc2e3a42..a23f27c3 100644 --- a/src/test/nxt_http_parse_test.c +++ b/src/test/nxt_http_parse_test.c @@ -270,6 +270,18 @@ static nxt_http_parse_test_case_t nxt_http_test_cases[] = { }, { nxt_string("GET / HTTP/1.1\r\n" + "Ho\nst: example.com\r\n\r\n"), + NXT_HTTP_PARSE_INVALID, + NULL, { NULL } + }, + { + nxt_string("GET / HTTP/1.1\r\n" + "Host : example.com\r\n\r\n"), + NXT_HTTP_PARSE_INVALID, + NULL, { NULL } + }, + { + nxt_string("GET / HTTP/1.1\r\n" "Host: exa\0mple.com\r\n\r\n"), NXT_HTTP_PARSE_INVALID, NULL, { NULL } @@ -300,6 +312,18 @@ static nxt_http_parse_test_case_t nxt_http_test_cases[] = { }, { nxt_string("GET / HTTP/1.1\r\n" + "Host: exa\nmple.com\r\n\r\n"), + NXT_HTTP_PARSE_INVALID, + NULL, { NULL } + }, + { + nxt_string("GET / HTTP/1.1\r\n" + "Host: exa\tmple.com\r\n\r\n"), + NXT_DONE, + NULL, { NULL } + }, + { + nxt_string("GET / HTTP/1.1\r\n" "X-Unknown-Header: value\r\n" "X-Good-Header: value\r\n\r\n"), NXT_DONE, |