Warning bit fixes to t/op/caller.t
[p5sagit/p5-mst-13.2.git] / t / op / inccode.t
CommitLineData
69026470 1#!./perl -w
e5d18500 2
3# Tests for the coderef-in-@INC feature
4
240b6766 5use Config;
6
7my $can_fork = 0;
8my $minitest = $ENV{PERL_CORE_MINITEST};
9my $has_perlio = $Config{useperlio};
ab742322 10
e5d18500 11BEGIN {
f8973f08 12 chdir 't' if -d 't';
69026470 13 @INC = qw(. ../lib);
e5d18500 14}
ab742322 15
16if (!$minitest) {
240b6766 17 if ($Config{d_fork} && eval 'require POSIX; 1') {
6b75eab3 18 $can_fork = 1;
19 }
20}
f8973f08 21
6b75eab3 22use strict;
47de4e93 23use File::Spec;
69026470 24
25require "test.pl";
ab742322 26plan(tests => 45 + !$minitest * (3 + 14 * $can_fork));
47de4e93 27
22e2837f 28my @tempfiles = ();
29
47de4e93 30sub get_temp_fh {
22e2837f 31 my $f = "DummyModule0000";
32 1 while -e ++$f;
33 push @tempfiles, $f;
34 open my $fh, ">$f" or die "Can't create $f: $!";
3a5db825 35 print $fh "package ".substr($_[0],0,-3).";\n1;\n";
36 print $fh $_[1] if @_ > 1;
d1e4d418 37 close $fh or die "Couldn't close: $!";
47de4e93 38 open $fh, $f or die "Can't open $f: $!";
39 return $fh;
40}
f8973f08 41
22e2837f 42END { 1 while unlink @tempfiles }
43
e5d18500 44sub fooinc {
45 my ($self, $filename) = @_;
46 if (substr($filename,0,3) eq 'Foo') {
47de4e93 47 return get_temp_fh($filename);
e5d18500 48 }
49 else {
f8973f08 50 return undef;
e5d18500 51 }
52}
53
54push @INC, \&fooinc;
55
d1e4d418 56my $evalret = eval { require Bar; 1 };
57ok( !$evalret, 'Trying non-magic package' );
58
59$evalret = eval { require Foo; 1 };
60die $@ if $@;
61ok( $evalret, 'require Foo; magic via code ref' );
62ok( exists $INC{'Foo.pm'}, ' %INC sees Foo.pm' );
63is( ref $INC{'Foo.pm'}, 'CODE', ' val Foo.pm is a coderef in %INC' );
64is( $INC{'Foo.pm'}, \&fooinc, ' val Foo.pm is correct in %INC' );
65
66$evalret = eval "use Foo1; 1;";
67die $@ if $@;
68ok( $evalret, 'use Foo1' );
69ok( exists $INC{'Foo1.pm'}, ' %INC sees Foo1.pm' );
70is( ref $INC{'Foo1.pm'}, 'CODE', ' val Foo1.pm is a coderef in %INC' );
71is( $INC{'Foo1.pm'}, \&fooinc, ' val Foo1.pm is correct in %INC' );
72
73$evalret = eval { do 'Foo2.pl'; 1 };
74die $@ if $@;
75ok( $evalret, 'do "Foo2.pl"' );
76ok( exists $INC{'Foo2.pl'}, ' %INC sees Foo2.pl' );
77is( ref $INC{'Foo2.pl'}, 'CODE', ' val Foo2.pl is a coderef in %INC' );
78is( $INC{'Foo2.pl'}, \&fooinc, ' val Foo2.pl is correct in %INC' );
e5d18500 79
80pop @INC;
81
f8973f08 82
e5d18500 83sub fooinc2 {
84 my ($self, $filename) = @_;
85 if (substr($filename, 0, length($self->[1])) eq $self->[1]) {
47de4e93 86 return get_temp_fh($filename);
e5d18500 87 }
88 else {
f8973f08 89 return undef;
e5d18500 90 }
91}
92
47de4e93 93my $arrayref = [ \&fooinc2, 'Bar' ];
94push @INC, $arrayref;
e5d18500 95
d1e4d418 96$evalret = eval { require Foo; 1; };
97die $@ if $@;
98ok( $evalret, 'Originally loaded packages preserved' );
99$evalret = eval { require Foo3; 1; };
100ok( !$evalret, 'Original magic INC purged' );
101
102$evalret = eval { require Bar; 1 };
103die $@ if $@;
104ok( $evalret, 'require Bar; magic via array ref' );
105ok( exists $INC{'Bar.pm'}, ' %INC sees Bar.pm' );
106is( ref $INC{'Bar.pm'}, 'ARRAY', ' val Bar.pm is an arrayref in %INC' );
107is( $INC{'Bar.pm'}, $arrayref, ' val Bar.pm is correct in %INC' );
108
109ok( eval "use Bar1; 1;", 'use Bar1' );
110ok( exists $INC{'Bar1.pm'}, ' %INC sees Bar1.pm' );
111is( ref $INC{'Bar1.pm'}, 'ARRAY', ' val Bar1.pm is an arrayref in %INC' );
112is( $INC{'Bar1.pm'}, $arrayref, ' val Bar1.pm is correct in %INC' );
113
114ok( eval { do 'Bar2.pl'; 1 }, 'do "Bar2.pl"' );
115ok( exists $INC{'Bar2.pl'}, ' %INC sees Bar2.pl' );
116is( ref $INC{'Bar2.pl'}, 'ARRAY', ' val Bar2.pl is an arrayref in %INC' );
117is( $INC{'Bar2.pl'}, $arrayref, ' val Bar2.pl is correct in %INC' );
e5d18500 118
119pop @INC;
120
121sub FooLoader::INC {
122 my ($self, $filename) = @_;
123 if (substr($filename,0,4) eq 'Quux') {
47de4e93 124 return get_temp_fh($filename);
e5d18500 125 }
126 else {
f8973f08 127 return undef;
e5d18500 128 }
129}
130
47de4e93 131my $href = bless( {}, 'FooLoader' );
132push @INC, $href;
e5d18500 133
d1e4d418 134$evalret = eval { require Quux; 1 };
135die $@ if $@;
136ok( $evalret, 'require Quux; magic via hash object' );
137ok( exists $INC{'Quux.pm'}, ' %INC sees Quux.pm' );
6ece0f6b 138is( ref $INC{'Quux.pm'}, 'FooLoader',
d1e4d418 139 ' val Quux.pm is an object in %INC' );
140is( $INC{'Quux.pm'}, $href, ' val Quux.pm is correct in %INC' );
e5d18500 141
142pop @INC;
143
47de4e93 144my $aref = bless( [], 'FooLoader' );
145push @INC, $aref;
e5d18500 146
d1e4d418 147$evalret = eval { require Quux1; 1 };
148die $@ if $@;
149ok( $evalret, 'require Quux1; magic via array object' );
150ok( exists $INC{'Quux1.pm'}, ' %INC sees Quux1.pm' );
6ece0f6b 151is( ref $INC{'Quux1.pm'}, 'FooLoader',
d1e4d418 152 ' val Quux1.pm is an object in %INC' );
153is( $INC{'Quux1.pm'}, $aref, ' val Quux1.pm is correct in %INC' );
e5d18500 154
155pop @INC;
156
47de4e93 157my $sref = bless( \(my $x = 1), 'FooLoader' );
158push @INC, $sref;
e5d18500 159
d1e4d418 160$evalret = eval { require Quux2; 1 };
161die $@ if $@;
162ok( $evalret, 'require Quux2; magic via scalar object' );
163ok( exists $INC{'Quux2.pm'}, ' %INC sees Quux2.pm' );
6ece0f6b 164is( ref $INC{'Quux2.pm'}, 'FooLoader',
d1e4d418 165 ' val Quux2.pm is an object in %INC' );
166is( $INC{'Quux2.pm'}, $sref, ' val Quux2.pm is correct in %INC' );
f8973f08 167
168pop @INC;
9ae8cd5b 169
170push @INC, sub {
171 my ($self, $filename) = @_;
172 if (substr($filename,0,4) eq 'Toto') {
173 $INC{$filename} = 'xyz';
174 return get_temp_fh($filename);
175 }
176 else {
177 return undef;
178 }
179};
180
d1e4d418 181$evalret = eval { require Toto; 1 };
182die $@ if $@;
183ok( $evalret, 'require Toto; magic via anonymous code ref' );
184ok( exists $INC{'Toto.pm'}, ' %INC sees Toto.pm' );
185ok( ! ref $INC{'Toto.pm'}, q/ val Toto.pm isn't a ref in %INC/ );
186is( $INC{'Toto.pm'}, 'xyz', ' val Toto.pm is correct in %INC' );
9ae8cd5b 187
188pop @INC;
d820be44 189
3a5db825 190push @INC, sub {
191 my ($self, $filename) = @_;
192 if ($filename eq 'abc.pl') {
193 return get_temp_fh($filename, qq(return "abc";\n));
194 }
195 else {
196 return undef;
197 }
198};
199
6b75eab3 200my $ret = "";
3a5db825 201$ret ||= do 'abc.pl';
202is( $ret, 'abc', 'do "abc.pl" sees return value' );
203
ab742322 204{
205 my $filename = $^O eq 'MacOS' ? ':Foo:Foo.pm' : './Foo.pm';
c38a6530 206 #local @INC; # local fails on tied @INC
207 my @old_INC = @INC; # because local doesn't work on tied arrays
ab742322 208 @INC = sub { $filename = 'seen'; return undef; };
209 eval { require $filename; };
210 is( $filename, 'seen', 'the coderef sees fully-qualified pathnames' );
c38a6530 211 @INC = @old_INC;
ab742322 212}
213
214exit if $minitest;
215
240b6766 216SKIP: {
217 skip( "No PerlIO available", 3 ) unless $has_perlio;
218 pop @INC;
219
220 push @INC, sub {
221 my ($cr, $filename) = @_;
222 my $module = $filename; $module =~ s,/,::,g; $module =~ s/\.pm$//;
223 open my $fh, '<',
224 \"package $module; sub complain { warn q() }; \$::file = __FILE__;"
225 or die $!;
226 $INC{$filename} = "/custom/path/to/$filename";
227 return $fh;
228 };
229
230 require Publius::Vergilius::Maro;
231 is( $INC{'Publius/Vergilius/Maro.pm'},
232 '/custom/path/to/Publius/Vergilius/Maro.pm', '%INC set correctly');
233 is( our $file, '/custom/path/to/Publius/Vergilius/Maro.pm',
234 '__FILE__ set correctly' );
235 {
236 my $warning;
237 local $SIG{__WARN__} = sub { $warning = shift };
238 Publius::Vergilius::Maro::complain();
239 like( $warning, qr{something's wrong at /custom/path/to/Publius/Vergilius/Maro.pm}, 'warn() reports correct file source' );
240 }
a3b58a99 241}
a3b58a99 242pop @INC;
243
6b75eab3 244if ($can_fork) {
245 require PerlIO::scalar;
246 # This little bundle of joy generates n more recursive use statements,
247 # with each module chaining the next one down to 0. If it works, then we
248 # can safely nest subprocesses
249 my $use_filter_too;
250 push @INC, sub {
251 return unless $_[1] =~ /^BBBLPLAST(\d+)\.pm/;
252 my $pid = open my $fh, "-|";
253 if ($pid) {
254 # Parent
255 return $fh unless $use_filter_too;
256 # Try filters and state in addition.
257 return ($fh, sub {s/$_[1]/pass/; return}, "die")
258 }
259 die "Can't fork self: $!" unless defined $pid;
260
261 # Child
262 my $count = $1;
263 # Lets force some fun with odd sized reads.
264 $| = 1;
265 print 'push @main::bbblplast, ';
266 print "$count;\n";
267 if ($count--) {
268 print "use BBBLPLAST$count;\n";
269 }
270 if ($use_filter_too) {
271 print "die('In $_[1]');";
272 } else {
273 print "pass('In $_[1]');";
274 }
275 print '"Truth"';
276 POSIX::_exit(0);
277 die "Can't get here: $!";
278 };
279
280 @::bbblplast = ();
281 require BBBLPLAST5;
282 is ("@::bbblplast", "0 1 2 3 4 5", "All ran");
283
284 foreach (keys %INC) {
285 delete $INC{$_} if /^BBBLPLAST/;
286 }
287
288 @::bbblplast = ();
289 $use_filter_too = 1;
290
291 require BBBLPLAST5;
292
293 is ("@::bbblplast", "0 1 2 3 4 5", "All ran with a filter");
294}