X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=rt%2Ft%2Fweb%2Fcompilation_errors.t;h=e4845e0defdce29a641b4d3a5e90eccf4a33f734;hb=a5a541f3b1db3192f7d4a7dd5ad1fbf5800ef586;hp=4fd9c40e93f89031f9fbdd9543f60076441797d4;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c;p=freeside.git diff --git a/rt/t/web/compilation_errors.t b/rt/t/web/compilation_errors.t index 4fd9c40e9..e4845e0de 100644 --- a/rt/t/web/compilation_errors.t +++ b/rt/t/web/compilation_errors.t @@ -1,22 +1,20 @@ -#!/usr/bin/perl - use strict; +use warnings; use Test::More; use File::Find; BEGIN { sub wanted { - -f && /\.html$/ && $_ !~ /Logout.html$/; + -f && /\.html$/ && $_ !~ /Logout.html$/ && $File::Find::dir !~ /RichText/; } - my $tests = 4; + my $tests = 7; find( sub { wanted() and $tests += 4 }, 'share/html/' ); - plan tests => $tests; + plan tests => $tests + 1; # plus one for warnings check } use HTTP::Request::Common; use HTTP::Cookies; use LWP; -use Encode; my $cookie_jar = HTTP::Cookies->new; @@ -28,33 +26,35 @@ $agent->cookie_jar($cookie_jar); # get the top page my $url = $agent->rt_base_url; -diag "Base URL is '$url'" if $ENV{TEST_VERBOSE}; $agent->get($url); -is ($agent->{'status'}, 200, "Loaded a page"); - -# {{{ test a login +is($agent->status, 200, "Loaded a page"); # follow the link marked "Login" $agent->login(root => 'password'); -is($agent->{'status'}, 200, "Fetched the page ok"); -like( $agent->{'content'} , qr/Logout/i, "Found a logout link"); +is($agent->status, 200, "Fetched the page ok"); +$agent->content_contains('Logout', "Found a logout link"); -find ( sub { wanted() and test_get($File::Find::name) } , 'share/html/'); +find ( { wanted => sub { wanted() and test_get($agent, $File::Find::name) }, no_chdir => 1 } , 'share/html/'); + +# We expect to spew a lot of warnings; toss them away +$agent->get_warnings; sub test_get { + my $agent = shift; my $file = shift; $file =~ s#^share/html/##; - diag( "testing $url/$file" ) if $ENV{TEST_VERBOSE}; - ok ($agent->get("$url/$file", "GET $url/$file"), "Can Get $url/$file"); - is ($agent->{'status'}, 200, "Loaded $file"); -# ok( $agent->{'content'} =~ /Logout/i, "Found a logout link on $file "); - ok( $agent->{'content'} !~ /Not logged in/i, "Still logged in for $file"); - ok( $agent->{'content'} !~ /raw error/i, "Didn't get a Mason compilation error on $file"); + diag( "testing $url/$file" ); + + $agent->get_ok("$url/$file"); + is($agent->status, 200, "Loaded $file"); + $agent->content_lacks('Not logged in', "Still logged in for $file"); + $agent->content_lacks('raw error', "Didn't get a Mason compilation error on $file") or do { + if (my ($error) = $agent->content =~ /
(.*?line.*?)$/s) {
+                diag "$file: $error";
+            }
+        };
 }
 
-# }}}
-
-1;