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 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
#!perl -T
use strict;
use warnings;
use Test::More tests => 10;
use Test::Builder::Tester;
use Test::WWW::Mechanize ();
use lib 't';
use TestServer;
my $server = TestServer->new;
my $pid = $server->background;
my $server_root = $server->root;
GOOD_DELETE: {
local @ENV{qw( http_proxy HTTP_PROXY )};
my $mech = Test::WWW::Mechanize->new( autocheck => 0 );
isa_ok($mech,'Test::WWW::Mechanize');
my $scratch = "$server_root/scratch.html";
$mech->delete_ok($scratch);
ok($mech->success, 'sanity check: we can load scratch.html');
test_out('ok 1 - Try to DELETE scratch.html');
my $ok = $mech->delete_ok($scratch, 'Try to DELETE scratch.html');
test_test('DELETEs existing URI and reports success');
is( ref($ok), '', 'delete_ok() should only return a scalar' );
ok( $ok, 'And the result should be true' );
# default desc
test_out("ok 1 - DELETE $scratch");
$mech->delete_ok($scratch);
test_test('DELETEs existing URI and reports success - default desc');
# For old LWP::UA
undef *Test::WWW::Mechanize::can;
*Test::WWW::Mechanize::can = sub {
return undef;
};
$mech->delete_ok($scratch);
ok($mech->success, 'sanity check: we can load scratch.html by old LWP::UA');
undef *Test::WWW::Mechanize::can;
*Test::WWW::Mechanize::can = *UNIVERSAL::can{CODE};
}
UNDEF_URL: {
my $mech = Test::WWW::Mechanize->new();
test_out( 'not ok 1 - Passing undef for a URL' );
test_fail( +2 );
test_diag( 'URL cannot be undef.' );
my $ok = $mech->delete_ok( undef, 'Passing undef for a URL' );
test_test( 'Undef URLs' );
}
$server->stop;
done_testing();
exit 0;
|