Commit | Line | Data |
---|---|---|
35ae6b54 MS |
1 | #!./perl -w |
2 | ||
8ea155d1 MS |
3 | BEGIN { |
4 | # We're not going to chdir() into 't' because we don't know if | |
5 | # chdir() works! Instead, we'll hedge our bets and put both | |
6 | # possibilities into @INC. | |
69026470 | 7 | @INC = qw(t . lib ../lib); |
8ea155d1 MS |
8 | } |
9 | ||
58277c14 | 10 | use Config; |
69026470 | 11 | require "test.pl"; |
d4ac975e | 12 | plan(tests => 41); |
8ea155d1 | 13 | |
dc459aad JH |
14 | my $IsVMS = $^O eq 'VMS'; |
15 | my $IsMacOS = $^O eq 'MacOS'; | |
2d6b1654 | 16 | |
55adfc3e NC |
17 | # For an op regression test, I don't want to rely on "use constant" working. |
18 | my $has_fchdir = ($Config{d_fchdir} || "") eq "define"; | |
19 | ||
8ea155d1 MS |
20 | # Might be a little early in the testing process to start using these, |
21 | # but I can't think of a way to write this test without them. | |
58277c14 | 22 | use File::Spec::Functions qw(:DEFAULT splitdir rel2abs splitpath); |
d9c93211 MS |
23 | |
24 | # Can't use Cwd::abs_path() because it has different ideas about | |
d6cdadd4 | 25 | # path separators than File::Spec. |
d9c93211 | 26 | sub abs_path { |
1b76c3e4 JH |
27 | my $d = rel2abs(curdir); |
28 | ||
29 | $d = uc($d) if $IsVMS; | |
30 | $d = lc($d) if $^O =~ /^uwin/; | |
31 | $d; | |
d9c93211 | 32 | } |
8ea155d1 | 33 | |
35ae6b54 | 34 | my $Cwd = abs_path; |
8ea155d1 MS |
35 | |
36 | # Let's get to a known position | |
37 | SKIP: { | |
58277c14 | 38 | my ($vol,$dir) = splitpath(abs_path,1); |
fb7a80d6 MS |
39 | my $test_dir = $IsVMS ? 'T' : 't'; |
40 | skip("Already in t/", 2) if (splitdir($dir))[-1] eq $test_dir; | |
8ea155d1 | 41 | |
fb7a80d6 MS |
42 | ok( chdir($test_dir), 'chdir($test_dir)'); |
43 | is( abs_path, catdir($Cwd, $test_dir), ' abs_path() agrees' ); | |
8ea155d1 MS |
44 | } |
45 | ||
35ae6b54 | 46 | $Cwd = abs_path; |
8ea155d1 | 47 | |
c4aca7d0 | 48 | SKIP: { |
55adfc3e NC |
49 | skip("no fchdir", 9) unless $has_fchdir; |
50 | my $has_dirfd = ($Config{d_dirfd} || "") eq "define"; | |
c4aca7d0 GA |
51 | ok(opendir(my $dh, "."), "opendir ."); |
52 | ok(open(my $fh, "<", "op"), "open op"); | |
53 | ok(chdir($fh), "fchdir op"); | |
54 | ok(-f "chdir.t", "verify that we are in op"); | |
55adfc3e | 55 | if ($has_dirfd) { |
ac49b025 MB |
56 | ok(chdir($dh), "fchdir back"); |
57 | } | |
58 | else { | |
59 | eval { chdir($dh); }; | |
60 | like($@, qr/^The dirfd function is unimplemented at/, "dirfd is unimplemented"); | |
61 | chdir ".."; | |
62 | } | |
d4ac975e GA |
63 | |
64 | # same with bareword file handles | |
65 | no warnings 'once'; | |
66 | *DH = $dh; | |
67 | *FH = $fh; | |
68 | ok(chdir FH, "fchdir op bareword"); | |
69 | ok(-f "chdir.t", "verify that we are in op"); | |
55adfc3e | 70 | if ($has_dirfd) { |
d4ac975e GA |
71 | ok(chdir DH, "fchdir back bareword"); |
72 | } | |
73 | else { | |
74 | eval { chdir(DH); }; | |
75 | like($@, qr/^The dirfd function is unimplemented at/, "dirfd is unimplemented"); | |
76 | chdir ".."; | |
77 | } | |
c4aca7d0 GA |
78 | ok(-d "op", "verify that we are back"); |
79 | } | |
80 | ||
81 | SKIP: { | |
55adfc3e | 82 | skip("has fchdir", 1) if $has_fchdir; |
c4aca7d0 GA |
83 | opendir(my $dh, "op"); |
84 | eval { chdir($dh); }; | |
85 | like($@, qr/^The fchdir function is unimplemented at/, "fchdir is unimplemented"); | |
86 | } | |
87 | ||
8ea155d1 MS |
88 | # The environment variables chdir() pays attention to. |
89 | my @magic_envs = qw(HOME LOGDIR SYS$LOGIN); | |
90 | ||
35ae6b54 MS |
91 | sub check_env { |
92 | my($key) = @_; | |
8ea155d1 | 93 | |
89eee1ed | 94 | # Make sure $ENV{'SYS$LOGIN'} is only honored on VMS. |
dc459aad | 95 | if( $key eq 'SYS$LOGIN' && !$IsVMS && !$IsMacOS ) { |
35ae6b54 MS |
96 | ok( !chdir(), "chdir() on $^O ignores only \$ENV{$key} set" ); |
97 | is( abs_path, $Cwd, ' abs_path() did not change' ); | |
d6cdadd4 | 98 | pass( " no need to test SYS\$LOGIN on $^O" ) for 1..7; |
8ea155d1 MS |
99 | } |
100 | else { | |
89eee1ed | 101 | ok( chdir(), "chdir() w/ only \$ENV{$key} set" ); |
8ea155d1 | 102 | is( abs_path, $ENV{$key}, ' abs_path() agrees' ); |
35ae6b54 MS |
103 | chdir($Cwd); |
104 | is( abs_path, $Cwd, ' and back again' ); | |
105 | ||
106 | my $warning = ''; | |
107 | local $SIG{__WARN__} = sub { $warning .= join '', @_ }; | |
108 | ||
8ea155d1 | 109 | |
35ae6b54 | 110 | # Check the deprecated chdir(undef) feature. |
fb7a80d6 | 111 | #line 64 |
35ae6b54 MS |
112 | ok( chdir(undef), "chdir(undef) w/ only \$ENV{$key} set" ); |
113 | is( abs_path, $ENV{$key}, ' abs_path() agrees' ); | |
114 | is( $warning, <<WARNING, ' got uninit & deprecation warning' ); | |
fb7a80d6 MS |
115 | Use of uninitialized value in chdir at $0 line 64. |
116 | Use of chdir('') or chdir(undef) as chdir() is deprecated at $0 line 64. | |
35ae6b54 | 117 | WARNING |
8ea155d1 | 118 | |
35ae6b54 MS |
119 | chdir($Cwd); |
120 | ||
121 | # Ditto chdir(''). | |
122 | $warning = ''; | |
fb7a80d6 | 123 | #line 76 |
35ae6b54 MS |
124 | ok( chdir(''), "chdir('') w/ only \$ENV{$key} set" ); |
125 | is( abs_path, $ENV{$key}, ' abs_path() agrees' ); | |
126 | is( $warning, <<WARNING, ' got deprecation warning' ); | |
fb7a80d6 | 127 | Use of chdir('') or chdir(undef) as chdir() is deprecated at $0 line 76. |
35ae6b54 MS |
128 | WARNING |
129 | ||
130 | chdir($Cwd); | |
131 | } | |
8ea155d1 MS |
132 | } |
133 | ||
fb7a80d6 | 134 | my %Saved_Env = (); |
d6cdadd4 | 135 | sub clean_env { |
fb7a80d6 MS |
136 | foreach my $env (@magic_envs) { |
137 | $Saved_Env{$env} = $ENV{$env}; | |
138 | ||
139 | # Can't actually delete SYS$ stuff on VMS. | |
140 | next if $IsVMS && $env eq 'SYS$LOGIN'; | |
141 | next if $IsVMS && $env eq 'HOME' && !$Config{'d_setenv'}; | |
142 | ||
dc459aad JH |
143 | unless ($IsMacOS) { # ENV on MacOS is "special" :-) |
144 | # On VMS, %ENV is many layered. | |
145 | delete $ENV{$env} while exists $ENV{$env}; | |
146 | } | |
58277c14 | 147 | } |
fb7a80d6 | 148 | |
d6cdadd4 CB |
149 | # The following means we won't really be testing for non-existence, |
150 | # but in Perl we can only delete from the process table, not the job | |
151 | # table. | |
152 | $ENV{'SYS$LOGIN'} = '' if $IsVMS; | |
153 | } | |
154 | ||
fb7a80d6 MS |
155 | END { |
156 | no warnings 'uninitialized'; | |
157 | ||
158 | # Restore the environment for VMS (and doesn't hurt for anyone else) | |
159 | @ENV{@magic_envs} = @Saved_Env{@magic_envs}; | |
16ed4686 JM |
160 | |
161 | # On VMS this must be deleted or process table is wrong on exit | |
162 | # when this script is run interactively. | |
163 | delete $ENV{'SYS$LOGIN'} if $IsVMS; | |
fb7a80d6 MS |
164 | } |
165 | ||
166 | ||
35ae6b54 | 167 | foreach my $key (@magic_envs) { |
8ea155d1 MS |
168 | # We're going to be using undefs a lot here. |
169 | no warnings 'uninitialized'; | |
170 | ||
d6cdadd4 | 171 | clean_env; |
9d4c144b | 172 | $ENV{$key} = catdir $Cwd, ($IsVMS ? 'OP' : 'op'); |
58277c14 | 173 | |
35ae6b54 MS |
174 | check_env($key); |
175 | } | |
176 | ||
177 | { | |
d6cdadd4 | 178 | clean_env; |
dc459aad | 179 | if (($IsVMS || $IsMacOS) && !$Config{'d_setenv'}) { |
58277c14 JH |
180 | pass("Can't reset HOME, so chdir() test meaningless"); |
181 | } else { | |
182 | ok( !chdir(), 'chdir() w/o any ENV set' ); | |
183 | } | |
35ae6b54 | 184 | is( abs_path, $Cwd, ' abs_path() agrees' ); |
8ea155d1 | 185 | } |