diff options
author | cvs2git <cvs2git> | 2010-05-18 18:50:00 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2010-05-18 18:50:00 +0000 |
commit | 512f2d1e0ecd86da0e99d99911933a842957186d (patch) | |
tree | 0f818dde9e18dc88290b0c0ff4beb89251728ba7 /rt/lib/t/regression/03web_compiliation_errors.t | |
parent | e70abd21bab68b23488f7ef1ee2e693a3b365691 (diff) |
This commit was manufactured by cvs2svn to create tag 'RT_3_8_8'.RT_3_8_8
Diffstat (limited to 'rt/lib/t/regression/03web_compiliation_errors.t')
-rw-r--r-- | rt/lib/t/regression/03web_compiliation_errors.t | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/rt/lib/t/regression/03web_compiliation_errors.t b/rt/lib/t/regression/03web_compiliation_errors.t deleted file mode 100644 index 29e56d67b..000000000 --- a/rt/lib/t/regression/03web_compiliation_errors.t +++ /dev/null @@ -1,64 +0,0 @@ -#!/usr/bin/perl - -use strict; -use Test::More qw/no_plan/; -use WWW::Mechanize; -use HTTP::Request::Common; -use HTTP::Cookies; -use LWP; -use Encode; - -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(); - -# 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" - -ok($agent->{form}->find_input('user')); - -ok($agent->{form}->find_input('pass')); -ok ($agent->{'content'} =~ /username:/i); -$agent->field( 'user' => 'root' ); -$agent->field( 'pass' => 'password' ); -# the field isn't named, so we have to click link 0 -$agent->click(0); -is($agent->{'status'}, 200, "Fetched the page ok"); -ok( $agent->{'content'} =~ /Logout/i, "Found a logout link"); - - -use File::Find; -find ( \&wanted , 'html/'); - -sub wanted { - -f && /\.html$/ && $_ !~ /Logout.html$/ && test_get($File::Find::name); -} - -sub test_get { - my $file = shift; - - $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'} !~ /raw error/i, "Didn't get a Mason compilation error on $file"); -} - -# }}} - -1; |