1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
use strict;
use warnings;
use Test::More;
use t::Util;
plan skip_all => 'curl not found'
unless prog_exists('curl');
subtest 'cgi file' => 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";
});
};
subtest 'directory containing cgi files' => 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:
/:
file.dir: @{[DOC_ROOT]}
EOT
run_with_curl($server, sub {
my ($proto, $port, $cmd) = @_;
my $resp = `$cmd --silent $proto://127.0.0.1:$port/hello.cgi?name=Tobor`;
is $resp, "Hello Tobor";
});
};
subtest 'SCRIPT_NAME and PATH_INFO for fastcgi' => sub {
eval q{use CGI; 1}
or plan skip_all => 'CGI.pm not found';
# spawn h2o
my $server = spawn_h2o(<< "EOT");
file.index: ['printenv.cgi']
file.custom-handler:
extension: .cgi
fastcgi.spawn: "exec \$H2O_ROOT/share/h2o/fastcgi-cgi"
hosts:
default:
paths:
/:
file.dir: @{[DOC_ROOT]}
/foo:
file.dir: @{[DOC_ROOT]}
EOT
my $doit = sub {
my ($path, $expected) = @_;
subtest $path => sub {
my $resp = `curl --silent http://127.0.0.1:$server->{port}$path`;
my $env = +{ map { split(':', $_, 2) } split(/\n/, $resp) };
for my $key (sort keys %$expected) {
is $env->{$key}, $expected->{$key}, $key;
}
};
};
$doit->('/printenv.cgi',
+{ SCRIPT_NAME => '/printenv.cgi', PATH_INFO => undef });
$doit->('/printenv.cgi/path/info',
+{ SCRIPT_NAME => '/printenv.cgi', PATH_INFO => '/path/info' });
$doit->('/foo/printenv.cgi/path/info',
+{ SCRIPT_NAME => '/foo/printenv.cgi', PATH_INFO => '/path/info' });
$doit->('/',
+{ SCRIPT_NAME => '/printenv.cgi', PATH_INFO => undef });
$doit->('/foo/',
+{ SCRIPT_NAME => '/foo/printenv.cgi', PATH_INFO => undef });
};
done_testing;
|