summaryrefslogtreecommitdiffstats
path: root/debian/vendor-h2o/t/80issues61.t
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:12:02 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:12:02 +0000
commit77e50caaf2ef81cd91075cf836fed0e75718ffb4 (patch)
tree53b7b411290b63192fc9e924a3b6b65cdf67e9d0 /debian/vendor-h2o/t/80issues61.t
parentAdding upstream version 1.8.3. (diff)
downloaddnsdist-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/80issues61.t')
-rw-r--r--debian/vendor-h2o/t/80issues61.t57
1 files changed, 57 insertions, 0 deletions
diff --git a/debian/vendor-h2o/t/80issues61.t b/debian/vendor-h2o/t/80issues61.t
new file mode 100644
index 0000000..bdcfd6e
--- /dev/null
+++ b/debian/vendor-h2o/t/80issues61.t
@@ -0,0 +1,57 @@
+use strict;
+use warnings;
+use Net::EmptyPort qw(check_port empty_port);
+use Test::More;
+use t::Util;
+
+plan skip_all => 'plackup not found'
+ unless prog_exists('plackup');
+plan skip_all => 'Starlet not found'
+ unless system('perl -MStarlet /dev/null > /dev/null 2>&1') == 0;
+
+my $upstream_port = empty_port();
+
+my $upstream = spawn_server(
+ argv => [
+ qw(plackup -s Starlet --access-log /dev/null -p), $upstream_port, ASSETS_DIR . "/upstream.psgi",
+ ],
+ is_ready => sub {
+ check_port($upstream_port);
+ },
+);
+
+my $h2o = spawn_h2o(<< "EOT");
+hosts:
+ default:
+ paths:
+ /:
+ proxy.reverse.url: http://127.0.0.1:$upstream_port
+EOT
+
+subtest 'http1' => sub {
+ plan skip_all => 'curl not found'
+ unless prog_exists('curl');
+
+ my $doit = sub {
+ my ($proto, $port) = @_;
+ my $extra = '';
+ if ($proto eq 'https') {
+ $extra .= ' --insecure';
+ $extra .= ' --http1.1'
+ if curl_supports_http2();
+ }
+ subtest $proto => sub {
+ my $resp = `curl --max-time 1 $extra $proto://127.0.0.1:$port/streaming-body 2>&1`;
+ like $resp, qr/operation timed out/i, "operation should time out";
+ sleep 1;
+ $resp = `curl --silent --dump-header /dev/stderr $extra $proto://127.0.0.1:$port/ 2>&1 > /dev/null`;
+ like $resp, qr{^HTTP/[^ ]+ 404\s}s, "server is still alive";
+ };
+ };
+ $doit->('http', $h2o->{port});
+ $doit->('https', $h2o->{tls_port});
+};
+
+# note: implement test using HTTP/2, nghttp --timeout 2 does not seem to work like above
+
+done_testing;