1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
use warnings;
use strict;
use Test::More tests => 17;
use lib 't/local';
use LocalServer;
BEGIN { delete @ENV{ qw( http_proxy HTTP_PROXY ) }; }
BEGIN {
use_ok( 'WWW::Mechanize' );
}
my $server = LocalServer->spawn;
isa_ok( $server, 'LocalServer' );
my $mech = WWW::Mechanize->new;
isa_ok( $mech, 'WWW::Mechanize', 'Created object' );
GOOD_PAGE: {
my $response = $mech->get($server->url);
isa_ok( $response, 'HTTP::Response' );
ok( $response->is_success, "Success" );
ok( $mech->success, "Get webpage" );
is( ref $mech->uri, "", "URI should be a plain scalar, not an object");
ok( $mech->is_html, "It's HTML" );
is( $mech->title, "WWW::Mechanize::Shell test page", "Correct title" );
my @links = $mech->links;
is( scalar @links, 10, "10 links, please" );
my @forms = $mech->forms;
is( scalar @forms, 1, "One form" );
isa_ok( $forms[0], 'HTML::Form' );
}
BAD_PAGE: {
my $badurl = "http://blahblahblah.xx-only-testing.";
$mech->get( $badurl );
ok( !$mech->success, 'Failed the fetch' );
ok( !$mech->is_html, "Isn't HTML" );
ok( !defined $mech->title, "No title" );
my @links = $mech->links;
is( scalar @links, 0, "No links" );
my @forms = $mech->forms;
is( scalar @forms, 0, "No forms" );
}
|