expect unordered headers in tests
authorMischa POSLAWSKY <perl@shiar.org>
Mon, 2 Jun 2008 07:10:27 +0000 (07:10 +0000)
committerMischa POSLAWSKY <perl@shiar.org>
Mon, 2 Jun 2008 08:18:37 +0000 (08:18 +0000)
Headers are stored as hash, which will be printed in semi-random order.
Sort all lines in output upto the first empty line, in order to compare
reliably.

t/50-cgi.t

index 1873c8fccc88e642e4a4da9166cd5349b24562fd..cd10ee47381c916c4f7cf9fced66c13b0ca7d7ed 100644 (file)
@@ -41,6 +41,7 @@ sub plp_is {
        select ORGOUT;  # return to original STDOUT
 
        not $@ or fail($test), diag("    Error: $@"), return;
+       $output =~ s{((?:.+\n)*)}{ join "", sort split /(?<=\n)/, $1 }e; # order headers
        is($output, $expect, $test);
 }
 
@@ -58,8 +59,8 @@ sub plp_is {
 ); # Apache/2.2.4 CGI environment
 
 my $HEAD = <<EOT;  # common header output
-X-PLP-Version: $PLP::VERSION
 Content-Type: text/html
+X-PLP-Version: $PLP::VERSION
 EOT
 
 plp_is('print', '0<: print print 2 :>3', "$HEAD\n0213");
@@ -73,14 +74,14 @@ plp_is('%get', '<: print $get{test} if defined $get{test} and not exists $get{te
 plp_is('%get array', '<:= @{$get{q/@test/}}', "$HEAD\n12\n");
 
 plp_is('%header',
-       '<: $headers{x_test}=2; print $header{x_PLP_version}; BEGIN { $header{"X-tesT"}=1 }',
-       "X-tesT: 2\n$HEAD\n$PLP::VERSION"
+       '<: $headers{_test}=2; print $header{x_PLP_version}; BEGIN { $header{"-tesT"}=1 }',
+       "-tesT: 2\n$HEAD\n$PLP::VERSION"
 );
 
-plp_is('%header', '.<: BEGIN{$header{x}="1\n2"} $header{x}=3', <<TEST);
-${HEAD}x: 1
-x: 2
-
+plp_is('%header repetition', '.<: BEGIN{$header{A}="1\n2"} $header{A}=3', <<TEST);
+A: 1
+A: 2
+$HEAD
 .<table border=1 class="PLPerror"><tr><td><b>Debug information:</b><br>Can't set headers after sending them at testfile.plp line 1.
 (Output started at testfile.plp line 1.)
 </td></tr></table>
@@ -144,13 +145,13 @@ plp_is('$PLP::ERROR',
 #TODO: 403
 
 plp_is('$PLP::DEBUG',
-       '<: $PLP::DEBUG = 2 :>1<(missinginclude)>2',
-       "Content-Type: text/plain\n\n$HEAD\n1"
+       '<: $PLP::DEBUG = 2; delete $header{x_plp_version} :>1<(missinginclude)>2',
+       "Content-Type: text/plain\n\nContent-Type: text/html\n\n1"
 );
 
 plp_is('utf8', '<: use open qw/:std :utf8/; print chr 191', <<TEST);
-X-PLP-Version: $PLP::VERSION
 Content-Type: text/html; charset=utf-8
+X-PLP-Version: $PLP::VERSION
 
 \302\277
 TEST