summaryrefslogtreecommitdiffstats
path: root/src/web/server/h2o/libh2o/t/80issues595.t
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 12:08:03 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-05 12:08:18 +0000
commit5da14042f70711ea5cf66e034699730335462f66 (patch)
tree0f6354ccac934ed87a2d555f45be4c831cf92f4a /src/web/server/h2o/libh2o/t/80issues595.t
parentReleasing debian version 1.44.3-2. (diff)
downloadnetdata-5da14042f70711ea5cf66e034699730335462f66.tar.xz
netdata-5da14042f70711ea5cf66e034699730335462f66.zip
Merging upstream version 1.45.3+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/web/server/h2o/libh2o/t/80issues595.t')
-rw-r--r--src/web/server/h2o/libh2o/t/80issues595.t42
1 files changed, 42 insertions, 0 deletions
diff --git a/src/web/server/h2o/libh2o/t/80issues595.t b/src/web/server/h2o/libh2o/t/80issues595.t
new file mode 100644
index 000000000..721e054ed
--- /dev/null
+++ b/src/web/server/h2o/libh2o/t/80issues595.t
@@ -0,0 +1,42 @@
+use strict;
+use warnings;
+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
+
+subtest "trailing HEADERS" => sub {
+ my $doit = sub {
+ my ($proto, $opts, $port) = @_;
+ my $resp = `nghttp $opts -M 1 -m 3 -H ':method: GET' -d /dev/null --trailer 'foo: bar' '$proto://127.0.0.1:$port/'`;
+ is $resp, "hello\n" x 3, $proto;
+ };
+ $doit->("http", "", $server->{port});
+ $doit->("https", "", $server->{tls_port});
+};
+
+subtest "trailing HEADERS with CONTINUATION" => sub {
+ my $doit = sub {
+ my ($proto, $opts, $port) = @_;
+ my $cmd = "nghttp $opts -M 1 -m 3 -H ':method: GET' -d /dev/null";
+ $cmd .= join "", map {
+ " --trailer 'foo$_: 0123456789abcdef:$_'"
+ } 1..1000;
+ $cmd .= " '$proto://127.0.0.1:$port/'";
+ my $resp = `$cmd`;
+ is $resp, "hello\n" x 3, $proto;
+ };
+ $doit->("http", "", $server->{port});
+ $doit->("https", "", $server->{tls_port});
+};
+
+done_testing;