From 77e50caaf2ef81cd91075cf836fed0e75718ffb4 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 13 Apr 2024 23:12:02 +0200 Subject: Adding debian version 1.8.3-2. Signed-off-by: Daniel Baumann --- debian/vendor-h2o/t/50file-file.t | 54 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 debian/vendor-h2o/t/50file-file.t (limited to 'debian/vendor-h2o/t/50file-file.t') diff --git a/debian/vendor-h2o/t/50file-file.t b/debian/vendor-h2o/t/50file-file.t new file mode 100644 index 0000000..7dd3b92 --- /dev/null +++ b/debian/vendor-h2o/t/50file-file.t @@ -0,0 +1,54 @@ +use strict; +use warnings; +use Test::More; +use t::Util; + +plan skip_all => 'curl not found' + unless prog_exists('curl'); + +subtest 'static' => sub { + my $server = spawn_h2o(<< "EOT"); +hosts: + default: + paths: + /favicon.ico: + file.file: @{[DOC_ROOT]}/halfdome.jpg +EOT + run_with_curl($server, sub { + my ($proto, $port, $cmd) = @_; + my $fetch = sub { + my $path = shift; + return `$cmd --silent --dump-header /dev/stderr --max-redirs 0 $proto://127.0.0.1:$port$path 2>&1 > /dev/null`; + }; + my $resp = $fetch->("/"); + like $resp, qr{^HTTP/[0-9\.]+ 404}is; + $resp = $fetch->("/favicon.ico"); + like $resp, qr{^HTTP/[0-9\.]+ 200}is; + like $resp, qr{^content-type:\s*image/jpeg\r$}im; # type is inferred from the extension of the real file + like $resp, qr{^content-length:\s*@{[(stat "@{[DOC_ROOT]}/halfdome.jpg")[7]]}\r$}im; + }); +}; + +subtest 'dynamic' => sub { + eval q{use CGI; 1} + or plan skip_all => 'CGI.pm not found'; + + # spawn h2o + my $server = spawn_h2o(<< "EOT"); +file.custom-handler: + extension: .cgi + fastcgi.spawn: "exec \$H2O_ROOT/share/h2o/fastcgi-cgi" +hosts: + default: + paths: + /robots.txt: + file.file: @{[DOC_ROOT]}/hello.cgi +EOT + run_with_curl($server, sub { + my ($proto, $port, $cmd) = @_; + my $resp = `$cmd --silent $proto://127.0.0.1:$port/robots.txt?name=Tobor`; + is $resp, "Hello Tobor"; + }); +}; + +done_testing; -- cgit v1.2.3