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