This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Update to CGI 2.70, from Lincoln Stein.
[perl5.git] / t / lib / cgi-html.t
1 #!/usr/local/bin/perl -w
2
3 # Test ability to retrieve HTTP request info
4 ######################### We start with some black magic to print on failure.
5 use lib '../blib/lib','../blib/arch';
6
7 BEGIN {$| = 1; print "1..24\n"; }
8 END {print "not ok 1\n" unless $loaded;}
9 use CGI (':standard','-no_debug','*h3','start_table');
10 $loaded = 1;
11 print "ok 1\n";
12
13 ######################### End of black magic.
14
15 # util
16 sub test {
17     local($^W) = 0;
18     my($num, $true,$msg) = @_;
19     print($true ? "ok $num\n" : "not ok $num $msg\n");
20 }
21
22 # all the automatic tags
23 test(2,h1() eq '<h1 />',"single tag");
24 test(3,h1('fred') eq '<h1>fred</h1>',"open/close tag");
25 test(4,h1('fred','agnes','maura') eq '<h1>fred agnes maura</h1>',"open/close tag multiple");
26 test(5,h1({-align=>'CENTER'},'fred') eq '<h1 align="CENTER">fred</h1>',"open/close tag with attribute");
27 test(6,h1({-align=>undef},'fred') eq '<h1 align>fred</h1>',"open/close tag with orphan attribute");
28 test(7,h1({-align=>'CENTER'},['fred','agnes']) eq 
29      '<h1 align="CENTER">fred</h1> <h1 align="CENTER">agnes</h1>',
30      "distributive tag with attribute");
31 {
32     local($") = '-'; 
33     test(8,h1('fred','agnes','maura') eq '<h1>fred-agnes-maura</h1>',"open/close tag \$\" interpolation");
34 }
35 test(9,header() eq "Content-Type: text/html; charset=ISO-8859-1\015\012\015\012","header()");
36 test(10,header(-type=>'image/gif') eq "Content-Type: image/gif\015\012\015\012","header()");
37 test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks\015\012Content-Type: image/gif\015\012\015\012","header()");
38 test(12,header(-nph=>1) eq "HTTP/1.0 200 OK\015\012Content-Type: text/html; charset=ISO-8859-1\015\012\015\012","header()");
39 test(13,start_html() ."\n" eq <<END,"start_html()");
40 <!DOCTYPE HTML
41         PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
42         "DTD/xhtml1-transitional.dtd">
43 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>Untitled Document</title>
44 </head><body>
45 END
46     ;
47 test(14,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR") ."\n" eq <<END,"start_html()");
48 <!DOCTYPE HTML
49         PUBLIC "-//IETF//DTD HTML 3.2//FR">
50 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>Untitled Document</title>
51 </head><body>
52 END
53     ;
54 test(15,start_html(-Title=>'The world of foo') ."\n" eq <<END,"start_html()");
55 <!DOCTYPE HTML
56         PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
57         "DTD/xhtml1-transitional.dtd">
58 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>The world of foo</title>
59 </head><body>
60 END
61     ;
62 test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq 'fred=chocolate&chip; path=/',"cookie()");
63 my $h = header(-Cookie=>$cookie);
64 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, 
65   "header(-cookie)");
66 test(18,start_h3 eq '<h3>');
67 test(19,end_h3 eq '</h3>');
68 test(20,start_table({-border=>undef}) eq '<table border>');
69 test(21,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; &#139;right&#155;</h1>');
70 charset('utf-8');
71 test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; \8bright\9b</h1>');
72 test(23,i(p('hello there')) eq '<i><p>hello there</p></i>');
73 my $q = new CGI;
74 test(24,$q->h1('hi') eq '<h1>hi</h1>');