This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix warning.
[perl5.git] / lib / ExtUtils / t / eu_command.t
1 #!/usr/bin/perl -w
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't';
6         @INC = ('../lib', 'lib/');
7     }
8     else {
9         unshift @INC, 't/lib/';
10     }
11 }
12 chdir 't';
13
14 BEGIN {
15     $Testfile = 'testfile.foo';
16 }
17
18 BEGIN {
19     1 while unlink $Testfile, 'newfile';
20     # forcibly remove ecmddir/temp2, but don't import mkpath
21     use File::Path ();
22     File::Path::rmtree( 'ecmddir' );
23 }
24
25 BEGIN {
26     use Test::More tests => 41;
27     use File::Spec;
28 }
29
30 BEGIN {
31     # bad neighbor, but test_f() uses exit()
32     *CORE::GLOBAL::exit = '';   # quiet 'only once' warning.
33     *CORE::GLOBAL::exit = sub (;$) { return $_[0] };
34     use_ok( 'ExtUtils::Command' );
35 }
36
37 {
38     # concatenate this file with itself
39     # be extra careful the regex doesn't match itself
40     use TieOut;
41     my $out = tie *STDOUT, 'TieOut';
42     my $self = $0;
43     unless (-f $self) {
44         my ($vol, $dirs, $file) = File::Spec->splitpath($self);
45         my @dirs = File::Spec->splitdir($dirs);
46         unshift(@dirs, File::Spec->updir);
47         $dirs = File::Spec->catdir(@dirs);
48         $self = File::Spec->catpath($vol, $dirs, $file);
49     }
50     @ARGV = ($self, $self);
51
52     cat();
53     is( scalar( $$out =~ s/use_ok\( 'ExtUtils::Command'//g), 2, 
54         'concatenation worked' );
55
56     # the truth value here is reversed -- Perl true is shell false
57     @ARGV = ( $Testfile );
58     is( test_f(), 1, 'testing non-existent file' );
59
60     @ARGV = ( $Testfile );
61     is( ! test_f(), '', 'testing non-existent file' );
62
63     # these are destructive, have to keep setting @ARGV
64     @ARGV = ( $Testfile );
65     touch();
66
67     @ARGV = ( $Testfile );
68     is( test_f(), 0, 'testing touch() and test_f()' );
69     is_deeply( \@ARGV, [$Testfile], 'test_f preserves @ARGV' );
70
71     @ARGV = ( $Testfile );
72     ok( -e $ARGV[0], 'created!' );
73
74     my ($now) = time;
75     utime ($now, $now, $ARGV[0]);
76     sleep 2;
77
78     # Just checking modify time stamp, access time stamp is set
79     # to the beginning of the day in Win95.
80     # There's a small chance of a 1 second flutter here.
81     my $stamp = (stat($ARGV[0]))[9];
82     cmp_ok( abs($now - $stamp), '<=', 1, 'checking modify time stamp' ) ||
83       diag "mtime == $stamp, should be $now";
84
85     @ARGV = qw(newfile);
86     touch();
87
88     my $new_stamp = (stat('newfile'))[9];
89     cmp_ok( abs($new_stamp - $stamp), '>=', 2,  'newer file created' );
90
91     @ARGV = ('newfile', $Testfile);
92     eqtime();
93
94     $stamp = (stat($Testfile))[9];
95     cmp_ok( abs($new_stamp - $stamp), '<=', 1, 'eqtime' );
96
97     # eqtime use to clear the contents of the file being equalized!
98     open(FILE, ">>$Testfile") || die $!;
99     print FILE "Foo";
100     close FILE;
101
102     @ARGV = ('newfile', $Testfile);
103     eqtime();
104     ok( -s $Testfile, "eqtime doesn't clear the file being equalized" );
105
106     SKIP: {
107         if ($^O eq 'amigaos' || $^O eq 'os2' || $^O eq 'MSWin32' ||
108             $^O eq 'NetWare' || $^O eq 'dos' || $^O eq 'cygwin'  ||
109             $^O eq 'MacOS'
110            ) {
111             skip( "different file permission semantics on $^O", 3);
112         }
113
114         # change a file to execute-only
115         @ARGV = ( '0100', $Testfile );
116         ExtUtils::Command::chmod();
117
118         is( ((stat($Testfile))[2] & 07777) & 0700,
119             0100, 'change a file to execute-only' );
120
121         # change a file to read-only
122         @ARGV = ( '0400', $Testfile );
123         ExtUtils::Command::chmod();
124
125         is( ((stat($Testfile))[2] & 07777) & 0700,
126             ($^O eq 'vos' ? 0500 : 0400), 'change a file to read-only' );
127
128         # change a file to write-only
129         @ARGV = ( '0200', $Testfile );
130         ExtUtils::Command::chmod();
131
132         is( ((stat($Testfile))[2] & 07777) & 0700,
133             ($^O eq 'vos' ? 0700 : 0200), 'change a file to write-only' );
134     }
135
136     # change a file to read-write
137     @ARGV = ( '0600', $Testfile );
138     my @orig_argv = @ARGV;
139     ExtUtils::Command::chmod();
140     is_deeply( \@ARGV, \@orig_argv, 'chmod preserves @ARGV' );
141
142     is( ((stat($Testfile))[2] & 07777) & 0700,
143         ($^O eq 'vos' ? 0700 : 0600), 'change a file to read-write' );
144
145
146     SKIP: {
147         if ($^O eq 'amigaos' || $^O eq 'os2' || $^O eq 'MSWin32' ||
148             $^O eq 'NetWare' || $^O eq 'dos' || $^O eq 'cygwin'  ||
149             $^O eq 'MacOS'
150            ) {
151             skip( "different file permission semantics on $^O", 5);
152         }
153
154         @ARGV = ('testdir');
155         mkpath;
156         ok( -e 'testdir' );
157
158         # change a dir to execute-only
159         @ARGV = ( '0100', 'testdir' );
160         ExtUtils::Command::chmod();
161
162         is( ((stat('testdir'))[2] & 07777) & 0700,
163             0100, 'change a dir to execute-only' );
164
165         # change a dir to read-only
166         @ARGV = ( '0400', 'testdir' );
167         ExtUtils::Command::chmod();
168
169         is( ((stat('testdir'))[2] & 07777) & 0700,
170             ($^O eq 'vos' ? 0500 : 0400), 'change a dir to read-only' );
171
172         # change a dir to write-only
173         @ARGV = ( '0200', 'testdir' );
174         ExtUtils::Command::chmod();
175
176         is( ((stat('testdir'))[2] & 07777) & 0700,
177             ($^O eq 'vos' ? 0700 : 0200), 'change a dir to write-only' );
178
179         @ARGV = ('testdir');
180         rm_rf;
181         ok( ! -e 'testdir', 'rm_rf can delete a read-only dir' );
182     }
183
184
185     # mkpath
186     my $test_dir = File::Spec->join( 'ecmddir', 'temp2' );
187     @ARGV = ( $test_dir );
188     ok( ! -e $ARGV[0], 'temp directory not there yet' );
189     is( test_d(), 1, 'testing non-existent directory' );
190
191     @ARGV = ( $test_dir );
192     mkpath();
193     ok( -e $ARGV[0], 'temp directory created' );
194     is( test_d(), 0, 'testing existing dir' );
195
196     @ARGV = ( $test_dir );
197     # copy a file to a nested subdirectory
198     unshift @ARGV, $Testfile;
199     @orig_argv = @ARGV;
200     cp();
201     is_deeply( \@ARGV, \@orig_argv, 'cp preserves @ARGV' );
202
203     ok( -e File::Spec->join( 'ecmddir', 'temp2', $Testfile ), 'copied okay' );
204
205     # cp should croak if destination isn't directory (not a great warning)
206     @ARGV = ( $Testfile ) x 3;
207     eval { cp() };
208
209     like( $@, qr/Too many arguments/, 'cp croaks on error' );
210
211     # move a file to a subdirectory
212     @ARGV = ( $Testfile, 'ecmddir' );
213     @orig_argv = @ARGV;
214     ok( mv() );
215     is_deeply( \@ARGV, \@orig_argv, 'mv preserves @ARGV' );
216
217     ok( ! -e $Testfile, 'moved file away' );
218     ok( -e File::Spec->join( 'ecmddir', $Testfile ), 'file in new location' );
219
220     # mv should also croak with the same wacky warning
221     @ARGV = ( $Testfile ) x 3;
222
223     eval { mv() };
224     like( $@, qr/Too many arguments/, 'mv croaks on error' );
225
226     # Test expand_wildcards()
227     {
228         my $file = $Testfile;
229         @ARGV = ();
230         chdir 'ecmddir';
231
232         # % means 'match one character' on VMS.  Everything else is ?
233         my $match_char = $^O eq 'VMS' ? '%' : '?';
234         ($ARGV[0] = $file) =~ s/.\z/$match_char/;
235
236         # this should find the file
237         ExtUtils::Command::expand_wildcards();
238
239         is_deeply( \@ARGV, [$file], 'expanded wildcard ? successfully' );
240
241         # try it with the asterisk now
242         ($ARGV[0] = $file) =~ s/.{3}\z/\*/;
243         ExtUtils::Command::expand_wildcards();
244
245         is_deeply( \@ARGV, [$file], 'expanded wildcard * successfully' );
246
247         chdir File::Spec->updir;
248     }
249
250     # remove some files
251     my @files = @ARGV = ( File::Spec->catfile( 'ecmddir', $Testfile ),
252     File::Spec->catfile( 'ecmddir', 'temp2', $Testfile ) );
253     rm_f();
254
255     ok( ! -e $_, "removed $_ successfully" ) for (@ARGV);
256
257     # rm_f dir
258     @ARGV = my $dir = File::Spec->catfile( 'ecmddir' );
259     rm_rf();
260     ok( ! -e $dir, "removed $dir successfully" );
261 }
262
263 {
264     { local @ARGV = 'd2utest'; mkpath; }
265     open(FILE, '>d2utest/foo');
266     binmode(FILE);
267     print FILE "stuff\015\012and thing\015\012";
268     close FILE;
269
270     open(FILE, '>d2utest/bar');
271     binmode(FILE);
272     my $bin = "\c@\c@\c@\c@\c@\c@\cA\c@\c@\c@\015\012".
273               "\@\c@\cA\c@\c@\c@8__LIN\015\012";
274     print FILE $bin;
275     close FILE;
276
277     local @ARGV = 'd2utest';
278     ExtUtils::Command::dos2unix();
279
280     open(FILE, 'd2utest/foo');
281     is( join('', <FILE>), "stuff\012and thing\012", 'dos2unix' );
282     close FILE;
283
284     open(FILE, 'd2utest/bar');
285     binmode(FILE);
286     ok( -B 'd2utest/bar' );
287     is( join('', <FILE>), $bin, 'dos2unix preserves binaries');
288     close FILE;
289 }
290
291 END {
292     1 while unlink $Testfile, 'newfile';
293     File::Path::rmtree( 'ecmddir' );
294     File::Path::rmtree( 'd2utest' );
295 }