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