Home | History | Annotate | Download | only in t
      1 #!/usr/local/bin/perl -w
      2 
      3 # Test ability to retrieve HTTP request info
      4 ######################### We start with some black magic to print on failure.
      5 use lib '../blib/lib','../blib/arch';
      6 
      7 END {print "not ok 1\n" unless $loaded;}
      8 use CGI (':standard','-no_debug','*h3','start_table');
      9 $loaded = 1;
     10 print "ok 1\n";
     11 
     12 BEGIN {
     13    $| = 1; print "1..28\n";
     14   if( $] > 5.006 ) {
     15     # no utf8
     16     require utf8; # we contain Latin-1
     17     utf8->unimport;
     18   }
     19 }
     20 
     21 ######################### End of black magic.
     22 
     23 my $CRLF = "\015\012";
     24 if ($^O eq 'VMS') { 
     25   $CRLF = "\n";  # via web server carriage is inserted automatically
     26 }
     27 if (ord("\t") != 9) { # EBCDIC?
     28   $CRLF = "\r\n";
     29 }
     30 
     31 
     32 # util
     33 sub test {
     34     local($^W) = 0;
     35     my($num, $true,$msg) = @_;
     36     print($true ? "ok $num\n" : "not ok $num $msg\n");
     37 }
     38 
     39 # all the automatic tags
     40 test(2,h1() eq '<h1 />',"single tag");
     41 test(3,h1('fred') eq '<h1>fred</h1>',"open/close tag");
     42 test(4,h1('fred','agnes','maura') eq '<h1>fred agnes maura</h1>',"open/close tag multiple");
     43 test(5,h1({-align=>'CENTER'},'fred') eq '<h1 align="CENTER">fred</h1>',"open/close tag with attribute");
     44 test(6,h1({-align=>undef},'fred') eq '<h1 align>fred</h1>',"open/close tag with orphan attribute");
     45 test(7,h1({-align=>'CENTER'},['fred','agnes']) eq 
     46      '<h1 align="CENTER">fred</h1> <h1 align="CENTER">agnes</h1>',
     47      "distributive tag with attribute");
     48 {
     49     local($") = '-'; 
     50     test(8,h1('fred','agnes','maura') eq '<h1>fred-agnes-maura</h1>',"open/close tag \$\" interpolation");
     51 }
     52 test(9,header() eq "Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}","header()");
     53 test(10,header(-type=>'image/gif') eq "Content-Type: image/gif${CRLF}${CRLF}","header()");
     54 test(11,header(-type=>'image/gif',-status=>'500 Sucks') eq "Status: 500 Sucks${CRLF}Content-Type: image/gif${CRLF}${CRLF}","header()");
     55 test(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()");
     56 test(13,start_html() eq <<END,"start_html()");
     57 <!DOCTYPE html
     58 	PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     59 	 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     60 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
     61 <head>
     62 <title>Untitled Document</title>
     63 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     64 </head>
     65 <body>
     66 END
     67     ;
     68 test(14,start_html(-Title=>'The world of foo') eq <<END,"start_html()");
     69 <!DOCTYPE html
     70 	PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
     71 	 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     72 <html xmlns="http://www.w3.org/1999/xhtml" lang="en-US" xml:lang="en-US">
     73 <head>
     74 <title>The world of foo</title>
     75 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
     76 </head>
     77 <body>
     78 END
     79     ;
     80 # Note that this test will turn off XHTML until we make a new CGI object.
     81 test(15,start_html(-dtd=>"-//IETF//DTD HTML 3.2//FR",-lang=>'fr') eq <<END,"start_html()");
     82 <!DOCTYPE html
     83 	PUBLIC "-//IETF//DTD HTML 3.2//FR">
     84 <html lang="fr"><head><title>Untitled Document</title>
     85 </head>
     86 <body>
     87 END
     88     ;
     89 test(16,($cookie=cookie(-name=>'fred',-value=>['chocolate','chip'],-path=>'/')) eq 'fred=chocolate&chip; path=/',"cookie()");
     90 my $h = header(-Cookie=>$cookie);
     91 test(17,$h =~ m!^Set-Cookie: fred=chocolate&chip\; path=/${CRLF}Date:.*${CRLF}Content-Type: text/html; charset=ISO-8859-1${CRLF}${CRLF}!s, 
     92   "header(-cookie)");
     93 test(18,start_h3 eq '<h3>');
     94 test(19,end_h3 eq '</h3>');
     95 test(20,start_table({-border=>undef}) eq '<table border>');
     96 test(21,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; &#8249;right&#8250;</h1>');
     97 charset('utf-8');
     98 if (ord("\t") == 9) {
     99 test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; right</h1>');
    100 }
    101 else {
    102 test(22,h1(escapeHTML("this is <not> \x8bright\x9b")) eq '<h1>this is &lt;not&gt; right</h1>');
    103 }
    104 test(23,i(p('hello there')) eq '<i><p>hello there</p></i>');
    105 my $q = new CGI;
    106 test(24,$q->h1('hi') eq '<h1>hi</h1>');
    107 
    108 $q->autoEscape(1);
    109 test(25,$q->p({title=>"hello world&egrave;"},'hello &aacute;') eq '<p title="hello world&amp;egrave;">hello &aacute;</p>');
    110 $q->autoEscape(0);
    111 test(26,$q->p({title=>"hello world&egrave;"},'hello &aacute;') eq '<p title="hello world&egrave;">hello &aacute;</p>');
    112 test(27,p({title=>"hello world&egrave;"},'hello &aacute;') eq '<p title="hello world&amp;egrave;">hello &aacute;</p>');
    113 test(28,header(-type=>'image/gif',-charset=>'UTF-8') eq "Content-Type: image/gif; charset=UTF-8${CRLF}${CRLF}","header()");
    114