diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 21:12:02 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 21:12:02 +0000 |
commit | 77e50caaf2ef81cd91075cf836fed0e75718ffb4 (patch) | |
tree | 53b7b411290b63192fc9e924a3b6b65cdf67e9d0 /debian/vendor-h2o/t/80issues595.t | |
parent | Adding upstream version 1.8.3. (diff) | |
download | dnsdist-77e50caaf2ef81cd91075cf836fed0e75718ffb4.tar.xz dnsdist-77e50caaf2ef81cd91075cf836fed0e75718ffb4.zip |
Adding debian version 1.8.3-2.debian/1.8.3-2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/vendor-h2o/t/80issues595.t')
-rw-r--r-- | debian/vendor-h2o/t/80issues595.t | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/debian/vendor-h2o/t/80issues595.t b/debian/vendor-h2o/t/80issues595.t new file mode 100644 index 0000000..721e054 --- /dev/null +++ b/debian/vendor-h2o/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; |