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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
#!./perl
BEGIN {
chdir 't' if -d 't';
@INC = '../lib';
}
$| = 1;
my @pass = (0,1);
my $tests = 11;
printf "1..%d\n", $tests * scalar(@pass);
use File::Copy;
for my $pass (@pass) {
require File::Copy;
my $loopconst = $pass*$tests;
# First we create a file
open(F, ">file-$$") or die;
binmode F; # for DOSISH platforms, because test 3 copies to stdout
printf F "ok %d\n", 3 + $loopconst;
close F;
copy "file-$$", "copy-$$";
open(F, "copy-$$") or die;
$foo = <F>;
close(F);
print "not " if -s "file-$$" != -s "copy-$$";
printf "ok %d\n", 1 + $loopconst;
print "not " unless $foo eq sprintf "ok %d\n", 3+$loopconst;
printf "ok %d\n", 2+$loopconst;
binmode STDOUT unless $^O eq 'VMS'; # Copy::copy works in binary mode
copy "copy-$$", \*STDOUT;
unlink "copy-$$" or die "unlink: $!";
open(F,"file-$$");
copy(*F, "copy-$$");
open(R, "copy-$$") or die "open copy-$$: $!"; $foo = <R>; close(R);
print "not " unless $foo eq sprintf "ok %d\n", 3+$loopconst;
printf "ok %d\n", 4+$loopconst;
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: $!";
print "not " unless $foo eq sprintf "ok %d\n", 3+$loopconst;
printf "ok %d\n", 5+$loopconst;
unlink "copy-$$" or die "unlink: $!";
require IO::File;
$fh = IO::File->new(">copy-$$") or die "Cannot open copy-$$:$!";
binmode $fh or die;
copy("file-$$",$fh);
$fh->close or die "close: $!";
open(R, "copy-$$") or die; $foo = <R>; close(R);
print "# foo=`$foo'\nnot " unless $foo eq sprintf "ok %d\n", 3+$loopconst;
printf "ok %d\n", 6+$loopconst;
unlink "copy-$$" or die "unlink: $!";
require FileHandle;
my $fh = FileHandle->new(">copy-$$") or die "Cannot open copy-$$:$!";
binmode $fh or die;
copy("file-$$",$fh);
$fh->close;
open(R, "copy-$$") or die; $foo = <R>; close(R);
print "not " unless $foo eq sprintf "ok %d\n", 3+$loopconst;
printf "ok %d\n", 7+$loopconst;
unlink "file-$$" or die "unlink: $!";
print "# moved missing file.\nnot " if move("file-$$", "copy-$$");
print "# target disappeared.\nnot " if not -e "copy-$$";
printf "ok %d\n", 8+$loopconst;
move "copy-$$", "file-$$" or print "# move did not succeed.\n";
print "# not moved: $!\nnot " unless -e "file-$$" and not -e "copy-$$";
open(R, "file-$$") or die; $foo = <R>; close(R);
print "# foo=`$foo'\nnot " unless $foo eq sprintf "ok %d\n", 3+$loopconst;
printf "ok %d\n", 9+$loopconst;
copy "file-$$", "lib";
open(R, "lib/file-$$") or die; $foo = <R>; close(R);
print "not " unless $foo eq sprintf "ok %d\n", 3+$loopconst;
printf "ok %d\n", 10+$loopconst;
unlink "lib/file-$$" or die "unlink: $!";
move "file-$$", "lib";
open(R, "lib/file-$$") or die "open lib/file-$$: $!"; $foo = <R>; close(R);
print "not " unless $foo eq sprintf("ok %d\n", 3+$loopconst)
and not -e "file-$$";;
printf "ok %d\n", 11+$loopconst;
unlink "lib/file-$$" or die "unlink: $!";
# warn sprintf "INC->".$INC{"File/Copy.pm"};
delete $INC{"File/Copy.pm"};
}
END {
1 while unlink "file-$$";
1 while unlink "lib/file-$$";
}
|