use
5.008001;
my
$dir
= Path::Tiny->tempdir;
my
$file1a
=
$dir
->child(
"file1b.txt"
);
my
$file1b
=
$dir
->child(
"file1a.txt"
);
for
my
$f
(
$file1a
,
$file1b
) {
$f
->spew(
"hello world"
);
}
my
$file2
=
$dir
->child(
"file2.txt"
);
$file2
->spew(
"goodbye world"
);
my
$subdir
=
$dir
->child(
"subdir"
);
$subdir
->
mkdir
;
subtest
"only files"
=>
sub
{
ok(
$file1a
->has_same_bytes(
$file1a
),
"same file"
);
ok(
$file1a
->has_same_bytes(
$file1b
),
"different files, same contents"
);
ok( !
$file1a
->has_same_bytes(
$file2
),
"different files, different contents"
);
};
subtest
"symlinks"
=>
sub
{
plan
skip_all
=>
"No symlink support"
unless
has_symlinks();
my
$file1c
=
$dir
->child(
"file1c.txt"
);
symlink
"$file1a"
=>
"$file1c"
;
ok(
$file1a
->has_same_bytes(
$file1c
),
"file compared to self symlink"
);
ok(
$file1c
->has_same_bytes(
$file1a
),
"self symlink compared to file"
);
};
subtest
"exception"
=>
sub
{
my
$doesnt_exist
=
$dir
->child(
"doesnt_exist.txt"
);
ok( exception {
$file1a
->has_same_bytes(
$doesnt_exist
) },
"file->has_same_bytes(doesnt_exist)"
);
ok( exception {
$doesnt_exist
->has_same_bytes(
$file1a
) },
"doesnt_exist->has_same_bytes(file)"
);
ok( exception {
$file1a
->has_same_bytes(
$subdir
) },
"file->has_same_bytes(dir)"
);
ok( exception {
$subdir
->has_same_bytes(
$file1a
) },
"dir->has_same_bytes(file)"
);
ok( exception {
$subdir
->has_same_bytes(
$subdir
) },
"dir->has_same_bytes(dir)"
);
ok( exception {
$subdir
->has_same_bytes(
$dir
) },
"dir->has_same_bytes(different_dir)"
);
};
done_testing;