Update to CGI.pm 2.78.
[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.
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
ac734d8b 13if( $] > 5.006 ) {
14 # no utf8
15 require utf8; # we contain Latin-1
16 utf8->unimport;
17}
4c53e876 18
424ec8fa 19######################### End of black magic.
20
03b9648d 21my $CRLF = "\015\012";
22if ($^O eq 'VMS') {
23 $CRLF = "\n"; # via web server carriage is inserted automatically
24}
25if (ord("\t") != 9) { # EBCDIC?
26 $CRLF = "\r\n";
27}
28
29
424ec8fa 30# util
31sub test {
32 local($^W) = 0;
33 my($num, $true,$msg) = @_;
34 print($true ? "ok $num\n" : "not ok $num $msg\n");
35}
36
37# all the automatic tags
6b4ac661 38test(2,h1() eq '<h1 />',"single tag");
39test(3,h1('fred') eq '<h1>fred</h1>',"open/close tag");
40test(4,h1('fred','agnes','maura') eq '<h1>fred agnes maura</h1>',"open/close tag multiple");
41test(5,h1({-align=>'CENTER'},'fred') eq '<h1 align="CENTER">fred</h1>',"open/close tag with attribute");
42test(6,h1({-align=>undef},'fred') eq '<h1 align>fred</h1>',"open/close tag with orphan attribute");
424ec8fa 43test(7,h1({-align=>'CENTER'},['fred','agnes']) eq
6b4ac661 44 '<h1 align="CENTER">fred</h1> <h1 align="CENTER">agnes</h1>',
424ec8fa 45 "distributive tag with attribute");
46{
47 local($") = '-';
6b4ac661 48 test(8,h1('fred','agnes','maura') eq '<h1>fred-agnes-maura</h1>',"open/close tag \$\" interpolation");
424ec8fa 49}
1e846b39 50test(9,header() eq "Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}","header()");
51test(10,header(-type=>'image/gif') eq "Content-Type: image/gif${CRLF}${CRLF}","header()");
52test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks${CRLF}Content-Type: image/gif${CRLF}${CRLF}","header()");
ba056755 53test(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 54test(13,start_html() ."\n" eq <<END,"start_html()");
ba056755 55<?xml version="1.0" encoding="utf-8"?>
03b9648d 56<!DOCTYPE html
ba056755 57 PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN"
58 "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">
6b4ac661 59<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>Untitled Document</title>
60</head><body>
424ec8fa 61END
62 ;
63test(14,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR") ."\n" eq <<END,"start_html()");
03b9648d 64<!DOCTYPE html
6b4ac661 65 PUBLIC "-//IETF//DTD HTML 3.2//FR">
66<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>Untitled Document</title>
67</head><body>
424ec8fa 68END
69 ;
70test(15,start_html(-Title=>'The world of foo') ."\n" eq <<END,"start_html()");
ba056755 71<?xml version="1.0" encoding="utf-8"?>
03b9648d 72<!DOCTYPE html
ba056755 73 PUBLIC "-//W3C//DTD XHTML Basic 1.0//EN"
74 "http://www.w3.org/TR/xhtml-basic/xhtml-basic10.dtd">
6b4ac661 75<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>The world of foo</title>
76</head><body>
424ec8fa 77END
78 ;
6b4ac661 79test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq 'fred=chocolate&chip; path=/',"cookie()");
80my $h = header(-Cookie=>$cookie);
03b9648d 81test(17,$h =~ m!^Set-Cookie: fred=chocolate&chip\; path=/${CRLF}Date:.*${CRLF}Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}!s,
6b4ac661 82 "header(-cookie)");
83test(18,start_h3 eq '<h3>');
84test(19,end_h3 eq '</h3>');
85test(20,start_table({-border=>undef}) eq '<table border>');
86test(21,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; &#139;right&#155;</h1>');
3d1a2ec4 87charset('utf-8');
ed8c81f5 88if (ord("\t") == 9) {
6b4ac661 89test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; ‹right›</h1>');
ed8c81f5 90}
91else {
92test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; »rightº</h1>');
93}
6b4ac661 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>');