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
|
#!/usr/bin/perl -w
use strict;
use Test::More;
use FindBin qw($Bin);
use constant TMPFILE => "$Bin/unlink_test_delete_me";
use constant NO_SUCH_FILE => 'this_file_had_better_not_be_here_at_all';
make_file(TMPFILE);
# Check that file now exists
-e TMPFILE or plan skip_all => "Failed to create test file";
# Check we can unlink
unlink TMPFILE;
# Check it's gone
if(-e TMPFILE) {plan skip_all => "Failed to delete test file: $!";}
# Re-create file
make_file(TMPFILE);
# Check that file now exists
-e TMPFILE or plan skip_all => "Failed to create test file";
plan tests => 10;
# Try to delete file (this should succeed)
eval {
use autodie;
unlink TMPFILE;
};
is($@, "", "Unlink appears to have been successful");
ok(! -e TMPFILE, "File does not exist");
# Try to delete file again (this should fail)
eval {
use autodie;
unlink TMPFILE;
};
ok($@, "Re-unlinking file causes failure.");
isa_ok($@, "autodie::exception", "... errors are of the correct type");
ok($@->matches("unlink"), "... it's also a unlink object");
ok($@->matches(":filesys"), "... and a filesys object");
# Autodie should throw if we delete a LIST of files, but can only
# delete some of them.
make_file(TMPFILE);
ok(-e TMPFILE, "Sanity: file exists");
eval {
use autodie;
unlink TMPFILE, NO_SUCH_FILE;
};
ok($@, "Failure when trying to delete missing file in list.");
isa_ok($@, "autodie::exception", "... errors are of the correct type");
is($@->return,1, "Failure on deleting missing file but true return value");
sub make_file {
open(my $fh, ">", $_[0])
or plan skip_all => "Unable to create test file $_[0]: $!";
print {$fh} "Test\n";
close $fh;
}
|