This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Make the diagnostic messages more neutral.
[perl5.git] / ext / B / t / terse.t
CommitLineData
3a5d7bb8
JH
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6}
7
8use Test::More tests => 15;
9
10use_ok( 'B::Terse' );
11
12# indent should return a string indented four spaces times the argument
1212f7d8
JH
13is( B::Terse::indent(2), ' ' x 8, 'indent with an argument' );
14is( B::Terse::indent(), '', 'indent with no argument' );
3a5d7bb8
JH
15
16# this should fail without a reference
17eval { B::Terse::terse('scalar') };
1212f7d8 18like( $@, qr/not a reference/, 'terse() fed bad parameters' );
3a5d7bb8
JH
19
20# now point it at a sub and see what happens
21sub foo {}
22
23my $sub;
24eval{ $sub = B::Terse::compile('', 'foo') };
1212f7d8
JH
25is( $@, '', 'compile()' );
26ok( defined &$sub, 'valid subref back from compile()' );
3a5d7bb8
JH
27
28# and point it at a real sub and hope the returned ops look alright
29my $out = tie *STDOUT, 'TieOut';
30$sub = B::Terse::compile('', 'bar');
31$sub->();
32
33# now build some regexes that should match the dumped ops
34my ($hex, $op) = ('\(0x[a-f0-9]+\)', '\s+\w+');
35my %ops = map { $_ => qr/$_ $hex$op/ }
36 qw ( OP COP LOOP PMOP UNOP BINOP LOGOP LISTOP );
37
38# split up the output lines into individual ops (terse is, well, terse!)
39# use an array here so $_ is modifiable
40my @lines = split(/\n+/, $out->read);
41foreach (@lines) {
42 next unless /\S/;
43 s/^\s+//;
44 if (/^([A-Z]+)\s+/) {
45 my $op = $1;
46 next unless exists $ops{$op};
1212f7d8 47 like( $_, $ops{$op}, "$op " );
3a5d7bb8
JH
48 delete $ops{$op};
49 s/$ops{$op}//;
50 redo if $_;
51 }
52}
53
54warn "# didn't find " . join(' ', keys %ops) if keys %ops;
55
56# XXX:
57# this tries to get at all tersified optypes in B::Terse
58# if you add AV, NULL, PADOP, PVOP, or SPECIAL, add it to the regex above too
59#
60use vars qw( $a $b );
61sub bar {
62 # OP SVOP COP IV here or in sub definition
63 my @bar = (1, 2, 3);
64
65 # got a GV here
66 my $foo = $a + $b;
67
68 # NV here
69 $a = 1.234;
70
71 # this is awful, but it gives a PMOP
72 my $boo = split('', $foo);
73
74 # PMOP
75 LOOP: for (1 .. 10) {
76 last LOOP if $_ % 2;
77 }
78
79 # make a PV
80 $foo = "a string";
81}
82
83# Schwern's example of finding an RV
84my $path = join " ", map { qq["-I$_"] } @INC;
85my $redir = $^O eq 'MacOS' ? '' : "2>&1";
86my $items = qx{$^X $path "-MO=Terse" -le "print \\42" $redir};
1212f7d8 87like( $items, qr/RV $hex \\42/, 'RV' );
3a5d7bb8
JH
88
89package TieOut;
90
91sub TIEHANDLE {
92 bless( \(my $out), $_[0] );
93}
94
95sub PRINT {
96 my $self = shift;
97 $$self .= join('', @_);
98}
99
100sub PRINTF {
101 my $self = shift;
102 $$self .= sprintf(@_);
103}
104
105sub read {
106 my $self = shift;
107 return substr($$self, 0, length($$self), '');
108}