Implement Hash/Array ~~ Regex (with tests)
[p5sagit/p5-mst-13.2.git] / t / run / runenv.t
CommitLineData
4ea8f8fb 1#!./perl
2#
3# Tests for Perl run-time environment variable settings
4#
5# $PERL5OPT, $PERL5LIB, etc.
6
7BEGIN {
8 chdir 't' if -d 't';
9 @INC = '../lib';
e069d1ca 10 require Config; import Config;
27dd2420 11 unless ($Config{'d_fork'}) {
12 print "1..0 # Skip: no fork\n";
13 exit 0;
14 }
16570ae7 15 require './test.pl'
4ea8f8fb 16}
17
2b622f1a 18plan tests => 76;
659ca9ea 19
2d90ac95 20my $STDOUT = tempfile();
21my $STDERR = tempfile();
c8d62b71 22my $PERL = $ENV{PERL} || './perl';
4ea8f8fb 23my $FAILURE_CODE = 119;
24
a0704631 25delete $ENV{PERLLIB};
26delete $ENV{PERL5LIB};
27delete $ENV{PERL5OPT};
28
4ea8f8fb 29
d5226c4c 30sub runperl_and_capture {
31 local *F;
32 my ($env, $args) = @_;
4ea8f8fb 33 unshift @$args, '-I../lib';
34
cd4e750a 35 local %ENV = %ENV;
36 delete $ENV{PERLLIB};
37 delete $ENV{PERL5LIB};
38 delete $ENV{PERL5OPT};
4ea8f8fb 39 my $pid = fork;
40 return (0, "Couldn't fork: $!") unless defined $pid; # failure
41 if ($pid) { # parent
42 my ($actual_stdout, $actual_stderr);
43 wait;
44 return (0, "Failure in child.\n") if ($?>>8) == $FAILURE_CODE;
45
46 open F, "< $STDOUT" or return (0, "Couldn't read $STDOUT file");
47 { local $/; $actual_stdout = <F> }
48 open F, "< $STDERR" or return (0, "Couldn't read $STDERR file");
49 { local $/; $actual_stderr = <F> }
50
d5226c4c 51 return ($actual_stdout, $actual_stderr);
4ea8f8fb 52 } else { # child
53 for my $k (keys %$env) {
54 $ENV{$k} = $env->{$k};
55 }
56 open STDOUT, "> $STDOUT" or exit $FAILURE_CODE;
57 open STDERR, "> $STDERR" or it_didnt_work();
58 { exec $PERL, @$args }
59 it_didnt_work();
60 }
61}
62
d5226c4c 63# Run perl with specified environment and arguments returns a list.
64# First element is true if Perl's stdout and stderr match the
65# supplied $stdout and $stderr argument strings exactly.
66# second element is an explanation of the failure
67sub runperl {
68 local *F;
69 my ($env, $args, $stdout, $stderr) = @_;
70 my ($actual_stdout, $actual_stderr) = runperl_and_capture($env, $args);
71 if ($actual_stdout ne $stdout) {
72 return (0, "Stdout mismatch: expected [$stdout], saw [$actual_stdout]");
73 } elsif ($actual_stderr ne $stderr) {
74 return (0, "Stderr mismatch: expected [$stderr], saw [$actual_stderr]");
75 } else {
76 return 1; # success
77 }
78}
4ea8f8fb 79
80sub it_didnt_work {
81 print STDOUT "IWHCWJIHCI\cNHJWCJQWKJQJWCQW\n";
82 exit $FAILURE_CODE;
83}
84
85sub try {
4ea8f8fb 86 my ($success, $reason) = runperl(@_);
659ca9ea 87 $reason =~ s/\n/\\n/g if defined $reason;
16570ae7 88 local $::Level = $::Level + 1;
89 ok( $success, $reason );
4ea8f8fb 90}
91
92# PERL5OPT Command-line options (switches). Switches in
93# this variable are taken as if they were on
1c4db469 94# every Perl command line. Only the -[DIMUdmtw]
4ea8f8fb 95# switches are allowed. When running taint
96# checks (because the program was running setuid
97# or setgid, or the -T switch was used), this
98# variable is ignored. If PERL5OPT begins with
99# -T, tainting will be enabled, and any
100# subsequent options ignored.
101
659ca9ea 102try({PERL5OPT => '-w'}, ['-e', 'print $::x'],
4ea8f8fb 103 "",
29489e7c 104 qq{Name "main::x" used only once: possible typo at -e line 1.\nUse of uninitialized value \$x in print at -e line 1.\n});
4ea8f8fb 105
659ca9ea 106try({PERL5OPT => '-Mstrict'}, ['-e', 'print $::x'],
4ea8f8fb 107 "", "");
108
659ca9ea 109try({PERL5OPT => '-Mstrict'}, ['-e', 'print $x'],
4ea8f8fb 110 "",
111 qq{Global symbol "\$x" requires explicit package name at -e line 1.\nExecution of -e aborted due to compilation errors.\n});
112
113# Fails in 5.6.0
659ca9ea 114try({PERL5OPT => '-Mstrict -w'}, ['-e', 'print $x'],
4ea8f8fb 115 "",
116 qq{Global symbol "\$x" requires explicit package name at -e line 1.\nExecution of -e aborted due to compilation errors.\n});
117
118# Fails in 5.6.0
659ca9ea 119try({PERL5OPT => '-w -Mstrict'}, ['-e', 'print $::x'],
4ea8f8fb 120 "",
121 <<ERROR
122Name "main::x" used only once: possible typo at -e line 1.
29489e7c 123Use of uninitialized value \$x in print at -e line 1.
4ea8f8fb 124ERROR
125 );
126
127# Fails in 5.6.0
659ca9ea 128try({PERL5OPT => '-w -Mstrict'}, ['-e', 'print $::x'],
4ea8f8fb 129 "",
130 <<ERROR
131Name "main::x" used only once: possible typo at -e line 1.
29489e7c 132Use of uninitialized value \$x in print at -e line 1.
4ea8f8fb 133ERROR
134 );
135
659ca9ea 136try({PERL5OPT => '-MExporter'}, ['-e0'],
4ea8f8fb 137 "",
138 "");
139
140# Fails in 5.6.0
659ca9ea 141try({PERL5OPT => '-MExporter -MExporter'}, ['-e0'],
4ea8f8fb 142 "",
143 "");
144
659ca9ea 145try({PERL5OPT => '-Mstrict -Mwarnings'},
4ea8f8fb 146 ['-e', 'print "ok" if $INC{"strict.pm"} and $INC{"warnings.pm"}'],
147 "ok",
148 "");
149
659ca9ea 150try({PERL5OPT => '-w -w'},
151 ['-e', 'print $ENV{PERL5OPT}'],
152 '-w -w',
153 '');
27dd2420 154
1c4db469 155try({PERL5OPT => '-t'},
156 ['-e', 'print ${^TAINT}'],
9aa05f58 157 '-1',
1c4db469 158 '');
159
2b622f1a 160try({PERL5OPT => '-W'},
161 ['-e', 'local $^W = 0; no warnings; print $x'],
162 '',
163 <<ERROR
164Name "main::x" used only once: possible typo at -e line 1.
165Use of uninitialized value \$x in print at -e line 1.
166ERROR
167);
168
cd4e750a 169try({PERLLIB => "foobar$Config{path_sep}42"},
574c798a 170 ['-e', 'print grep { $_ eq "foobar" } @INC'],
171 'foobar',
172 '');
173
cd4e750a 174try({PERLLIB => "foobar$Config{path_sep}42"},
574c798a 175 ['-e', 'print grep { $_ eq "42" } @INC'],
176 '42',
177 '');
178
cd4e750a 179try({PERL5LIB => "foobar$Config{path_sep}42"},
574c798a 180 ['-e', 'print grep { $_ eq "foobar" } @INC'],
181 'foobar',
182 '');
183
cd4e750a 184try({PERL5LIB => "foobar$Config{path_sep}42"},
574c798a 185 ['-e', 'print grep { $_ eq "42" } @INC'],
186 '42',
187 '');
188
a0704631 189try({PERL5LIB => "foo",
190 PERLLIB => "bar"},
191 ['-e', 'print grep { $_ eq "foo" } @INC'],
192 'foo',
193 '');
194
195try({PERL5LIB => "foo",
196 PERLLIB => "bar"},
197 ['-e', 'print grep { $_ eq "bar" } @INC'],
198 '',
199 '');
200
72533a49 201# Tests for S_incpush_use_sep():
202
203my @dump_inc = ('-e', 'print "$_\n" foreach @INC');
204
205my ($out, $err) = runperl_and_capture({}, [@dump_inc]);
206
207is ($err, '', 'No errors when determining @INC');
208
209my @default_inc = split /\n/, $out;
210
211is (shift @default_inc, '../lib', 'Our -I../lib is at the front');
212
213my $sep = $Config{path_sep};
214foreach (['nothing', ''],
215 ['something', 'zwapp', 'zwapp'],
216 ['two things', "zwapp${sep}bam", 'zwapp', 'bam'],
217 ['two things, ::', "zwapp${sep}${sep}bam", 'zwapp', 'bam'],
218 [': at start', "${sep}zwapp", 'zwapp'],
219 [': at end', "zwapp${sep}", 'zwapp'],
220 [':: sandwich ::', "${sep}${sep}zwapp${sep}${sep}", 'zwapp'],
221 [':', "${sep}"],
222 ['::', "${sep}${sep}"],
223 [':::', "${sep}${sep}${sep}"],
224 ['two things and :', "zwapp${sep}bam${sep}", 'zwapp', 'bam'],
225 [': and two things', "${sep}zwapp${sep}bam", 'zwapp', 'bam'],
226 [': two things :', "${sep}zwapp${sep}bam${sep}", 'zwapp', 'bam'],
227 ['three things', "zwapp${sep}bam${sep}${sep}owww",
228 'zwapp', 'bam', 'owww'],
229 ) {
230 my ($name, $lib, @expect) = @$_;
231 push @expect, @default_inc;
232
233 ($out, $err) = runperl_and_capture({PERL5LIB => $lib}, [@dump_inc]);
234
235 is ($err, '', "No errors when determining \@INC for $name");
236
237 my @inc = split /\n/, $out;
238
239 is (shift @inc, '../lib', 'Our -I../lib is at the front for $name');
240
241 is (scalar @inc, scalar @expect,
242 "expected number of elements in \@INC for $name");
243
244 is ("@inc", "@expect", "expected elements in \@INC for $name");
245}
246
574c798a 247# PERL5LIB tests with included arch directories still missing
248
27dd2420 249END {
250 1 while unlink $STDOUT;
251 1 while unlink $STDERR;
252}