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/80dup-host-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/80dup-host-headers.t')
-rw-r--r-- | web/server/h2o/libh2o/t/80dup-host-headers.t | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/web/server/h2o/libh2o/t/80dup-host-headers.t b/web/server/h2o/libh2o/t/80dup-host-headers.t deleted file mode 100644 index eae679b99..000000000 --- a/web/server/h2o/libh2o/t/80dup-host-headers.t +++ /dev/null @@ -1,51 +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 $upstream_port = empty_port(); -$| = 1; -my $socket = new IO::Socket::INET ( - LocalHost => '127.0.0.1', - LocalPort => $upstream_port, - Proto => 'tcp', - Listen => 1, - Reuse => 1 -); -die "cannot create socket $!\n" unless $socket; - -check_port($upstream_port) or die "can't connect to server socket"; -# accent and close check_port's connection -my $client_socket = $socket->accept(); -close($client_socket); - -my $server = spawn_h2o(<< "EOT"); -hosts: - default: - paths: - "/": - proxy.reverse.url: http://127.0.0.1:$upstream_port -EOT - -system("nghttp http://127.0.0.1:$server->{'port'}/ -H 'host: host.example.com' &"); - -my $req; -$client_socket = $socket->accept(); -$client_socket->recv($req, 1024); -$client_socket->send("HTTP/1.1 200 Ok\r\nConnection:close\r\n\r\nBody\r\n"); -close($client_socket); -$socket->close(); - -my $host_headers = 0; -foreach (split(/\r\n/, $req)) { - if (/^host:/i) { - $host_headers++ - } -} - -ok($host_headers == 1, "Only saw one host: header"); -done_testing(); |