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
|
#!perl
use 5.010;
use strict;
use warnings;
use Cwd qw(abs_path);
use File::chdir;
use File::Slurp;
use File::Spec;
use Test::More 0.96;
use File::Temp qw(tempdir);
use SHARYANTO::File::Flock;
plan skip_all => 'Not tested on Windows yet' if $^O =~ /win32/i;
my $dir = abs_path(tempdir(CLEANUP=>1));
$CWD = $dir;
subtest "create (unlocked)" => sub {
ok(!(-f "f1"), "f1 doesn't exist before lock");
my $lock = SHARYANTO::File::Flock->lock("f1");
ok((-f "f1"), "f1 exists after lock");
$lock->unlock;
ok(!(-f "f1"), "f1 doesn't exist after unlock");
};
subtest "create (destroyed)" => sub {
ok(!(-f "f1"), "f1 doesn't exist before lock");
my $lock = SHARYANTO::File::Flock->lock("f1");
ok((-f "f1"), "f1 exists after lock");
undef $lock;
ok(!(-f "f1"), "f1 doesn't exist after DESTROY");
};
subtest "already exists" => sub {
write_file("f1", "");
ok((-f "f1"), "f1 exists before lock");
my $lock = SHARYANTO::File::Flock->lock("f1");
ok((-f "f1"), "f1 exists after lock");
undef $lock;
ok((-f "f1"), "f1 still exists after DESTROY");
unlink "f1";
};
subtest "was created, but not empty" => sub {
ok(!(-f "f1"), "f1 doesn't exist before lock");
my $lock = SHARYANTO::File::Flock->lock("f1");
ok((-f "f1"), "f1 exists after lock");
{ open my $f1, ">>", "f1"; print $f1 "a"; close $f1 }
undef $lock;
ok((-f "f1"), "f1 still exists after DESTROY");
};
DONE_TESTING:
done_testing();
if (Test::More->builder->is_passing) {
diag "all tests successful, deleting test data dir";
$CWD = "/";
} else {
# don't delete test data dir if there are errors
diag "there are failing tests, not deleting test data dir $dir";
}
|