Update to CGI 2.70, from Lincoln Stein.
[p5sagit/p5-mst-13.2.git] / t / lib / cgi-html.t
CommitLineData
6b4ac661 1#!/usr/local/bin/perl -w
424ec8fa 2
3# Test ability to retrieve HTTP request info
4######################### We start with some black magic to print on failure.
6b4ac661 5use lib '../blib/lib','../blib/arch';
424ec8fa 6
3d1a2ec4 7BEGIN {$| = 1; print "1..24\n"; }
424ec8fa 8END {print "not ok 1\n" unless $loaded;}
abfd9522 9use CGI (':standard','-no_debug','*h3','start_table');
424ec8fa 10$loaded = 1;
11print "ok 1\n";
12
13######################### End of black magic.
14
15# util
16sub 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
6b4ac661 23test(2,h1() eq '<h1 />',"single tag");
24test(3,h1('fred') eq '<h1>fred</h1>',"open/close tag");
25test(4,h1('fred','agnes','maura') eq '<h1>fred agnes maura</h1>',"open/close tag multiple");
26test(5,h1({-align=>'CENTER'},'fred') eq '<h1 align="CENTER">fred</h1>',"open/close tag with attribute");
27test(6,h1({-align=>undef},'fred') eq '<h1 align>fred</h1>',"open/close tag with orphan attribute");
424ec8fa 28test(7,h1({-align=>'CENTER'},['fred','agnes']) eq
6b4ac661 29 '<h1 align="CENTER">fred</h1> <h1 align="CENTER">agnes</h1>',
424ec8fa 30 "distributive tag with attribute");
31{
32 local($") = '-';
6b4ac661 33 test(8,h1('fred','agnes','maura') eq '<h1>fred-agnes-maura</h1>',"open/close tag \$\" interpolation");
424ec8fa 34}
6b4ac661 35test(9,header() eq "Content-Type: text/html; charset=ISO-8859-1\015\012\015\012","header()");
36test(10,header(-type=>'image/gif') eq "Content-Type: image/gif\015\012\015\012","header()");
37test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks\015\012Content-Type: image/gif\015\012\015\012","header()");
38test(12,header(-nph=>1) eq "HTTP/1.0 200 OK\015\012Content-Type: text/html; charset=ISO-8859-1\015\012\015\012","header()");
424ec8fa 39test(13,start_html() ."\n" eq <<END,"start_html()");
6b4ac661 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>
424ec8fa 45END
46 ;
47test(14,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR") ."\n" eq <<END,"start_html()");
6b4ac661 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>
424ec8fa 52END
53 ;
54test(15,start_html(-Title=>'The world of foo') ."\n" eq <<END,"start_html()");
6b4ac661 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>
424ec8fa 60END
61 ;
6b4ac661 62test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq 'fred=chocolate&chip; path=/',"cookie()");
63my $h = header(-Cookie=>$cookie);
64test(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)");
66test(18,start_h3 eq '<h3>');
67test(19,end_h3 eq '</h3>');
68test(20,start_table({-border=>undef}) eq '<table border>');
69test(21,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; &#139;right&#155;</h1>');
3d1a2ec4 70charset('utf-8');
6b4ac661 71test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; ‹right›</h1>');
72test(23,i(p('hello there')) eq '<i><p>hello there</p></i>');
3d1a2ec4 73my $q = new CGI;
6b4ac661 74test(24,$q->h1('hi') eq '<h1>hi</h1>');