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