]> git.vpit.fr Git - perl/modules/subs-auto.git/blob - t/10-base.t
bd1050efd0d36983a8cf39c1f32e90bd708c7d65
[perl/modules/subs-auto.git] / t / 10-base.t
1 #!perl -T
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 91;
7
8 my %_re = (
9  bareword => sub { qr/^Bareword\s+['"]?\s*$_[0]\s*['"]?\s+not\s+allowed\s+while\s+["']?\s*strict\s+subs\s*['"]?\s+in\s+use\s+at\s+$_[1]\s+line\s+$_[2]/ },
10  undefined => sub { qr/^Undefined\s+subroutine\s+\&$_[0]\s+called\s+at\s+$_[1]\s+line\s+$_[2]/ },
11 );
12
13 sub _got_test {
14  my $sub  = shift;
15  my $line = shift;
16  my %args = @_;
17  my $msg  = delete $args{msg};
18  $msg     = join ' ', $args{name}, $sub, 'line', $line unless $msg;
19  my $file = $args{eval} ? '\\(eval\\s+\\d+\\)' : quotemeta $0;
20  my $re   = $_re{$args{name}}->($sub, $file, $line);
21  if ($args{todo}) {
22   TODO: {
23    local $TODO = $args{todo};
24    like($@, $re, $msg);
25   }
26  } else {
27   like($@, $re, $msg);
28  }
29 }
30
31 sub _got_bareword { _got_test(@_, name => 'bareword'); }
32
33 sub _got_undefined {
34  my $sub = shift;
35  $sub = 'main::' . $sub if $sub !~ /::/;
36  _got_test($sub, @_, name => 'undefined');
37 }
38
39 sub _got_ok { is($@, '', $_[0]); }
40
41 my $warn;
42
43 my $bar;
44 sub bar { $bar = 1 }
45
46 eval "yay 11, 13"; # Defined on the other side of the scope
47 _got_ok('compiling to yay(11,13)');
48 our @yay;
49 is_deeply(\@yay, [ 11, 13 ], 'yay really was executed');
50
51 eval "flip"; # Not called in sub::auto zone, not declared, not defined
52 _got_bareword('flip', 1, eval => 1);
53
54 eval "flop"; # Not called in sub::auto zone, declared, not defined
55 _got_undefined('flop', 1, eval => 1);
56
57 my $qux;
58 eval "qux"; # Called in sub::auto zone, not declared, not defined
59 _got_bareword('qux', 1, eval => 1);
60
61 my $blech;
62 eval "blech"; # Called in sub::auto zone, declared, not defined
63 _got_undefined('blech', 1, eval => 1);
64
65 my $wut;
66 eval "wut"; # Called in sub::auto zone, declared, defined
67 _got_ok('compiling to wut()');
68
69 # === Starting from here ======================================================
70 use subs::auto;
71
72 eval { onlycalledonce 1, 2 };
73 _got_undefined('onlycalledonce', __LINE__-1);
74
75 eval { Test::More->import() };
76 _got_ok('don\'t touch class names');
77
78 my $strict;
79 sub strict { $strict = 1; undef }
80 eval { strict->import };
81 is($strict, 1, 'the strict subroutine was called');
82
83 my %h = (
84  a => 5,
85  b => 7,
86 );
87
88 my $foo;
89 our @foo;
90
91 eval { foo 1, 2, \%h };
92 _got_ok('compiling to foo(1,2,\\\%h)');
93 is($foo, 15, 'foo really was executed');
94
95 eval { foo(3, 4, \%h) };
96 _got_ok('compiling to foo(3,4,\\\%h)');
97 is($foo, 19, 'foo() really was executed');
98
99 eval { local @_ = (5, 6, \%h); &foo };
100 _got_ok('compiling to foo(5,6,\\\%h)');
101 is($foo, 23, '&foo really was executed');
102
103 eval { &foo(7, 8, \%h) };
104 _got_ok('compiling to foo(7,8,\\\%h)');
105 is($foo, 27, '&foo() really was executed');
106
107 eval { wut 13, "what" };
108 _got_ok('compiling to wut(13,"what")');
109 is($wut, 17, 'wut really was executed');
110
111 eval { wut(17, "what") };
112 _got_ok('compiling to wut(17,"what")');
113 is($wut, 21, 'wut() really was executed');
114
115 eval { local @_ = (21, "what"); &wut };
116 _got_ok('compiling to wut(21,"what")');
117 is($wut, 25, '&wut really was executed');
118
119 eval { &wut(25, "what") };
120 _got_ok('compiling to wut(25,"what")');
121 is($wut, 29, '&wut() really was executed');
122
123 eval { qux };
124 _got_undefined('qux', __LINE__-1);
125
126 eval { qux() };
127 _got_undefined('qux', __LINE__-1);
128
129 eval { &qux };
130 _got_undefined('qux', __LINE__-1);
131
132 eval { &qux() };
133 _got_undefined('qux', __LINE__-1);
134
135 {
136  no strict 'refs';
137  is(*{'::feh'}{CODE}, undef, 'feh isn\'t defined');
138  is(*{'::feh'}{CODE}, undef, 'feh isn\'t defined, really');
139  isnt(*{'::yay'}{CODE}, undef, 'yay is defined');
140  isnt(*{'::foo'}{CODE}, undef, 'foo is defined');
141  is(*{'::flip'}{CODE}, undef, 'flip isn\'t defined');
142  isnt(*{'::flop'}{CODE}, undef, 'flip is defined');
143  is(*{'::qux'}{CODE}, undef, 'qux isn\'t defined');
144  isnt(*{'::blech'}{CODE}, undef, 'blech is defined');
145  isnt(*{'::wut'}{CODE}, undef, 'wut is defined');
146 }
147
148 eval { no warnings; no strict; qux };
149 _got_undefined('qux', __LINE__-1);
150
151 eval { no warnings; no strict; blech };
152 _got_undefined('blech', __LINE__-1);
153
154 sub foo {
155  if ($_[2]) {
156   my %h = %{$_[2]};
157   $foo = $_[0] + $_[1] + (($h{a} || 0 == 5) ? 4 : 0)
158                        + (($h{b} || 0 == 7) ? 8 : 0);
159   undef;
160  } else {
161   $foo = '::foo'; # for symbol table tests later
162  }
163 }
164
165 eval { foo 3, 4, { } };
166 _got_ok('compiling to foo(3,4,{})');
167 is($foo, 7, 'foo really was executed');
168
169 $warn = undef;
170 eval {
171  local $SIG{__WARN__} = sub { $warn = $_[0] =~ /Subroutine\s+\S+redefined/ }; 
172  local *qux = sub { $qux = $_[0] };
173  qux 5;
174 };
175 _got_ok('compiling to qux(5)');
176 is($qux, 5, 'qux really was executed');
177 is($warn, undef, 'no redefine warning');
178
179 $warn = undef;
180 eval {
181  local $SIG{__WARN__} = sub { $warn = $_[0] =~ /Subroutine\s+\S+redefined/ };
182  local *blech = sub { $blech = $_[0] };
183  blech 7;
184 };
185 _got_ok('compiling to blech(7)');
186 is($blech, 7, 'blech really was executed');
187 is($warn, undef, 'no redefine warning');
188
189 eval { qux };
190 _got_undefined('qux', __LINE__-1);
191
192 eval { blech };
193 _got_undefined('blech', __LINE__-1);
194
195 # === Up to there =============================================================
196 no subs::auto;
197
198 my $b;
199 my $cb = eval {
200  sub {
201   $b = do {
202    no strict;
203    no warnings 'reserved';
204    blech;
205   }  
206  }
207 };
208 _got_ok('compiling to bareword');
209 $cb->();
210 is($b, 'blech', 'bareword ok');
211
212 eval { foo 13, 1, { } };
213 _got_ok('compiling to foo(13,1,{})');
214 is($foo, 14, 'foo really was executed');
215
216 $warn = undef;
217 {
218  local $SIG{__WARN__} = sub { $warn = $_[0] =~ /Subroutine\s+\S+redefined/; diag $_[0] };
219  local *qux = sub { $qux = 2 * $_[0] };
220  qux(3);
221 }
222 _got_ok('compiling to qux(3)');
223 is($qux, 6, 'new qux really was executed');
224 is($warn, undef, 'no redefine warning');
225
226 $warn = undef;
227 {
228  local $SIG{__WARN__} = sub { $warn = $_[0] =~ /Subroutine\s+\S+redefined/ };
229  local *blech = sub { $blech = 2 * $_[0] };
230  blech(9);
231 }
232 _got_ok('compiling to blech(9)');
233 is($blech, 18, 'new blech really was executed');
234 is($warn, undef, 'no redefine warning');
235
236 eval "qux";
237 _got_bareword('qux', 1, eval => 1);
238
239 eval "blech";
240 _got_undefined('blech', 1, eval => 1);
241
242 {
243  no strict qw/refs subs/;
244  is(*{::feh}{CODE}, undef, 'feh isn\'t defined');
245  is(*{::feh}{CODE}, undef, 'feh isn\'t defined, really');
246  isnt(*{::yay}{CODE}, undef, 'yay is defined');
247  isnt(*{::foo}{CODE}, undef, 'foo is defined'); # calls foo
248  is($foo, '::foo', 'foo was called');
249  is(*{::flip}{CODE}, undef, 'flip isn\'t defined');
250  isnt(*{::flop}{CODE}, undef, 'flip is defined');
251  is(*{::qux}{CODE}, undef, 'qux isn\'t defined');
252  isnt(*{::blech}{CODE}, undef, 'blech is defined');
253  isnt(*{::wut}{CODE}, undef, 'wut is defined');
254 }
255
256 sub blech;
257 eval { blech };
258 _got_undefined('blech', __LINE__-1);
259
260 sub flop;
261
262 bar();
263 is($bar, 1, 'bar ok');
264
265 sub wut { $wut = ($_[0] || 0) + length($_[1] || ''); '::wut' }
266
267 sub yay { @yay = @_; '::yay' }
268
269 # === Restarting from there ===================================================
270 use subs::auto;
271
272 eval "no subs::auto; meh";
273 _got_bareword("meh", 1, eval => 1);
274 # eval "use subs::auto; meh";
275 # _got_undefined('meh', 1, eval => 1, todo => 'Fails because of some bug in perl or Variable::Magic');
276 # eval "meh";
277 # _got_undefined('meh', 1, eval => 1, todo => 'Fails because of some bug in perl or Variable::Magic');
278
279 my $buf = '';
280 {
281  no subs::auto;
282  open DONGS, '>', \$buf or die "open-in-memory: $!";
283 }
284 print DONGS "hlagh\n";
285 is($buf, "hlagh\n", 'filehandles should\'t be touched');
286 close DONGS;
287
288 seek DATA, 0, 1;
289 my @fruits = <DATA>;
290 chomp @fruits;
291 is_deeply(\@fruits, [ qw/apple pear banana/ ], 'DATA filehandle ok');
292
293 eval { foo 7, 9, { } };
294 _got_ok('compiling to foo(7,9,{})');
295 is($foo, 16, 'foo really was executed');
296
297 eval { foo(8, 10, { }) };
298 _got_ok('compiling to foo(8,10,{})');
299 is($foo, 18, 'foo() really was executed');
300
301 eval { local @_ = (9, 11, { }); &foo };
302 _got_ok('compiling to foo(9,11,{})');
303 is($foo, 20, '&foo really was executed');
304
305 eval { &foo(10, 12, { }) };
306 _got_ok('compiling to foo(10,12,{})');
307 is($foo, 22, '&foo() really was executed');
308
309 eval { blech };
310 _got_undefined('blech', __LINE__-1);
311
312 eval { blech() };
313 _got_undefined('blech', __LINE__-1);
314
315 eval { &blech };
316 _got_undefined('blech', __LINE__-1);
317
318 eval { &blech() };
319 _got_undefined('blech', __LINE__-1);
320
321 ok(-f $0 && -r _, '-X _');
322
323 __DATA__
324 apple
325 pear
326 banana