Upgrade to the CGI.pm 2.93.
[p5sagit/p5-mst-13.2.git] / lib / CGI / t / 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 END {print "not ok 1\n" unless $loaded;}
8 use CGI (':standard','-no_debug','*h3','start_table');
9 $loaded = 1;
10 print "ok 1\n";
11
12 BEGIN {
13    $| = 1; print "1..27\n";
14   if( $] > 5.006 ) {
15     # no utf8
16     require utf8; # we contain Latin-1
17     utf8->unimport;
18   }
19 }
20
21 ######################### End of black magic.
22
23 my $CRLF = "\015\012";
24 if ($^O eq 'VMS') { 
25   $CRLF = "\n";  # via web server carriage is inserted automatically
26 }
27 if (ord("\t") != 9) { # EBCDIC?
28   $CRLF = "\r\n";
29 }
30
31
32 # util
33 sub test {
34     local($^W) = 0;
35     my($num, $true,$msg) = @_;
36     print($true ? "ok $num\n" : "not ok $num $msg\n");
37 }
38
39 # all the automatic tags
40 test(2,h1() eq '<h1 />',"single tag");
41 test(3,h1('fred') eq '<h1>fred</h1>',"open/close tag");
42 test(4,h1('fred','agnes','maura') eq '<h1>fred agnes maura</h1>',"open/close tag multiple");
43 test(5,h1({-align=>'CENTER'},'fred') eq '<h1 align="CENTER">fred</h1>',"open/close tag with attribute");
44 test(6,h1({-align=>undef},'fred') eq '<h1 align>fred</h1>',"open/close tag with orphan attribute");
45 test(7,h1({-align=>'CENTER'},['fred','agnes']) eq 
46      '<h1 align="CENTER">fred</h1> <h1 align="CENTER">agnes</h1>',
47      "distributive tag with attribute");
48 {
49     local($") = '-'; 
50     test(8,h1('fred','agnes','maura') eq '<h1>fred-agnes-maura</h1>',"open/close tag \$\" interpolation");
51 }
52 test(9,header() eq "Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}","header()");
53 test(10,header(-type=>'image/gif') eq "Content-Type: image/gif${CRLF}${CRLF}","header()");
54 test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks${CRLF}Content-Type: image/gif${CRLF}${CRLF}","header()");
55 test(12,header(-nph=>1) =~ m!HTTP/1.0 200 OK${CRLF}Server: cmdline${CRLF}Date:.+${CRLF}Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}!,"header()");
56 test(13,start_html() ."\n" eq <<END,"start_html()");
57 <?xml version="1.0" encoding="iso-8859-1"?>
58 <!DOCTYPE html
59         PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
60          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
61 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US"><head><title>Untitled Document</title>
62 </head><body>
63 END
64     ;
65 test(14,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR",-lang=>'fr') ."\n" eq <<END,"start_html()");
66 <!DOCTYPE html
67         PUBLIC "-//IETF//DTD HTML 3.2//FR">
68 <html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr"><head><title>Untitled Document</title>
69 </head><body>
70 END
71     ;
72 test(15,start_html(-Title=>'The world of foo') ."\n" eq <<END,"start_html()");
73 <?xml version="1.0" encoding="iso-8859-1"?>
74 <!DOCTYPE html
75         PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
76          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
77 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US"><head><title>The world of foo</title>
78 </head><body>
79 END
80     ;
81 test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq 'fred=chocolate&chip; path=/',"cookie()");
82 my $h = header(-Cookie=>$cookie);
83 test(17,$h =~ m!^Set-Cookie: fred=chocolate&chip\; path=/${CRLF}Date:.*${CRLF}Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}!s, 
84   "header(-cookie)");
85 test(18,start_h3 eq '<h3>');
86 test(19,end_h3 eq '</h3>');
87 test(20,start_table({-border=>undef}) eq '<table border>');
88 test(21,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; &#8249;right&#8250;</h1>');
89 charset('utf-8');
90 if (ord("\t") == 9) {
91 test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; ‹right›</h1>');
92 }
93 else {
94 test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; »rightº</h1>');
95 }
96 test(23,i(p('hello there')) eq '<i><p>hello there</p></i>');
97 my $q = new CGI;
98 test(24,$q->h1('hi') eq '<h1>hi</h1>');
99
100 $q->autoEscape(1);
101 test(25,$q->p({title=>"hello world&egrave;"},'hello &aacute;') eq '<p title="hello world&amp;egrave;">hello &aacute;</p>');
102 $q->autoEscape(0);
103 test(26,$q->p({title=>"hello world&egrave;"},'hello &aacute;') eq '<p title="hello world&egrave;">hello &aacute;</p>');
104 test(27,p({title=>"hello world&egrave;"},'hello &aacute;') eq '<p title="hello world&amp;egrave;">hello &aacute;</p>');