#!perl use warnings; use strict; use Test::More tests => 32; use lib 't/local'; use LocalServer; BEGIN { delete @ENV{ qw( http_proxy HTTP_PROXY ) }; } BEGIN { use_ok( 'WWW::Mechanize' ); } eval "use Test::Memory::Cycle"; my $canTMC = !$@; my $server = LocalServer->spawn; isa_ok( $server, 'LocalServer' ); my $agent = WWW::Mechanize->new; isa_ok( $agent, 'WWW::Mechanize', 'Created object' ); my $response = $agent->get($server->url); isa_ok( $response, 'HTTP::Response' ); isa_ok( $agent->response, 'HTTP::Response' ); ok( $response->is_success ); ok( $agent->success, "Get webpage" ); is( $agent->ct, "text/html", "Got the content-type..." ); ok( $agent->is_html, "... and the is_html wrapper" ); is( $agent->title, "WWW::Mechanize::Shell test page" ); $agent->get( '/foo/' ); ok( $agent->success, 'Got the /foo' ); is( $agent->uri, sprintf('%sfoo/',$server->url), "Got relative OK" ); ok( $agent->is_html,"Got HTML back" ); is( $agent->title, "WWW::Mechanize::Shell test page", "Got the right page" ); $agent->get( '../bar/' ); ok( $agent->success, 'Got the /bar page' ); is( $agent->uri, sprintf('%sbar/',$server->url), "Got relative OK" ); ok( $agent->is_html ); is( $agent->title, "WWW::Mechanize::Shell test page", "Got the right page" ); $agent->get( 'basics.html' ); ok( $agent->success, 'Got the basics page' ); is( $agent->uri, sprintf('%sbar/basics.html',$server->url), "Got relative OK" ); ok( $agent->is_html ); is( $agent->title, "WWW::Mechanize::Shell test page" ); like( $agent->content, qr/WWW::Mechanize::Shell test page/, "Got the right page" ); $agent->get( './refinesearch.html' ); ok( $agent->success, 'Got the "refine search" page' ); is( $agent->uri, sprintf('%sbar/refinesearch.html',$server->url), "Got relative OK" ); ok( $agent->is_html ); is( $agent->title, "WWW::Mechanize::Shell test page" ); like( $agent->content, qr/WWW::Mechanize::Shell test page/, "Got the right page" ); my $rslength = length $agent->content; my $tempfile = "./temp"; unlink $tempfile; ok( !-e $tempfile, "tempfile isn't there right now" ); $agent->get( './refinesearch.html', ":content_file"=>$tempfile ); ok( -e $tempfile ); is( -s $tempfile, $rslength, "Did all the bytes get saved?" ); unlink $tempfile; SKIP: { skip "Test::Memory::Cycle not installed", 1 unless $canTMC; memory_cycle_ok( $agent, "Mech: no cycles" ); }