Re: [PATCH] Cleanup of the regexp API
[p5sagit/p5-mst-13.2.git] / ext / B / t / b.t
1 #!./perl
2
3 BEGIN {
4     if ($ENV{PERL_CORE}){
5         chdir('t') if -d 't';
6         if ($^O eq 'MacOS') {
7             @INC = qw(: ::lib ::macos:lib);
8         } else {
9             @INC = '.';
10             push @INC, '../lib';
11         }
12     } else {
13         unshift @INC, 't';
14     }
15     require Config;
16     if (($Config::Config{'extensions'} !~ /\bB\b/) ){
17         print "1..0 # Skip -- Perl configured without B module\n";
18         exit 0;
19     }
20 }
21
22 $|  = 1;
23 use warnings;
24 use strict;
25 use Test::More tests => 57;
26
27 BEGIN { use_ok( 'B' ); }
28
29
30 package Testing::Symtable;
31 use vars qw($This @That %wibble $moo %moo);
32 my $not_a_sym = 'moo';
33
34 sub moo { 42 }
35 sub car { 23 }
36
37
38 package Testing::Symtable::Foo;
39 sub yarrow { "Hock" }
40
41 package Testing::Symtable::Bar;
42 sub hock { "yarrow" }
43
44 package main;
45 use vars qw(%Subs);
46 local %Subs = ();
47 B::walksymtable(\%Testing::Symtable::, 'find_syms', sub { $_[0] =~ /Foo/ },
48                 'Testing::Symtable::');
49
50 sub B::GV::find_syms {
51     my($symbol) = @_;
52
53     $main::Subs{$symbol->STASH->NAME . '::' . $symbol->NAME}++;
54 }
55
56 my @syms = map { 'Testing::Symtable::'.$_ } qw(This That wibble moo car
57                                                BEGIN);
58 push @syms, "Testing::Symtable::Foo::yarrow";
59
60 # Make sure we hit all the expected symbols.
61 ok( join('', sort @syms) eq join('', sort keys %Subs), 'all symbols found' );
62
63 # Make sure we only hit them each once.
64 ok( (!grep $_ != 1, values %Subs), '...and found once' );
65
66 # Tests for MAGIC / MOREMAGIC
67 ok( B::svref_2object(\$.)->MAGIC->TYPE eq "\0", '$. has \0 magic' );
68 {
69     my $e = '';
70     local $SIG{__DIE__} = sub { $e = $_[0] };
71     # Used to dump core, bug #16828
72     eval { B::svref_2object(\$.)->MAGIC->MOREMAGIC->TYPE; };
73     like( $e, qr/Can't call method "TYPE" on an undefined value/, 
74         '$. has no more magic' );
75 }
76
77 ok(B::svref_2object(qr/foo/)->MAGIC->precomp() eq 'foo', 'Get string from qr//');
78 like(B::svref_2object(qr/foo/)->MAGIC->REGEX(), qr/\d+/, "REGEX() returns numeric value");
79 my $iv = 1;
80 my $iv_ref = B::svref_2object(\$iv);
81 is(ref $iv_ref, "B::IV", "Test B:IV return from svref_2object");
82 is($iv_ref->REFCNT, 1, "Test B::IV->REFCNT");
83 # Flag tests are needed still
84 #diag $iv_ref->FLAGS();
85 my $iv_ret = $iv_ref->object_2svref();
86 is(ref $iv_ret, "SCALAR", "Test object_2svref() return is SCALAR");
87 is($$iv_ret, $iv, "Test object_2svref()");
88 is($iv_ref->int_value, $iv, "Test int_value()");
89 is($iv_ref->IV, $iv, "Test IV()");
90 is($iv_ref->IVX(), $iv, "Test IVX()");
91 is($iv_ref->UVX(), $iv, "Test UVX()");
92
93 my $pv = "Foo";
94 my $pv_ref = B::svref_2object(\$pv);
95 is(ref $pv_ref, "B::PV", "Test B::PV return from svref_2object");
96 is($pv_ref->REFCNT, 1, "Test B::PV->REFCNT");
97 # Flag tests are needed still
98 #diag $pv_ref->FLAGS();
99 my $pv_ret = $pv_ref->object_2svref();
100 is(ref $pv_ret, "SCALAR", "Test object_2svref() return is SCALAR");
101 is($$pv_ret, $pv, "Test object_2svref()");
102 is($pv_ref->PV(), $pv, "Test PV()");
103 eval { is($pv_ref->RV(), $pv, "Test RV()"); };
104 ok($@, "Test RV()");
105 is($pv_ref->PVX(), $pv, "Test PVX()");
106
107 my $nv = 1.1;
108 my $nv_ref = B::svref_2object(\$nv);
109 is(ref $nv_ref, "B::NV", "Test B::NV return from svref_2object");
110 is($nv_ref->REFCNT, 1, "Test B::NV->REFCNT");
111 # Flag tests are needed still
112 #diag $nv_ref->FLAGS();
113 my $nv_ret = $nv_ref->object_2svref();
114 is(ref $nv_ret, "SCALAR", "Test object_2svref() return is SCALAR");
115 is($$nv_ret, $nv, "Test object_2svref()");
116 is($nv_ref->NV, $nv, "Test NV()");
117 is($nv_ref->NVX(), $nv, "Test NVX()");
118
119 my $null = undef;
120 my $null_ref = B::svref_2object(\$null);
121 is(ref $null_ref, "B::NULL", "Test B::NULL return from svref_2object");
122 is($null_ref->REFCNT, 1, "Test B::NULL->REFCNT");
123 # Flag tests are needed still
124 #diag $null_ref->FLAGS();
125 my $null_ret = $nv_ref->object_2svref();
126 is(ref $null_ret, "SCALAR", "Test object_2svref() return is SCALAR");
127 is($$null_ret, $nv, "Test object_2svref()");
128
129 my $cv = sub{ 1; };
130 my $cv_ref = B::svref_2object(\$cv);
131 is($cv_ref->REFCNT, 1, "Test B::RV->REFCNT");
132 is(ref $cv_ref, "B::RV", "Test B::RV return from svref_2object - code");
133 my $cv_ret = $cv_ref->object_2svref();
134 is(ref $cv_ret, "REF", "Test object_2svref() return is REF");
135 is($$cv_ret, $cv, "Test object_2svref()");
136
137 my $av = [];
138 my $av_ref = B::svref_2object(\$av);
139 is(ref $av_ref, "B::RV", "Test B::RV return from svref_2object - array");
140
141 my $hv = [];
142 my $hv_ref = B::svref_2object(\$hv);
143 is(ref $hv_ref, "B::RV", "Test B::RV return from svref_2object - hash");
144
145 local *gv = *STDOUT;
146 my $gv_ref = B::svref_2object(\*gv);
147 is(ref $gv_ref, "B::GV", "Test B::GV return from svref_2object");
148 ok(! $gv_ref->is_empty(), "Test is_empty()");
149 is($gv_ref->NAME(), "gv", "Test NAME()");
150 is($gv_ref->SAFENAME(), "gv", "Test SAFENAME()");
151 like($gv_ref->FILE(), qr/b\.t$/, "Testing FILE()");
152
153 # The following return B::SPECIALs.
154 is(ref B::sv_yes(), "B::SPECIAL", "B::sv_yes()");
155 is(ref B::sv_no(), "B::SPECIAL", "B::sv_no()");
156 is(ref B::sv_undef(), "B::SPECIAL", "B::sv_undef()");
157
158 # More utility functions
159 is(B::ppname(0), "pp_null", "Testing ppname (this might break if opnames.h is changed)");
160 is(B::opnumber("null"), 0, "Testing opnumber with opname (null)");
161 is(B::opnumber("pp_null"), 0, "Testing opnumber with opname (pp_null)");
162 like(B::hash("wibble"), qr/0x[0-9a-f]*/, "Testing B::hash()");
163 is(B::cstring("wibble"), '"wibble"', "Testing B::cstring()");
164 is(B::perlstring("wibble"), '"wibble"', "Testing B::perlstring()");
165 is(B::class(bless {}, "Wibble::Bibble"), "Bibble", "Testing B::class()");
166 is(B::cast_I32(3.14), 3, "Testing B::cast_I32()");
167 is(B::opnumber("chop"), 38, "Testing opnumber with opname (chop)");
168
169 {
170     no warnings 'once';
171     my $sg = B::sub_generation();
172     *UNIVERSAL::hand_waving = sub { };
173     ok( $sg < B::sub_generation, "sub_generation increments" );
174 }
175
176 {
177     my $ag = B::amagic_generation();
178     {
179
180         package Whatever;
181         require overload;
182         overload->import( '""' => sub {"What? You want more?!"} );
183     }
184     ok( $ag < B::amagic_generation, "amagic_generation increments" );
185 }