X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Flib%2Ft%2Fregression%2F03web_compiliation_errors.t;h=29e56d67b06900c76f20a8813647c193ccc8cf3c;hp=f2e62c98d1afee44f194b53c2fc20d05fa0881f9;hb=ef20b2b6b1feb47ad02b5ff7525f1a0fd11d0fa4;hpb=a513c0bef534d05f03c1242831b6f3be19b97dae diff --git a/rt/lib/t/regression/03web_compiliation_errors.t b/rt/lib/t/regression/03web_compiliation_errors.t index f2e62c98d..29e56d67b 100644 --- a/rt/lib/t/regression/03web_compiliation_errors.t +++ b/rt/lib/t/regression/03web_compiliation_errors.t @@ -12,19 +12,18 @@ my $cookie_jar = HTTP::Cookies->new; my $agent = WWW::Mechanize->new(); # give the agent a place to stash the cookies - $agent->cookie_jar($cookie_jar); use RT; -RT::LoadConfig; +RT::LoadConfig(); # get the top page my $url = $RT::WebURL; +diag "Base URL is '$url'" if $ENV{TEST_VERBOSE}; $agent->get($url); is ($agent->{'status'}, 200, "Loaded a page"); - # {{{ test a login # follow the link marked "Login" @@ -45,20 +44,19 @@ use File::Find; find ( \&wanted , 'html/'); sub wanted { - -f && /\.html$/ && $_ !~ /Logout.html$/ && test_get($File::Find::name); + -f && /\.html$/ && $_ !~ /Logout.html$/ && test_get($File::Find::name); } sub test_get { my $file = shift; - - $file =~ s#^html/##; + $file =~ s#^html/##; + diag( "testing $url/$file" ) if $ENV{TEST_VERBOSE}; ok ($agent->get("$url/$file", "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'} !~ /System error/i, "Didn't get a Mason compilation error on $file"); - + ok( $agent->{'content'} !~ /raw error/i, "Didn't get a Mason compilation error on $file"); } # }}}