This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade to CGI.pm 3.04.
[perl5.git] / ext / Cwd / t / cwd.t
CommitLineData
5aa08720 1#!./perl
ed4a5f99 2
a9939470 3use Cwd;
ed4a5f99
BS
4BEGIN {
5 chdir 't' if -d 't';
ed4a5f99
BS
6}
7
8use Config;
ed4a5f99
BS
9use strict;
10use warnings;
e69a2255 11use File::Spec;
1279e177 12use File::Path;
ed4a5f99 13
ad78113d 14use Test::More tests => 20;
ca7ced35
MS
15
16my $IsVMS = $^O eq 'VMS';
e69a2255 17my $IsMacOS = $^O eq 'MacOS';
ed4a5f99
BS
18
19# check imports
ca7ced35
MS
20can_ok('main', qw(cwd getcwd fastcwd fastgetcwd));
21ok( !defined(&chdir), 'chdir() not exported by default' );
22ok( !defined(&abs_path), ' nor abs_path()' );
23ok( !defined(&fast_abs_path), ' nor fast_abs_path()');
24
ed4a5f99 25
0d2079fa
BS
26# XXX force Cwd to bootsrap its XSUBs since we have set @INC = "../lib"
27# XXX and subsequent chdir()s can make them impossible to find
28eval { fastcwd };
29
da3f15f4
JH
30# Must find an external pwd (or equivalent) command.
31
38f52085 32my $pwd = $^O eq 'MSWin32' ? "cmd" : "pwd";
da3f15f4 33my $pwd_cmd =
38f52085 34 ($^O eq "NetWare") ?
023b4a43 35 "cd" :
e69a2255
JH
36 ($IsMacOS) ?
37 "pwd" :
38f52085 38 (grep { -x && -f } map { "$_/$pwd$Config{exe_ext}" }
023b4a43 39 split m/$Config{path_sep}/, $ENV{PATH})[0];
da3f15f4 40
ca7ced35 41$pwd_cmd = 'SHOW DEFAULT' if $IsVMS;
38f52085
GS
42if ($^O eq 'MSWin32') {
43 $pwd_cmd =~ s,/,\\,g;
44 $pwd_cmd = "$pwd_cmd /c cd";
45}
e8f7eed0
JH
46$pwd_cmd =~ s=\\=/=g if ($^O eq 'dos');
47
ca7ced35
MS
48SKIP: {
49 skip "No native pwd command found to test against", 4 unless $pwd_cmd;
2390ecbc 50
d80cbc32
JH
51 print "# native pwd = '$pwd_cmd'\n";
52
926cbafe
JH
53 local @ENV{qw(PATH IFS CDPATH ENV BASH_ENV)};
54 my ($pwd_cmd_untainted) = $pwd_cmd =~ /^(.+)$/; # Untaint.
55 chomp(my $start = `$pwd_cmd_untainted`);
56
14107c42 57 # Win32's cd returns native C:\ style
2986a63f 58 $start =~ s,\\,/,g if ($^O eq 'MSWin32' || $^O eq "NetWare");
2390ecbc 59 # DCL SHOW DEFAULT has leading spaces
ca7ced35
MS
60 $start =~ s/^\s+// if $IsVMS;
61 SKIP: {
12b7537a
JH
62 skip("'$pwd_cmd' failed, nothing to test against", 4) if $?;
63 skip("/afs seen, paths unlikely to match", 4) if $start =~ m|/afs/|;
ca7ced35 64
164336fe
JH
65 # Darwin's getcwd(3) (which Cwd.xs:bsd_realpath() uses which
66 # Cwd.pm:getcwd uses) has some magic related to the PWD
67 # environment variable: if PWD is set to a directory that
68 # looks about right (guess: has the same (dev,ino) as the '.'?),
69 # the PWD is returned. However, if that path contains
70 # symlinks, the path will not be equal to the one returned by
71 # /bin/pwd (which probably uses the usual walking upwards in
72 # the path -trick). This situation is easy to reproduce since
73 # /tmp is a symlink to /private/tmp. Therefore we invalidate
74 # the PWD to force getcwd(3) to (re)compute the cwd in full.
75 # Admittedly fixing this in the Cwd module would be better
76 # long-term solution but deleting $ENV{PWD} should not be
77 # done light-heartedly. --jhi
78 delete $ENV{PWD} if $^O eq 'darwin';
79
da3f15f4
JH
80 my $cwd = cwd;
81 my $getcwd = getcwd;
82 my $fastcwd = fastcwd;
83 my $fastgetcwd = fastgetcwd;
12b7537a 84
1c26fec0
JH
85 is($cwd, $start, 'cwd()');
86 is($getcwd, $start, 'getcwd()');
87 is($fastcwd, $start, 'fastcwd()');
88 is($fastgetcwd, $start, 'fastgetcwd()');
da3f15f4
JH
89 }
90}
91
b86ce628
KW
92my @test_dirs = qw{_ptrslt_ _path_ _to_ _a_ _dir_};
93my $Test_Dir = File::Spec->catdir(@test_dirs);
ca7ced35 94
889f7a4f
RGS
95mkpath([$Test_Dir], 0, 0777);
96Cwd::chdir $Test_Dir;
ca7ced35 97
ad78113d
RGS
98foreach my $func (qw(cwd getcwd fastcwd fastgetcwd)) {
99 my $result = eval "$func()";
100 is $@, '';
b86ce628 101 dir_ends_with( $result, $Test_Dir, "$func()" );
ad78113d 102}
ed4a5f99
BS
103
104# Cwd::chdir should also update $ENV{PWD}
b86ce628 105dir_ends_with( $ENV{PWD}, $Test_Dir, 'Cwd::chdir() updates $ENV{PWD}' );
e69a2255
JH
106my $updir = File::Spec->updir;
107Cwd::chdir $updir;
14107c42 108print "#$ENV{PWD}\n";
e69a2255 109Cwd::chdir $updir;
14107c42 110print "#$ENV{PWD}\n";
e69a2255 111Cwd::chdir $updir;
14107c42 112print "#$ENV{PWD}\n";
e69a2255 113Cwd::chdir $updir;
14107c42 114print "#$ENV{PWD}\n";
e69a2255 115Cwd::chdir $updir;
14107c42 116print "#$ENV{PWD}\n";
1279e177 117
b86ce628 118rmtree($test_dirs[0], 0, 0);
1279e177 119
889f7a4f
RGS
120{
121 my $check = ($IsVMS ? qr|\b((?i)t)\]$| :
122 $IsMacOS ? qr|\bt:$| :
123 qr|\bt$| );
124
125 like($ENV{PWD}, $check);
2390ecbc 126}
ed4a5f99 127
ca7ced35
MS
128SKIP: {
129 skip "no symlinks on this platform", 2 unless $Config{d_symlink};
130
131 mkpath([$Test_Dir], 0, 0777);
132 symlink $Test_Dir => "linktest";
7040f5d5
BS
133
134 my $abs_path = Cwd::abs_path("linktest");
135 my $fast_abs_path = Cwd::fast_abs_path("linktest");
16398b42 136 my $want = File::Spec->catdir("t", $Test_Dir);
7040f5d5 137
ca7ced35
MS
138 like($abs_path, qr|$want$|);
139 like($fast_abs_path, qr|$want$|);
7040f5d5 140
b86ce628 141 rmtree($test_dirs[0], 0, 0);
7040f5d5 142 unlink "linktest";
ed4a5f99 143}
b86ce628
KW
144
145#############################################
146# These two routines give us sort of a poor-man's cross-platform
147# directory comparison routine.
148
149sub bracketed_form {
150 return join '', map "[$_]",
151 grep length, File::Spec->splitdir(File::Spec->canonpath( shift() ));
152}
153
154sub dir_ends_with {
155 my ($dir, $expect) = (shift, shift);
156 my $bracketed_expect = quotemeta bracketed_form($expect);
157 like( bracketed_form($dir), qr|$bracketed_expect$|i, (@_ ? shift : ()) );
158}
159