summaryrefslogtreecommitdiff
path: root/lib/File
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2012-03-01 00:11:56 +1100
committerTony Cook <tony@develop-help.com>2012-08-24 20:32:12 +1000
commitb306ad7b4bea67081ddb83601fc8bddf296e7905 (patch)
treef4ec2019460c05c0af16c462ae7d869d9a4ef476 /lib/File
parent7bf23f34fc45f13695f6edbbf246135dfad6cfc2 (diff)
downloadperl-b306ad7b4bea67081ddb83601fc8bddf296e7905.tar.gz
rt #111126 - TODO test for copy foo/file to foo/
Diffstat (limited to 'lib/File')
-rw-r--r--lib/File/Copy.t28
1 files changed, 27 insertions, 1 deletions
diff --git a/lib/File/Copy.t b/lib/File/Copy.t
index ffd3d59db7..7975cfecbd 100644
--- a/lib/File/Copy.t
+++ b/lib/File/Copy.t
@@ -14,7 +14,7 @@ use Test::More;
my $TB = Test::More->builder;
-plan tests => 463;
+plan tests => 465;
# We're going to override rename() later on but Perl has to see an override
# at compile time to honor it.
@@ -472,6 +472,32 @@ SKIP: {
close($IN);
}
+use File::Temp qw(tempdir);
+use File::Spec;
+
+SKIP: {
+ local $TODO = "copy foo/file to foo/ overwrites, RT #111126";
+ # RT #111126: File::Copy copy() zeros file when copying a file
+ # into the same directory it is stored in
+
+ my $temp_dir = tempdir( CLEANUP => 1 );
+ my $temp_file = File::Spec->catfile($temp_dir, "somefile");
+
+ open my $fh, ">", $temp_file
+ or skip "Cannot create $temp_file: $!", 2;
+ print $fh "Just some data";
+ close $fh
+ or skip "Cannot close $temp_file: $!", 2;
+
+ my $warn_message = "";
+ local $SIG{__WARN__} = sub { $warn_message .= "@_" };
+ ok(!copy($temp_file, $temp_dir),
+ "Copy of foo/file to foo/ should fail");
+ like($warn_message, qr/^\Q'$temp_file' and '$temp_file'\E are identical.*Copy\.t/,
+ "error message should describe the problem");
+ 1 while unlink $temp_file;
+}
+
END {
1 while unlink "file-$$";
1 while unlink "lib/file-$$";