diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-07-24 09:54:44 +0000 |
commit | 836b47cb7e99a977c5a23b059ca1d0b5065d310e (patch) | |
tree | 1604da8f482d02effa033c94a84be42bc0c848c3 /web/server/h2o/libh2o/t/80invalid-h2-chars-in-headers.t | |
parent | Releasing debian version 1.44.3-2. (diff) | |
download | netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.tar.xz netdata-836b47cb7e99a977c5a23b059ca1d0b5065d310e.zip |
Merging upstream version 1.46.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/server/h2o/libh2o/t/80invalid-h2-chars-in-headers.t')
-rw-r--r-- | web/server/h2o/libh2o/t/80invalid-h2-chars-in-headers.t | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/web/server/h2o/libh2o/t/80invalid-h2-chars-in-headers.t b/web/server/h2o/libh2o/t/80invalid-h2-chars-in-headers.t deleted file mode 100644 index 0d277f9fb..000000000 --- a/web/server/h2o/libh2o/t/80invalid-h2-chars-in-headers.t +++ /dev/null @@ -1,44 +0,0 @@ -use strict; -use warnings; -use Net::EmptyPort qw(check_port empty_port); -use Test::More; -use t::Util; - -plan skip_all => 'nghttp not found' - unless prog_exists('nghttp'); - -my $server = spawn_h2o(<< "EOT"); -hosts: - default: - paths: - "/": - file.dir: @{[ DOC_ROOT ]} -EOT - -my $resp = `nghttp -v http://127.0.0.1:$server->{'port'}/ -H 'h\rost: host.example.com' 2>&1`; -like $resp, qr{.*error_code=NO_ERROR.*}, "No protocol error for a bogus header name"; -like $resp, qr{.*:status: 400}, "400 bad headers sent"; -like $resp, qr{found an invalid character in header name}, "Found expected error message"; - -$resp = `nghttp -v http://127.0.0.1:$server->{'port'}/ -H 'host: host.\rexample.com' 2>&1`; -like $resp, qr{.*error_code=NO_ERROR.*}, "No protocol error for a bogus header value"; -like $resp, qr{.*:status: 400}, "400 bad headers sent"; -like $resp, qr{found an invalid character in header value}, "Found expected error message"; - -$resp = `nghttp -nv http://127.0.0.1:$server->{'port'}/test/ -H 'host: host.example.com' -H'blah:1' -H'blah:2' -H'blah:3' 2>&1`; -like $resp, qr{.*error_code=NO_ERROR.*}, "No error for no bogus error value"; - -$resp = `nghttp -nv http://127.0.0.1:$server->{'port'}/test/ -H 'host: host.example.com' -H'bl\ah:1' -H'bl\ah:2' -H'bl\ah:3' 2>&1`; -like $resp, qr{.*error_code=NO_ERROR.*}, "No protocol error for repeated bogus headers"; -like $resp, qr{.*:status: 400}, "400 bad headers sent"; - -$resp = `nghttp -nv http://127.0.0.1:$server->{'port'}/ -H ':bad: 1234' -H'x-reproxy-url: http://www.example.com' 2>&1`; -like $resp, qr{.*error_code=PROTOCOL_ERROR.*}, "Error for an invalid pseudo-header"; - -$resp = `nghttp -nv http://127.0.0.1:$server->{'port'}/test/ -H 'host: host.example.com' -H'bl\ah:1' -H':badpseudo:2' 2>&1`; -like $resp, qr{.*error_code=PROTOCOL_ERROR.*}, "Protocol error for an invalid pseudo-header, even when a bad header was present"; - -$resp = `nghttp -nv http://127.0.0.1:$server->{'port'}/test/ -H 'host: host.उदाहरण.com' 2>&1`; -like $resp, qr{.*error_code=NO_ERROR.*}, "No error for utf-8 in value"; - -done_testing(); |