Upgrade to CGI.pm 2.74, from Lincoln Stein.
[p5sagit/p5-mst-13.2.git] / t / lib / cgi-html.t
CommitLineData
6b4ac661 1#!/usr/local/bin/perl -w
424ec8fa 2
36e6c0f5 3BEGIN {
4 chdir('t') if -d 't';
20822f61 5 @INC = '../lib';
36e6c0f5 6}
7
424ec8fa 8# Test ability to retrieve HTTP request info
9######################### We start with some black magic to print on failure.
6b4ac661 10use lib '../blib/lib','../blib/arch';
424ec8fa 11
3d1a2ec4 12BEGIN {$| = 1; print "1..24\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
03b9648d 20my $CRLF = "\015\012";
21if ($^O eq 'VMS') {
22 $CRLF = "\n"; # via web server carriage is inserted automatically
23}
24if (ord("\t") != 9) { # EBCDIC?
25 $CRLF = "\r\n";
26}
27
28
424ec8fa 29# util
30sub test {
31 local($^W) = 0;
32 my($num, $true,$msg) = @_;
33 print($true ? "ok $num\n" : "not ok $num $msg\n");
34}
35
1e846b39 36my $CRLF = "\015\012";
37if ($^O eq 'VMS') {
38 $CRLF = "\n"; # via web server carriage is inserted automatically
39}
40if (ord("\t") != 9) { # EBCDIC?
41 $CRLF = "\r\n";
42}
43
424ec8fa 44# all the automatic tags
6b4ac661 45test(2,h1() eq '<h1 />',"single tag");
46test(3,h1('fred') eq '<h1>fred</h1>',"open/close tag");
47test(4,h1('fred','agnes','maura') eq '<h1>fred agnes maura</h1>',"open/close tag multiple");
48test(5,h1({-align=>'CENTER'},'fred') eq '<h1 align="CENTER">fred</h1>',"open/close tag with attribute");
49test(6,h1({-align=>undef},'fred') eq '<h1 align>fred</h1>',"open/close tag with orphan attribute");
424ec8fa 50test(7,h1({-align=>'CENTER'},['fred','agnes']) eq
6b4ac661 51 '<h1 align="CENTER">fred</h1> <h1 align="CENTER">agnes</h1>',
424ec8fa 52 "distributive tag with attribute");
53{
54 local($") = '-';
6b4ac661 55 test(8,h1('fred','agnes','maura') eq '<h1>fred-agnes-maura</h1>',"open/close tag \$\" interpolation");
424ec8fa 56}
1e846b39 57test(9,header() eq "Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}","header()");
58test(10,header(-type=>'image/gif') eq "Content-Type: image/gif${CRLF}${CRLF}","header()");
59test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks${CRLF}Content-Type: image/gif${CRLF}${CRLF}","header()");
60test(12,header(-nph=>1) eq "HTTP/1.0 200 OK${CRLF}Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}","header()");
424ec8fa 61test(13,start_html() ."\n" eq <<END,"start_html()");
03b9648d 62<!DOCTYPE html
6b4ac661 63 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
64 "DTD/xhtml1-transitional.dtd">
65<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>Untitled Document</title>
66</head><body>
424ec8fa 67END
68 ;
69test(14,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR") ."\n" eq <<END,"start_html()");
03b9648d 70<!DOCTYPE html
6b4ac661 71 PUBLIC "-//IETF//DTD HTML 3.2//FR">
72<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>Untitled Document</title>
73</head><body>
424ec8fa 74END
75 ;
76test(15,start_html(-Title=>'The world of foo') ."\n" eq <<END,"start_html()");
03b9648d 77<!DOCTYPE html
6b4ac661 78 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
79 "DTD/xhtml1-transitional.dtd">
80<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>The world of foo</title>
81</head><body>
424ec8fa 82END
83 ;
6b4ac661 84test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq 'fred=chocolate&chip; path=/',"cookie()");
85my $h = header(-Cookie=>$cookie);
03b9648d 86test(17,$h =~ m!^Set-Cookie: fred=chocolate&chip\; path=/${CRLF}Date:.*${CRLF}Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}!s,
6b4ac661 87 "header(-cookie)");
88test(18,start_h3 eq '<h3>');
89test(19,end_h3 eq '</h3>');
90test(20,start_table({-border=>undef}) eq '<table border>');
91test(21,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; &#139;right&#155;</h1>');
3d1a2ec4 92charset('utf-8');
6b4ac661 93test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; ‹right›</h1>');
94test(23,i(p('hello there')) eq '<i><p>hello there</p></i>');
3d1a2ec4 95my $q = new CGI;
6b4ac661 96test(24,$q->h1('hi') eq '<h1>hi</h1>');