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