#!./perl # Test ability to retrieve HTTP request info ######################### We start with some black magic to print on failure. BEGIN { chdir 't' if -d 't'; @INC = '../lib' if -d '../lib'; } BEGIN {$| = 1; print "1..17\n"; } BEGIN {$eol = $^O eq 'VMS' ? "\n" : "\cM\cJ"; $eol = "\r\n" if $^O eq 'os390'; } END {print "not ok 1\n" unless $loaded;} use CGI (':standard','-no_debug'); $loaded = 1; print "ok 1\n"; ######################### End of black magic. # util sub test { local($^W) = 0; my($num, $true,$msg) = @_; print($true ? "ok $num\n" : "not ok $num $msg\n"); } # all the automatic tags test(2,h1() eq '

',"single tag"); test(3,h1('fred') eq '

fred

',"open/close tag"); test(4,h1('fred','agnes','maura') eq '

fred agnes maura

',"open/close tag multiple"); test(5,h1({-align=>'CENTER'},'fred') eq '

fred

',"open/close tag with attribute"); test(6,h1({-align=>undef},'fred') eq '

fred

',"open/close tag with orphan attribute"); test(7,h1({-align=>'CENTER'},['fred','agnes']) eq '

fred

agnes

', "distributive tag with attribute"); { local($") = '-'; test(8,h1('fred','agnes','maura') eq '

fred-agnes-maura

',"open/close tag \$\" interpolation"); } test(9,header() eq "Content-Type: text/html${eol}${eol}","header()"); test(10,header(-type=>'image/gif') eq "Content-Type: image/gif${eol}${eol}","header()"); test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks${eol}Content-Type: image/gif${eol}${eol}","header()"); test(12,header(-nph=>1) eq "HTTP/1.0 200 OK${eol}Content-Type: text/html${eol}${eol}","header()"); test(13,start_html() ."\n" eq < Untitled Document END ; test(14,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR") ."\n" eq < Untitled Document END ; test(15,start_html(-Title=>'The world of foo') ."\n" eq < The world of foo END ; test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq 'fred=chocolate&chip; path=/',"cookie()"); test(17,header(-Cookie=>$cookie) =~ m!^Set-Cookie: fred=chocolate&chip\; path=/${eol}Date:.*${eol}Content-Type: text/html${eol}${eol}!s, "header(-cookie)");