diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 02:49:40 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-30 02:49:40 +0000 |
commit | c96f16e8103783f6b98d9f844ea3a7f2195e4834 (patch) | |
tree | 479bef5e7eb5d4f04ba171931c8b47335734e161 /debian/vendor-h2o/t/50headers.t | |
parent | Merging upstream version 1.9.4. (diff) | |
download | dnsdist-c96f16e8103783f6b98d9f844ea3a7f2195e4834.tar.xz dnsdist-c96f16e8103783f6b98d9f844ea3a7f2195e4834.zip |
Adding debian version 1.9.4-1.debian/1.9.4-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/vendor-h2o/t/50headers.t')
-rw-r--r-- | debian/vendor-h2o/t/50headers.t | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/debian/vendor-h2o/t/50headers.t b/debian/vendor-h2o/t/50headers.t deleted file mode 100644 index b930a07..0000000 --- a/debian/vendor-h2o/t/50headers.t +++ /dev/null @@ -1,25 +0,0 @@ -use strict; -use warnings; -use Test::More; -use t::Util; - -plan skip_all => 'curl not found' - unless prog_exists('curl'); - -my $server = spawn_h2o(<< "EOT"); -hosts: - default: - paths: - /: - file.dir: @{[ DOC_ROOT ]} -header.add: "strict-transport-security: max-age=31536000; includeSubDomains; preload " -header.unset: last-modified -EOT - -my $resp = `curl --silent --dump-header /dev/stderr http://127.0.0.1:$server->{port}/index.txt 2>&1 > /dev/null`; -like $resp, qr{^HTTP/1\.1 200 }s, "200 response"; -like $resp, qr{^strict-transport-security: max-age=31536000; includeSubDomains; preload\r$}im, "hsts added"; -is +(() = $resp =~ m{^strict-transport-security:}img), 1, "header added only once"; -unlike $resp, qr{^last-modified: }, "last-modified unset"; - -done_testing(); |