#!./perl
BEGIN {
- chdir 't' if -d 't';
- @INC = '../lib';
+ if( $ENV{PERL_CORE} ) {
+ chdir 't' if -d 't';
+ @INC = '../lib';
+ }
}
use Test::More;
)
{
eval $code;
- like $@, qr/^Usage: /;
+ like $@, qr/^Usage: /, "'$code' is a usage error";
}
$foo = <F>;
close(F);
- is -s "file-$$", -s "copy-$$";
+ is -s "file-$$", -s "copy-$$", 'copy(fn, fn): files of the same size';
- is $foo, "ok\n";
+ is $foo, "ok\n", 'copy(fn, fn): same contents';
+ print("# next test checks copying to STDOUT\n");
binmode STDOUT unless $^O eq 'VMS'; # Copy::copy works in binary mode
# This outputs "ok" so its a test.
copy "copy-$$", \*STDOUT;
open(F,"file-$$");
copy(*F, "copy-$$");
open(R, "copy-$$") or die "open copy-$$: $!"; $foo = <R>; close(R);
- is $foo, "ok\n";
+ is $foo, "ok\n", 'copy(*F, fn): same contents';
unlink "copy-$$" or die "unlink: $!";
open(F,"file-$$");
copy(\*F, "copy-$$");
close(F) or die "close: $!";
open(R, "copy-$$") or die; $foo = <R>; close(R) or die "close: $!";
- is $foo, "ok\n";
+ is $foo, "ok\n", 'copy(\*F, fn): same contents';
unlink "copy-$$" or die "unlink: $!";
require IO::File;
copy("file-$$",$fh);
$fh->close or die "close: $!";
open(R, "copy-$$") or die; $foo = <R>; close(R);
- is $foo, "ok\n";
+ is $foo, "ok\n", 'copy(fn, io): same contents';
unlink "copy-$$" or die "unlink: $!";
require FileHandle;
copy("file-$$",$fh);
$fh->close;
open(R, "copy-$$") or die; $foo = <R>; close(R);
- is $foo, "ok\n";
+ is $foo, "ok\n", 'copy(fn, fh): same contents';
unlink "file-$$" or die "unlink: $!";
ok !move("file-$$", "copy-$$"), "move on missing file";
ok -e "file-$$", ' destination exists';
ok !-e "copy-$$", ' source does not';
open(R, "file-$$") or die; $foo = <R>; close(R);
- is $foo, "ok\n";
+ is $foo, "ok\n", 'contents preserved';
TODO: {
local $TODO = 'mtime only preserved on ODS-5 with POSIX dates and DECC$EFS_FILE_TIMESTAMPS enabled' if $^O eq 'VMS';
($cross_partition_test ? " while testing cross-partition" : "");
}
+ # trick: create lib/ if not exists - not needed in Perl core
+ unless (-d 'lib') { mkdir 'lib' or die; }
copy "file-$$", "lib";
- open(R, "lib/file-$$") or die; $foo = <R>; close(R);
- is $foo, "ok\n";
+ open(R, "lib/file-$$") or die $!; $foo = <R>; close(R);
+ is $foo, "ok\n", 'copy(fn, dir): same contents';
unlink "lib/file-$$" or die "unlink: $!";
# Do it twice to ensure copying over the same file works.
copy "file-$$", "lib";
open(R, "lib/file-$$") or die; $foo = <R>; close(R);
- is $foo, "ok\n";
+ is $foo, "ok\n", 'copy over the same file works';
unlink "lib/file-$$" or die "unlink: $!";
{
my $warnings = '';
local $SIG{__WARN__} = sub { $warnings .= join '', @_ };
- ok copy("file-$$", "file-$$");
+ ok copy("file-$$", "file-$$"), 'copy(fn, fn) succeeds';
- like $warnings, qr/are identical/;
- ok -s "file-$$";
+ like $warnings, qr/are identical/, 'but warns';
+ ok -s "file-$$", 'contents preserved';
}
move "file-$$", "lib";
open(R, "lib/file-$$") or die "open lib/file-$$: $!"; $foo = <R>; close(R);
- is $foo, "ok\n";
- ok !-e "file-$$";
+ is $foo, "ok\n", 'move(fn, dir): same contents';
+ ok !-e "file-$$", 'file moved indeed';
unlink "lib/file-$$" or die "unlink: $!";
SKIP: {
my $warnings = '';
local $SIG{__WARN__} = sub { $warnings .= join '', @_ };
- ok !copy("file-$$", "symlink-$$");
+ ok !copy("file-$$", "symlink-$$"), 'copy to itself (via symlink) fails';
- like $warnings, qr/are identical/;
+ like $warnings, qr/are identical/, 'emits a warning';
ok !-z "file-$$",
'rt.perl.org 5196: copying to itself would truncate the file';
}
SKIP: {
- skip "Testing hard links", 3 if !$Config{d_link} or $^O eq 'MSWin32';
+ skip "Testing hard links", 3
+ if !$Config{d_link} or $^O eq 'MSWin32' or $^O eq 'cygwin';
open(F, ">file-$$") or die $!;
print F "dummy content\n";
my $warnings = '';
local $SIG{__WARN__} = sub { $warnings .= join '', @_ };
- ok !copy("file-$$", "hardlink-$$");
+ ok !copy("file-$$", "hardlink-$$"), 'copy to itself (via hardlink) fails';
- like $warnings, qr/are identical/;
+ like $warnings, qr/are identical/, 'emits a warning';
ok ! -z "file-$$",
'rt.perl.org 5196: copying to itself would truncate the file';