Introduce HAS_LLSEEK.
[p5sagit/p5-mst-13.2.git] / t / lib / cgi-html.t
1 #!./perl
2
3 # Test ability to retrieve HTTP request info
4 ######################### We start with some black magic to print on failure.
5
6 BEGIN {
7     chdir 't' if -d 't';
8     unshift @INC, '../lib' if -d '../lib';
9     require Config; import Config;
10 }
11
12 BEGIN {$| = 1; print "1..20\n"; }
13 END {print "not ok 1\n" unless $loaded;}
14 use CGI (':standard','-no_debug','*h3','start_table');
15 $loaded = 1;
16 print "ok 1\n";
17
18 ######################### End of black magic.
19
20 # util
21 sub 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
28 test(2,h1() eq '<H1>',"single tag");
29 test(3,h1('fred') eq '<H1>fred</H1>',"open/close tag");
30 test(4,h1('fred','agnes','maura') eq '<H1>fred agnes maura</H1>',"open/close tag multiple");
31 test(5,h1({-align=>'CENTER'},'fred') eq '<H1 ALIGN="CENTER">fred</H1>',"open/close tag with attribute");
32 test(6,h1({-align=>undef},'fred') eq '<H1 ALIGN>fred</H1>',"open/close tag with orphan attribute");
33 test(7,h1({-align=>'CENTER'},['fred','agnes']) eq 
34      '<H1 ALIGN="CENTER">fred</H1> <H1 ALIGN="CENTER">agnes</H1>',
35      "distributive tag with attribute");
36 {
37     local($") = '-'; 
38     test(8,h1('fred','agnes','maura') eq '<H1>fred-agnes-maura</H1>',"open/close tag \$\" interpolation");
39 }
40 test(9,header() eq "Content-Type: text/html\015\012\015\012","header()");
41 test(10,header(-type=>'image/gif') eq "Content-Type: image/gif\015\012\015\012","header()");
42 test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks\015\012Content-Type: image/gif\015\012\015\012","header()");
43 test(12,header(-nph=>1) eq "HTTP/1.0 200 OK\015\012Content-Type: text/html\015\012\015\012","header()");
44 test(13,start_html() ."\n" eq <<END,"start_html()");
45 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
46 <HTML><HEAD><TITLE>Untitled Document</TITLE>
47 </HEAD><BODY>
48 END
49     ;
50 test(14,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR") ."\n" eq <<END,"start_html()");
51 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.2//FR">
52 <HTML><HEAD><TITLE>Untitled Document</TITLE>
53 </HEAD><BODY>
54 END
55     ;
56 test(15,start_html(-Title=>'The world of foo') ."\n" eq <<END,"start_html()");
57 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
58 <HTML><HEAD><TITLE>The world of foo</TITLE>
59 </HEAD><BODY>
60 END
61     ;
62 test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq 
63      'fred=chocolate&chip; domain=localhost; path=/',"cookie()");
64 test(17,header(-Cookie=>$cookie) =~ m!^Set-Cookie: fred=chocolate&chip\; domain=localhost; path=/\015\012Date:.*\015\012Content-Type: text/html\015\012\015\012!s,
65      "header(-cookie)");
66 test(18,start_h3 eq '<H3>');
67 test(19,end_h3 eq '</H3>');
68 test(20,start_table({-border=>undef}) eq '<TABLE BORDER>');