Unapply an experimental patch that accidentally escaped
[p5sagit/p5-mst-13.2.git] / t / lib / cgi-html.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';
a1a0e61e 9 require Config; import Config;
424ec8fa 10}
11
abfd9522 12BEGIN {$| = 1; print "1..20\n"; }
424ec8fa 13END {print "not ok 1\n" unless $loaded;}
abfd9522 14use CGI (':standard','-no_debug','*h3','start_table');
424ec8fa 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
27# all the automatic tags
28test(2,h1() eq '<H1>',"single tag");
29test(3,h1('fred') eq '<H1>fred</H1>',"open/close tag");
30test(4,h1('fred','agnes','maura') eq '<H1>fred agnes maura</H1>',"open/close tag multiple");
31test(5,h1({-align=>'CENTER'},'fred') eq '<H1 ALIGN="CENTER">fred</H1>',"open/close tag with attribute");
32test(6,h1({-align=>undef},'fred') eq '<H1 ALIGN>fred</H1>',"open/close tag with orphan attribute");
33test(7,h1({-align=>'CENTER'},['fred','agnes']) eq
34 '<H1 ALIGN="CENTER">fred</H1> <H1 ALIGN="CENTER">agnes</H1>',
35 "distributive tag with attribute");
36{
37 local($") = '-';
38 test(8,h1('fred','agnes','maura') eq '<H1>fred-agnes-maura</H1>',"open/close tag \$\" interpolation");
39}
f6b3007c 40test(9,header() eq "Content-Type: text/html\015\012\015\012","header()");
41test(10,header(-type=>'image/gif') eq "Content-Type: image/gif\015\012\015\012","header()");
42test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks\015\012Content-Type: image/gif\015\012\015\012","header()");
43test(12,header(-nph=>1) eq "HTTP/1.0 200 OK\015\012Content-Type: text/html\015\012\015\012","header()");
424ec8fa 44test(13,start_html() ."\n" eq <<END,"start_html()");
45<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
46<HTML><HEAD><TITLE>Untitled Document</TITLE>
47</HEAD><BODY>
48END
49 ;
50test(14,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR") ."\n" eq <<END,"start_html()");
51<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.2//FR">
52<HTML><HEAD><TITLE>Untitled Document</TITLE>
53</HEAD><BODY>
54END
55 ;
56test(15,start_html(-Title=>'The world of foo') ."\n" eq <<END,"start_html()");
57<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
58<HTML><HEAD><TITLE>The world of foo</TITLE>
59</HEAD><BODY>
60END
61 ;
62test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq
f6b3007c 63 'fred=chocolate&chip; domain=localhost; path=/',"cookie()");
64test(17,header(-Cookie=>$cookie) =~ m!^Set-Cookie: fred=chocolate&chip\; domain=localhost; path=/\015\012Date:.*\015\012Content-Type: text/html\015\012\015\012!s,
424ec8fa 65 "header(-cookie)");
abfd9522 66test(18,start_h3 eq '<H3>');
67test(19,end_h3 eq '</H3>');
68test(20,start_table({-border=>undef}) eq '<TABLE BORDER>');