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