Correct change 23437 - as Config isn't imported, need to use a fully
[p5sagit/p5-mst-13.2.git] / ext / B / t / optree_concise.t
1 #!perl
2
3 BEGIN {
4     chdir 't';
5     @INC = ('../lib', '../ext/B/t');
6     require Config;
7     if (($Config::Config{'extensions'} !~ /\bB\b/) ){
8         print "1..0 # Skip -- Perl configured without B module\n";
9         exit 0;
10     }
11     if ($Config::Config{'extensions'} !~ /\bData\/Dumper\b/) {
12         print
13             "1..0 # Skip: Data::Dumper was not built, needed by OptreeCheck\n";
14         exit 0;
15     }
16     require './test.pl';
17 }
18
19 # import checkOptree(), and %gOpts (containing test state)
20 use OptreeCheck;        # ALSO DOES @ARGV HANDLING !!!!!!
21 use Config;
22
23 plan tests => 23;
24 SKIP: {
25 skip "no perlio in this build", 23 unless $Config::Config{useperlio};
26
27 $SIG{__WARN__} = sub {
28     my $err = shift;
29     $err =~ m/Subroutine re::(un)?install redefined/ and return;
30 };
31 #################################
32 pass("CANONICAL B::Concise EXAMPLE");
33
34 checkOptree ( name      => 'canonical example w -basic',
35               bcopts    => '-basic',
36               code      =>  sub{$a=$b+42},
37               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
38 # 7  <1> leavesub[\d+ refs?] K/REFC,1 ->(end)
39 # -     <@> lineseq KP ->7
40 # 1        <;> nextstate(foo bar) v ->2
41 # 6        <2> sassign sKS/2 ->7
42 # 4           <2> add[t\d+] sK/2 ->5
43 # -              <1> ex-rv2sv sK/1 ->3
44 # 2                 <#> gvsv[*b] s ->3
45 # 3              <$> const[IV 42] s ->4
46 # -           <1> ex-rv2sv sKRM*/1 ->6
47 # 5              <#> gvsv[*a] s ->6
48 EOT_EOT
49 # 7  <1> leavesub[1 ref] K/REFC,1 ->(end)
50 # -     <@> lineseq KP ->7
51 # 1        <;> nextstate(main 60 optree_concise.t:122) v ->2
52 # 6        <2> sassign sKS/2 ->7
53 # 4           <2> add[t1] sK/2 ->5
54 # -              <1> ex-rv2sv sK/1 ->3
55 # 2                 <$> gvsv(*b) s ->3
56 # 3              <$> const(IV 42) s ->4
57 # -           <1> ex-rv2sv sKRM*/1 ->6
58 # 5              <$> gvsv(*a) s ->6
59 EONT_EONT
60
61 checkOptree ( name      => 'canonical example w -exec',
62               bcopts    => '-exec',
63               code      => sub{$a=$b+42},
64               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
65 # 1  <;> nextstate(main 61 optree_concise.t:139) v
66 # 2  <#> gvsv[*b] s
67 # 3  <$> const[IV 42] s
68 # 4  <2> add[t3] sK/2
69 # 5  <#> gvsv[*a] s
70 # 6  <2> sassign sKS/2
71 # 7  <1> leavesub[1 ref] K/REFC,1
72 EOT_EOT
73 # 1  <;> nextstate(main 61 optree_concise.t:139) v
74 # 2  <$> gvsv(*b) s
75 # 3  <$> const(IV 42) s
76 # 4  <2> add[t1] sK/2
77 # 5  <$> gvsv(*a) s
78 # 6  <2> sassign sKS/2
79 # 7  <1> leavesub[1 ref] K/REFC,1
80 EONT_EONT
81
82 #################################
83 pass("B::Concise OPTION TESTS");
84
85 checkOptree ( name      => '-base3 sticky-exec',
86               bcopts    => '-base3',
87               code      => sub{$a=$b+42},
88               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
89 1  <;> dbstate(main 24 optree_concise.t:132) v
90 2  <#> gvsv[*b] s
91 10 <$> const[IV 42] s
92 11 <2> add[t3] sK/2
93 12 <#> gvsv[*a] s
94 20 <2> sassign sKS/2
95 21 <1> leavesub[1 ref] K/REFC,1
96 EOT_EOT
97 # 1  <;> nextstate(main 62 optree_concise.t:161) v
98 # 2  <$> gvsv(*b) s
99 # 10 <$> const(IV 42) s
100 # 11 <2> add[t1] sK/2
101 # 12 <$> gvsv(*a) s
102 # 20 <2> sassign sKS/2
103 # 21 <1> leavesub[1 ref] K/REFC,1
104 EONT_EONT
105
106 checkOptree ( name      => 'sticky-base3, -basic over sticky-exec',
107               bcopts    => '-basic',
108               code      => sub{$a=$b+42},
109               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
110 21 <1> leavesub[1 ref] K/REFC,1 ->(end)
111 -     <@> lineseq KP ->21
112 1        <;> nextstate(main 32 optree_concise.t:164) v ->2
113 20       <2> sassign sKS/2 ->21
114 11          <2> add[t3] sK/2 ->12
115 -              <1> ex-rv2sv sK/1 ->10
116 2                 <#> gvsv[*b] s ->10
117 10             <$> const[IV 42] s ->11
118 -           <1> ex-rv2sv sKRM*/1 ->20
119 12             <#> gvsv[*a] s ->20
120 EOT_EOT
121 # 21 <1> leavesub[1 ref] K/REFC,1 ->(end)
122 # -     <@> lineseq KP ->21
123 # 1        <;> nextstate(main 63 optree_concise.t:186) v ->2
124 # 20       <2> sassign sKS/2 ->21
125 # 11          <2> add[t1] sK/2 ->12
126 # -              <1> ex-rv2sv sK/1 ->10
127 # 2                 <$> gvsv(*b) s ->10
128 # 10             <$> const(IV 42) s ->11
129 # -           <1> ex-rv2sv sKRM*/1 ->20
130 # 12             <$> gvsv(*a) s ->20
131 EONT_EONT
132
133 checkOptree ( name      => '-base4',
134               bcopts    => [qw/ -basic -base4 /],
135               code      => sub{$a=$b+42},
136               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
137 13 <1> leavesub[1 ref] K/REFC,1 ->(end)
138 -     <@> lineseq KP ->13
139 1        <;> nextstate(main 26 optree_concise.t:145) v ->2
140 12       <2> sassign sKS/2 ->13
141 10          <2> add[t3] sK/2 ->11
142 -              <1> ex-rv2sv sK/1 ->3
143 2                 <#> gvsv[*b] s ->3
144 3              <$> const[IV 42] s ->10
145 -           <1> ex-rv2sv sKRM*/1 ->12
146 11             <#> gvsv[*a] s ->12
147 EOT_EOT
148 # 13 <1> leavesub[1 ref] K/REFC,1 ->(end)
149 # -     <@> lineseq KP ->13
150 # 1        <;> nextstate(main 64 optree_concise.t:193) v ->2
151 # 12       <2> sassign sKS/2 ->13
152 # 10          <2> add[t1] sK/2 ->11
153 # -              <1> ex-rv2sv sK/1 ->3
154 # 2                 <$> gvsv(*b) s ->3
155 # 3              <$> const(IV 42) s ->10
156 # -           <1> ex-rv2sv sKRM*/1 ->12
157 # 11             <$> gvsv(*a) s ->12
158 EONT_EONT
159
160 checkOptree ( name      => "restore -base36 default",
161               bcopts    => [qw/ -basic -base36 /],
162               code      => sub{$a},
163               crossfail => 1,
164               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
165 3  <1> leavesub[1 ref] K/REFC,1 ->(end)
166 -     <@> lineseq KP ->3
167 1        <;> nextstate(main 27 optree_concise.t:161) v ->2
168 -        <1> ex-rv2sv sK/1 ->-
169 2           <#> gvsv[*a] s ->3
170 EOT_EOT
171 # 3  <1> leavesub[1 ref] K/REFC,1 ->(end)
172 # -     <@> lineseq KP ->3
173 # 1        <;> nextstate(main 65 optree_concise.t:210) v ->2
174 # -        <1> ex-rv2sv sK/1 ->-
175 # 2           <$> gvsv(*a) s ->3
176 EONT_EONT
177
178 checkOptree ( name      => "terse basic",
179               bcopts    => [qw/ -basic -terse /],
180               code      => sub{$a},
181               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
182 UNOP (0x82b0918) leavesub [1] 
183     LISTOP (0x82b08d8) lineseq 
184         COP (0x82b0880) nextstate 
185         UNOP (0x82b0860) null [15] 
186             PADOP (0x82b0840) gvsv  GV (0x82a818c) *a 
187 EOT_EOT
188 # UNOP (0x8282310) leavesub [1] 
189 #     LISTOP (0x82822f0) lineseq 
190 #         COP (0x82822b8) nextstate 
191 #         UNOP (0x812fc20) null [15] 
192 #             SVOP (0x812fc00) gvsv  GV (0x814692c) *a 
193 EONT_EONT
194
195 checkOptree ( name      => "sticky-terse exec",
196               bcopts    => [qw/ -exec /],
197               code      => sub{$a},
198               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
199 COP (0x82b0d70) nextstate 
200 PADOP (0x82b0d30) gvsv  GV (0x82a818c) *a 
201 UNOP (0x82b0e08) leavesub [1] 
202 EOT_EOT
203 # COP (0x82828e0) nextstate 
204 # SVOP (0x82828a0) gvsv  GV (0x814692c) *a 
205 # UNOP (0x8282938) leavesub [1] 
206 EONT_EONT
207
208 pass("OPTIONS IN CMDLINE MODE");
209
210 checkOptree ( name      => 'cmdline invoke -basic works',
211               prog      => 'sort @a',
212               #bcopts   => '-basic', # default
213               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
214 # 7  <@> leave[1 ref] vKP/REFC ->(end)
215 # 1     <0> enter ->2
216 # 2     <;> nextstate(main 1 -e:1) v ->3
217 # 6     <@> sort vK ->7
218 # 3        <0> pushmark s ->4
219 # 5        <1> rv2av[t2] lK/1 ->6
220 # 4           <#> gv[*a] s ->5
221 EOT_EOT
222 # 7  <@> leave[1 ref] vKP/REFC ->(end)
223 # 1     <0> enter ->2
224 # 2     <;> nextstate(main 1 -e:1) v ->3
225 # 6     <@> sort vK ->7
226 # 3        <0> pushmark s ->4
227 # 5        <1> rv2av[t1] lK/1 ->6
228 # 4           <$> gv(*a) s ->5
229 EONT_EONT
230
231 checkOptree ( name      => 'cmdline invoke -exec works',
232               prog      => 'sort @a',
233               bcopts    => '-exec',
234               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
235 1  <0> enter 
236 2  <;> nextstate(main 1 -e:1) v
237 3  <0> pushmark s
238 4  <#> gv[*a] s
239 5  <1> rv2av[t2] lK/1
240 6  <@> sort vK
241 7  <@> leave[1 ref] vKP/REFC
242 EOT_EOT
243 # 1  <0> enter 
244 # 2  <;> nextstate(main 1 -e:1) v
245 # 3  <0> pushmark s
246 # 4  <$> gv(*a) s
247 # 5  <1> rv2av[t1] lK/1
248 # 6  <@> sort vK
249 # 7  <@> leave[1 ref] vKP/REFC
250 EONT_EONT
251
252 checkOptree ( name      => 'cmdline self-strict compile err',
253               prog      => 'use strict; sort @a',
254               bcopts    => [qw/ -basic -concise -exec /],
255               noanchors => 1,
256               expect    => 'compilation errors',
257               expect_nt => 'compilation errors');
258
259 checkOptree ( name      => 'error at -e line 1',
260               prog      => 'our @a; sort @a',
261               bcopts    => [qw/ -basic -concise -exec /],
262               noanchors => 1,
263               expect    => 'at -e line 1',
264               expect_nt => 'at -e line 1');
265
266 checkOptree ( name      => 'cmdline -basic -concise -exec works',
267               prog      => 'our @a; sort @a',
268               bcopts    => [qw/ -basic -concise -exec /],
269               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
270 # 1  <0> enter 
271 # 2  <;> nextstate(main 1 -e:1) v
272 # 3  <#> gv[*a] s
273 # 4  <1> rv2av[t3] vK/OURINTR,1
274 # 5  <;> nextstate(main 2 -e:1) v
275 # 6  <0> pushmark s
276 # 7  <#> gv[*a] s
277 # 8  <1> rv2av[t5] lK/1
278 # 9  <@> sort vK
279 # a  <@> leave[1 ref] vKP/REFC
280 EOT_EOT
281 # 1  <0> enter 
282 # 2  <;> nextstate(main 1 -e:1) v
283 # 3  <$> gv(*a) s
284 # 4  <1> rv2av[t2] vK/OURINTR,1
285 # 5  <;> nextstate(main 2 -e:1) v
286 # 6  <0> pushmark s
287 # 7  <$> gv(*a) s
288 # 8  <1> rv2av[t3] lK/1
289 # 9  <@> sort vK
290 # a  <@> leave[1 ref] vKP/REFC
291 EONT_EONT
292
293
294 #################################
295 pass("B::Concise STYLE/CALLBACK TESTS");
296
297 use B::Concise qw( walk_output add_style set_style_standard add_callback );
298
299 # new relative style, added by set_up_relative_test()
300 @stylespec =
301     ( "#hyphseq2 (*(   (x( ;)x))*)<#classsym> "
302       . "#exname#arg(?([#targarglife])?)~#flags(?(/#privateb)?)(x(;~->#next)x) "
303       . "(x(;~=> #extra)x)\n" # new 'variable' used here
304       
305       , "  (*(    )*)     goto #seq\n"
306       , "(?(<#seq>)?)#exname#arg(?([#targarglife])?)"
307       #. "(x(;~=> #extra)x)\n" # new 'variable' used here
308       );
309
310 sub set_up_relative_test {
311     # add a new style, and a callback which adds an 'extra' property
312
313     add_style ( "relative"      => @stylespec );
314     #set_style_standard ( "relative" );
315
316     add_callback
317         ( sub {
318             my ($h, $op, $format, $level, $style) = @_;
319
320             # callback marks up const ops
321             $h->{arg} .= ' CALLBACK' if $h->{name} eq 'const';
322             $h->{extra} = '';
323
324             if ($lastnext and $$lastnext != $$op) {
325                 $h->{goto} = ($h->{seq} eq '-')
326                     ? 'unresolved' : $h->{seq};
327             }
328
329             # 2 style specific behaviors
330             if ($style eq 'relative') {
331                 $h->{extra} = 'RELATIVE';
332                 $h->{arg} .= ' RELATIVE' if $h->{name} eq 'leavesub';
333             }
334             elsif ($style eq 'scope') {
335                 # supress printout entirely
336                 $$format="" unless grep { $h->{name} eq $_ } @scopeops;
337             }
338         });
339 }
340
341 #################################
342 set_up_relative_test();
343 pass("set_up_relative_test, new callback installed");
344
345 checkOptree ( name      => 'callback used, independent of style',
346               bcopts    => [qw/ -concise -exec /],
347               code      => sub{$a=$b+42},
348               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
349 1  <;> nextstate(main 76 optree_concise.t:337) v
350 2  <#> gvsv[*b] s
351 3  <$> const[IV 42] CALLBACK s
352 4  <2> add[t3] sK/2
353 5  <#> gvsv[*a] s
354 6  <2> sassign sKS/2
355 7  <1> leavesub[1 ref] K/REFC,1
356 EOT_EOT
357 # 1  <;> nextstate(main 455 optree_concise.t:328) v
358 # 2  <$> gvsv(*b) s
359 # 3  <$> const(IV 42) CALLBACK s
360 # 4  <2> add[t1] sK/2
361 # 5  <$> gvsv(*a) s
362 # 6  <2> sassign sKS/2
363 # 7  <1> leavesub[1 ref] K/REFC,1
364 EONT_EONT
365
366 checkOptree ( name      => "new 'relative' style, -exec mode",
367               bcopts    => [qw/ -basic -relative /],
368               code      => sub{$a=$b+42},
369               crossfail => 1,
370               #retry    => 1,
371               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
372 7  <1> leavesub RELATIVE[1 ref] K ->(end) => RELATIVE
373 -     <@> lineseq KP ->7 => RELATIVE
374 1        <;> nextstate(main 49 optree_concise.t:309) v ->2 => RELATIVE
375 6        <2> sassign sKS ->7 => RELATIVE
376 4           <2> add[t3] sK ->5 => RELATIVE
377 -              <1> ex-rv2sv sK ->3 => RELATIVE
378 2                 <#> gvsv[*b] s ->3 => RELATIVE
379 3              <$> const[IV 42] CALLBACK s ->4 => RELATIVE
380 -           <1> ex-rv2sv sKRM* ->6 => RELATIVE
381 5              <#> gvsv[*a] s ->6 => RELATIVE
382 EOT_EOT
383 # 7  <1> leavesub RELATIVE[1 ref] K ->(end) => RELATIVE
384 # -     <@> lineseq KP ->7 => RELATIVE
385 # 1        <;> nextstate(main 77 optree_concise.t:353) v ->2 => RELATIVE
386 # 6        <2> sassign sKS ->7 => RELATIVE
387 # 4           <2> add[t1] sK ->5 => RELATIVE
388 # -              <1> ex-rv2sv sK ->3 => RELATIVE
389 # 2                 <$> gvsv(*b) s ->3 => RELATIVE
390 # 3              <$> const(IV 42) CALLBACK s ->4 => RELATIVE
391 # -           <1> ex-rv2sv sKRM* ->6 => RELATIVE
392 # 5              <$> gvsv(*a) s ->6 => RELATIVE
393 EONT_EONT
394
395 checkOptree ( name      => "both -exec -relative",
396               bcopts    => [qw/ -exec -relative /],
397               code      => sub{$a=$b+42},
398               crossfail => 1,
399               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
400 1  <;> nextstate(main 50 optree_concise.t:326) v 
401 2  <#> gvsv[*b] s 
402 3  <$> const[IV 42] CALLBACK s 
403 4  <2> add[t3] sK 
404 5  <#> gvsv[*a] s 
405 6  <2> sassign sKS 
406 7  <1> leavesub RELATIVE[1 ref] K 
407 EOT_EOT
408 # 1  <;> nextstate(main 78 optree_concise.t:371) v 
409 # 2  <$> gvsv(*b) s 
410 # 3  <$> const(IV 42) CALLBACK s 
411 # 4  <2> add[t1] sK 
412 # 5  <$> gvsv(*a) s 
413 # 6  <2> sassign sKS 
414 # 7  <1> leavesub RELATIVE[1 ref] K 
415 EONT_EONT
416
417 #################################
418
419 @scopeops = qw( leavesub enter leave nextstate );
420 add_style
421         ( 'scope'  # concise copy
422           , "#hyphseq2 (*(   (x( ;)x))*)<#classsym> "
423           . "#exname#arg(?([#targarglife])?)~#flags(?(/#private)?)(x(;~->#next)x) "
424           , "  (*(    )*)     goto #seq\n"
425           , "(?(<#seq>)?)#exname#arg(?([#targarglife])?)"
426          );
427
428 checkOptree ( name      => "both -exec -scope",
429               bcopts    => [qw/ -exec -scope /],
430               code      => sub{$a=$b+42},
431               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
432 1  <;> nextstate(main 50 optree_concise.t:337) v 
433 7  <1> leavesub[1 ref] K/REFC,1 
434 EOT_EOT
435 1  <;> nextstate(main 75 optree_concise.t:396) v 
436 7  <1> leavesub[1 ref] K/REFC,1 
437 EONT_EONT
438
439
440 checkOptree ( name      => "both -basic -scope",
441               bcopts    => [qw/ -basic -scope /],
442               code      => sub{$a=$b+42},
443               expect    => <<'EOT_EOT', expect_nt => <<'EONT_EONT');
444 7  <1> leavesub[1 ref] K/REFC,1 ->(end) 
445 1        <;> nextstate(main 51 optree_concise.t:347) v ->2 
446 EOT_EOT
447 7  <1> leavesub[1 ref] K/REFC,1 ->(end) 
448 1        <;> nextstate(main 76 optree_concise.t:407) v ->2 
449 EONT_EONT
450
451 } #skip
452