X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Flib%2Fcgi-html.t;h=2d71ff6a7760b603442a748d1836f1e4fbaf9795;hb=20822f61cc01ab34be1e17db483aceb9d5ec8fb7;hp=d7f3ffb4aa285d50b565a6c6979466df4faca47e;hpb=e46ffa5519210e11f4d5bc2cb87a6423b98ac426;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/lib/cgi-html.t b/t/lib/cgi-html.t index d7f3ffb..2d71ff6 100755 --- a/t/lib/cgi-html.t +++ b/t/lib/cgi-html.t @@ -1,17 +1,17 @@ -#!./perl - -# Test ability to retrieve HTTP request info -######################### We start with some black magic to print on failure. +#!/usr/local/bin/perl -w BEGIN { - chdir 't' if -d 't'; - @INC = '../lib' if -d '../lib'; + chdir('t') if -d 't'; + @INC = '../lib'; } -BEGIN {$| = 1; print "1..17\n"; } -BEGIN {$eol = $^O eq 'VMS' ? "\n" : "\cM\cJ";} +# Test ability to retrieve HTTP request info +######################### We start with some black magic to print on failure. +use lib '../blib/lib','../blib/arch'; + +BEGIN {$| = 1; print "1..24\n"; } END {print "not ok 1\n" unless $loaded;} -use CGI (':standard','-no_debug'); +use CGI (':standard','-no_debug','*h3','start_table'); $loaded = 1; print "ok 1\n"; @@ -24,42 +24,64 @@ sub test { print($true ? "ok $num\n" : "not ok $num $msg\n"); } +my $CRLF = "\015\012"; +if ($^O eq 'VMS') { + $CRLF = "\n"; # via web server carriage is inserted automatically +} +if (ord("\t") != 9) { # EBCDIC? + $CRLF = "\r\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(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

', + '

fred

agnes

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

fred-agnes-maura

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

'); +test(19,end_h3 eq '

'); +test(20,start_table({-border=>undef}) eq ''); +test(21,h1(escapeHTML("this is \x8bright\x9b")) eq '

this is <not> ‹right›

'); +charset('utf-8'); +test(22,h1(escapeHTML("this is \x8bright\x9b")) eq '

this is <not> ‹right›

'); +test(23,i(p('hello there')) eq '

hello there

'); +my $q = new CGI; +test(24,$q->h1('hi') eq '

hi

');