YA resync with mainstem, including VMS patches from others
[p5sagit/p5-mst-13.2.git] / t / lib / cgi-function.t
CommitLineData
424ec8fa 1#!./perl
2
3# Test ability to retrieve HTTP request info
4######################### We start with some black magic to print on failure.
5
6BEGIN {
7 chdir 't' if -d 't';
93430cb4 8 unshift @INC, '../lib' if -d '../lib';
424ec8fa 9}
10
ee8c7f54 11BEGIN {$| = 1; print "1..27\n"; }
424ec8fa 12END {print "not ok 1\n" unless $loaded;}
5152d7c7 13use Config;
424ec8fa 14use CGI (':standard','keywords');
15$loaded = 1;
16print "ok 1\n";
17
18######################### End of black magic.
19
20# util
21sub test {
22 local($^W) = 0;
23 my($num, $true,$msg) = @_;
24 print($true ? "ok $num\n" : "not ok $num $msg\n");
25}
26
ee8c7f54 27my $CRLF = "\015\012";
28
424ec8fa 29# Set up a CGI environment
30$ENV{REQUEST_METHOD}='GET';
31$ENV{QUERY_STRING} ='game=chess&game=checkers&weather=dull';
32$ENV{PATH_INFO} ='/somewhere/else';
33$ENV{PATH_TRANSLATED} ='/usr/local/somewhere/else';
34$ENV{SCRIPT_NAME} ='/cgi-bin/foo.cgi';
35$ENV{SERVER_PROTOCOL} = 'HTTP/1.0';
36$ENV{SERVER_PORT} = 8080;
37$ENV{SERVER_NAME} = 'the.good.ship.lollypop.com';
38$ENV{HTTP_LOVE} = 'true';
39
40test(2,request_method() eq 'GET',"CGI::request_method()");
ee8c7f54 41test(3,query_string() eq 'game=chess;game=checkers;weather=dull',"CGI::query_string()");
424ec8fa 42test(4,param() == 2,"CGI::param()");
43test(5,join(' ',sort {$a cmp $b} param()) eq 'game weather',"CGI::param()");
44test(6,param('game') eq 'chess',"CGI::param()");
45test(7,param('weather') eq 'dull',"CGI::param()");
46test(8,join(' ',param('game')) eq 'chess checkers',"CGI::param()");
47test(9,param(-name=>'foo',-value=>'bar'),'CGI::param() put');
48test(10,param(-name=>'foo') eq 'bar','CGI::param() get');
ee8c7f54 49test(11,query_string() eq 'game=chess;game=checkers;weather=dull;foo=bar',"CGI::query_string() redux");
424ec8fa 50test(12,http('love') eq 'true',"CGI::http()");
51test(13,script_name() eq '/cgi-bin/foo.cgi',"CGI::script_name()");
52test(14,url() eq 'http://the.good.ship.lollypop.com:8080/cgi-bin/foo.cgi',"CGI::url()");
53test(15,self_url() eq
ee8c7f54 54 'http://the.good.ship.lollypop.com:8080/cgi-bin/foo.cgi/somewhere/else?game=chess;game=checkers;weather=dull;foo=bar',
424ec8fa 55 "CGI::url()");
56test(16,url(-absolute=>1) eq '/cgi-bin/foo.cgi','CGI::url(-absolute=>1)');
57test(17,url(-relative=>1) eq 'foo.cgi','CGI::url(-relative=>1)');
58test(18,url(-relative=>1,-path=>1) eq 'foo.cgi/somewhere/else','CGI::url(-relative=>1,-path=>1)');
59test(19,url(-relative=>1,-path=>1,-query=>1) eq
ee8c7f54 60 'foo.cgi/somewhere/else?game=chess;game=checkers;weather=dull;foo=bar',
424ec8fa 61 'CGI::url(-relative=>1,-path=>1,-query=>1)');
62Delete('foo');
63test(20,!param('foo'),'CGI::delete()');
64
65CGI::_reset_globals();
66$ENV{QUERY_STRING}='mary+had+a+little+lamb';
67test(21,join(' ',keywords()) eq 'mary had a little lamb','CGI::keywords');
68test(22,join(' ',param('keywords')) eq 'mary had a little lamb','CGI::keywords');
69
ee8c7f54 70CGI::_reset_globals;
71if ($Config{d_fork}) {
72 $test_string = 'game=soccer&game=baseball&weather=nice';
73 $ENV{REQUEST_METHOD}='POST';
74 $ENV{CONTENT_LENGTH}=length($test_string);
75 $ENV{QUERY_STRING}='big_balls=basketball&small_balls=golf';
76 if (open(CHILD,"|-")) { # cparent
77 print CHILD $test_string;
78 close CHILD;
79 exit 0;
80 }
81 # at this point, we're in a new (child) process
82 test(23,param('weather') eq 'nice',"CGI::param() from POST");
83 test(24,url_param('big_balls') eq 'basketball',"CGI::url_param()");
84} else {
85 print "ok 23 # Skip\n";
86 print "ok 24 # Skip\n";
424ec8fa 87}
ee8c7f54 88
89test(25,redirect('http://somewhere.else') eq "Status: 302 Moved${CRLF}Location: http://somewhere.else${CRLF}${CRLF}","CGI::redirect() 1");
90test(26,redirect(-Location=>'http://somewhere.else',-Type=>'text/html') eq "Status: 302 Moved${CRLF}Location: http://somewhere.else${CRLF}Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}","CGI::redirect() 2");
91test(27,redirect(-Location=>'http://somewhere.else/bin/foo&bar',-Type=>'text/html') eq "Status: 302 Moved${CRLF}Location: http://somewhere.else/bin/foo&bar${CRLF}Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}","CGI::redirect() 2");