The #6724 is here.
[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';
5 unshift @INC, '../lib';
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
20# util
21sub test {
22 local($^W) = 0;
23 my($num, $true,$msg) = @_;
24 print($true ? "ok $num\n" : "not ok $num $msg\n");
25}
26
27# all the automatic tags
6b4ac661 28test(2,h1() eq '<h1 />',"single tag");
29test(3,h1('fred') eq '<h1>fred</h1>',"open/close tag");
30test(4,h1('fred','agnes','maura') eq '<h1>fred agnes maura</h1>',"open/close tag multiple");
31test(5,h1({-align=>'CENTER'},'fred') eq '<h1 align="CENTER">fred</h1>',"open/close tag with attribute");
32test(6,h1({-align=>undef},'fred') eq '<h1 align>fred</h1>',"open/close tag with orphan attribute");
424ec8fa 33test(7,h1({-align=>'CENTER'},['fred','agnes']) eq
6b4ac661 34 '<h1 align="CENTER">fred</h1> <h1 align="CENTER">agnes</h1>',
424ec8fa 35 "distributive tag with attribute");
36{
37 local($") = '-';
6b4ac661 38 test(8,h1('fred','agnes','maura') eq '<h1>fred-agnes-maura</h1>',"open/close tag \$\" interpolation");
424ec8fa 39}
6b4ac661 40test(9,header() eq "Content-Type: text/html; charset=ISO-8859-1\015\012\015\012","header()");
41test(10,header(-type=>'image/gif') eq "Content-Type: image/gif\015\012\015\012","header()");
42test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks\015\012Content-Type: image/gif\015\012\015\012","header()");
43test(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 44test(13,start_html() ."\n" eq <<END,"start_html()");
6b4ac661 45<!DOCTYPE HTML
46 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
47 "DTD/xhtml1-transitional.dtd">
48<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>Untitled Document</title>
49</head><body>
424ec8fa 50END
51 ;
52test(14,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR") ."\n" eq <<END,"start_html()");
6b4ac661 53<!DOCTYPE HTML
54 PUBLIC "-//IETF//DTD HTML 3.2//FR">
55<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>Untitled Document</title>
56</head><body>
424ec8fa 57END
58 ;
59test(15,start_html(-Title=>'The world of foo') ."\n" eq <<END,"start_html()");
6b4ac661 60<!DOCTYPE HTML
61 PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
62 "DTD/xhtml1-transitional.dtd">
63<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US"><head><title>The world of foo</title>
64</head><body>
424ec8fa 65END
66 ;
6b4ac661 67test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq 'fred=chocolate&chip; path=/',"cookie()");
68my $h = header(-Cookie=>$cookie);
69test(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,
70 "header(-cookie)");
71test(18,start_h3 eq '<h3>');
72test(19,end_h3 eq '</h3>');
73test(20,start_table({-border=>undef}) eq '<table border>');
74test(21,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; &#139;right&#155;</h1>');
3d1a2ec4 75charset('utf-8');
6b4ac661 76test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; ‹right›</h1>');
77test(23,i(p('hello there')) eq '<i><p>hello there</p></i>');
3d1a2ec4 78my $q = new CGI;
6b4ac661 79test(24,$q->h1('hi') eq '<h1>hi</h1>');