summaryrefslogtreecommitdiffstats
path: root/web/server/h2o/libh2o/t/80one-byte-window.t
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:19:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-03-09 13:20:02 +0000
commit58daab21cd043e1dc37024a7f99b396788372918 (patch)
tree96771e43bb69f7c1c2b0b4f7374cb74d7866d0cb /web/server/h2o/libh2o/t/80one-byte-window.t
parentReleasing debian version 1.43.2-1. (diff)
downloadnetdata-58daab21cd043e1dc37024a7f99b396788372918.tar.xz
netdata-58daab21cd043e1dc37024a7f99b396788372918.zip
Merging upstream version 1.44.3.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'web/server/h2o/libh2o/t/80one-byte-window.t')
-rw-r--r--web/server/h2o/libh2o/t/80one-byte-window.t56
1 files changed, 56 insertions, 0 deletions
diff --git a/web/server/h2o/libh2o/t/80one-byte-window.t b/web/server/h2o/libh2o/t/80one-byte-window.t
new file mode 100644
index 000000000..f2d0813cb
--- /dev/null
+++ b/web/server/h2o/libh2o/t/80one-byte-window.t
@@ -0,0 +1,56 @@
+use strict;
+use warnings;
+use Net::EmptyPort qw(check_port empty_port);
+use Test::More;
+use t::Util;
+
+plan skip_all => 'nc not found'
+ unless prog_exists('nc');
+
+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
+
+my $msg = "this is the message";
+open(NGHTTP, "nghttp -t 3 -w 1 -v http://127.0.0.1:$server->{'port'}/ -H 'host: host.example.com' 2>&1 |");
+
+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\n$msg");
+close($client_socket);
+
+my $worked = 1;
+while(<NGHTTP>) {
+ if (/Timeout/) {
+ $worked = 0;
+ }
+}
+
+ok($worked == 1, "The connection didn't timeout");
+
+$socket->close();
+done_testing();