C::C::WrapCGI - PATH_INFO and configurable cgi_dir
[catagits/Catalyst-Controller-WrapCGI.git] / t / wrap-cgi.t
1 #!perl
2
3 use strict;
4 use warnings;
5
6 use FindBin '$Bin';
7 use lib "$Bin/lib";
8
9 use Test::More tests => 4;
10
11 use Catalyst::Test 'TestApp';
12 use HTTP::Request::Common;
13
14 my $response = request POST '/cgi-bin/test.cgi', [
15     foo => 'bar',
16     bar => 'baz'
17 ];
18
19 is($response->content, 'foo:bar bar:baz', 'POST to CGI');
20
21 $response = request '/cgi-bin/test_pathinfo.cgi/path/%2Finfo';
22 is($response->content, '/path//info', 'PATH_INFO is correct');
23
24 $response = request '/cgi-bin/test_filepathinfo.cgi/path/%2Finfo';
25 is($response->content, '/test_filepath_info/path//info',
26     'FILEPATH_INFO is correct (maybe)');
27
28 $response = request '/cgi-bin/test_scriptname.cgi/foo/bar';
29 is($response->content, '/cgi-bin/test_scriptname.cgi',
30     'SCRIPT_NAME is correct');