This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Get t/uni/cache.t working under minitest
[perl5.git] / t / op / universal.t
1 #!./perl
2 #
3 # check UNIVERSAL
4 #
5
6 BEGIN {
7     chdir 't' if -d 't';
8     @INC = '../lib';
9     $| = 1;
10     require "./test.pl";
11 }
12
13 plan tests => 143;
14
15 $a = {};
16 bless $a, "Bob";
17 ok $a->isa("Bob");
18
19 package Human;
20 sub eat {}
21
22 package Female;
23 @ISA=qw(Human);
24
25 package Alice;
26 @ISA=qw(Bob Female);
27 sub sing;
28 sub drink { return "drinking " . $_[1]  }
29 sub new { bless {} }
30
31 $Alice::VERSION = 2.718;
32
33 {
34     package Cedric;
35     our @ISA;
36     use base qw(Human);
37 }
38
39 {
40     package Programmer;
41     our $VERSION = 1.667;
42
43     sub write_perl { 1 }
44 }
45
46 package main;
47
48
49
50 $a = new Alice;
51
52 ok $a->isa("Alice");
53 ok $a->isa("main::Alice");    # check that alternate class names work
54
55 ok(("main::Alice"->new)->isa("Alice"));
56
57 ok $a->isa("Bob");
58 ok $a->isa("main::Bob");
59
60 ok $a->isa("Female");
61
62 ok ! $a->isa("Female\0NOT REALLY!"), "->isa is nul-clean.";
63
64 ok $a->isa("Human");
65
66 ok ! $a->isa("Male");
67
68 ok ! $a->isa('Programmer');
69
70 ok $a->isa("HASH");
71
72 ok $a->can("eat");
73 ok ! $a->can("eat\0Except not!"), "->can is nul-clean.";
74 ok ! $a->can("sleep");
75 ok my $ref = $a->can("drink");        # returns a coderef
76 is $a->$ref("tea"), "drinking tea"; # ... which works
77 ok $ref = $a->can("sing");
78 eval { $a->$ref() };
79 ok $@;                                # ... but not if no actual subroutine
80
81 ok (!Cedric->isa('Programmer'));
82
83 ok (Cedric->isa('Human'));
84
85 push(@Cedric::ISA,'Programmer');
86
87 ok (Cedric->isa('Programmer'));
88
89 {
90     package Alice;
91     base::->import('Programmer');
92 }
93
94 ok $a->isa('Programmer');
95 ok $a->isa("Female");
96
97 @Cedric::ISA = qw(Bob);
98
99 ok (!Cedric->isa('Programmer'));
100
101 my $b = 'abc';
102 my @refs = qw(SCALAR SCALAR     LVALUE      GLOB ARRAY HASH CODE);
103 my @vals = (  \$b,   \3.14, \substr($b,1,1), \*b,  [],  {}, sub {} );
104 for ($p=0; $p < @refs; $p++) {
105     for ($q=0; $q < @vals; $q++) {
106         is UNIVERSAL::isa($vals[$p], $refs[$q]), ($p==$q or $p+$q==1);
107     };
108 };
109
110 ok UNIVERSAL::can(23, "can");
111 ++${"23::foo"};
112 ok UNIVERSAL::can("23", "can"), '"23" can can when the pack exists';
113 ok UNIVERSAL::can(23, "can"), '23 can can when the pack exists';
114 sub IO::Handle::turn {}
115 ok UNIVERSAL::can(*STDOUT, 'turn'), 'globs with IOs can';
116 ok UNIVERSAL::can(\*STDOUT, 'turn'), 'globrefs with IOs can';
117 ok UNIVERSAL::can("STDOUT", 'turn'), 'IO barewords can';
118
119 ok $a->can("VERSION");
120
121 ok $a->can("can");
122 ok ! $a->can("export_tags");    # a method in Exporter
123
124 cmp_ok eval { $a->VERSION }, '==', 2.718;
125
126 ok ! (eval { $a->VERSION(2.719) });
127 like $@, qr/^Alice version 2.719 required--this is only version 2.718 at /;
128
129 ok (eval { $a->VERSION(2.718) });
130 is $@, '';
131
132 ok ! (eval { $a->VERSION("version") });
133 like $@, qr/^Invalid version format/;
134
135 $aversion::VERSION = "version";
136 ok ! (eval { aversion->VERSION(2.719) });
137 like $@, qr/^Invalid version format/;
138
139 my $subs = join ' ', sort grep { defined &{"UNIVERSAL::$_"} } keys %UNIVERSAL::;
140 if ('a' lt 'A') {
141     is $subs, "can isa DOES VERSION";
142 } else {
143     is $subs, "DOES VERSION can isa";
144 }
145
146 ok $a->isa("UNIVERSAL");
147
148 ok ! UNIVERSAL::isa([], "UNIVERSAL");
149
150 ok ! UNIVERSAL::can({}, "can");
151
152 ok UNIVERSAL::isa(Alice => "UNIVERSAL");
153
154 cmp_ok UNIVERSAL::can(Alice => "can"), '==', \&UNIVERSAL::can;
155
156 # now use UNIVERSAL.pm and see what changes
157 eval "use UNIVERSAL";
158
159 ok $a->isa("UNIVERSAL");
160
161 my $sub2 = join ' ', sort grep { defined &{"UNIVERSAL::$_"} } keys %UNIVERSAL::;
162 # XXX import being here is really a bug
163 if ('a' lt 'A') {
164     is $sub2, "can import isa DOES VERSION";
165 } else {
166     is $sub2, "DOES VERSION can import isa";
167 }
168
169 eval 'sub UNIVERSAL::sleep {}';
170 ok $a->can("sleep");
171
172 ok UNIVERSAL::can($b, "can");
173
174 ok ! $a->can("export_tags");    # a method in Exporter
175
176 ok ! UNIVERSAL::isa("\xff\xff\xff\0", 'HASH');
177
178 {
179     # test isa() and can() on magic variables
180     "Human" =~ /(.*)/;
181     ok $1->isa("Human");
182     ok $1->can("eat");
183     package HumanTie;
184     sub TIESCALAR { bless {} }
185     sub FETCH { "Human" }
186     tie my($x), "HumanTie";
187     ::ok $x->isa("Human");
188     ::ok $x->can("eat");
189 }
190
191 # bugid 3284
192 # a second call to isa('UNIVERSAL') when @ISA is null failed due to caching
193
194 @X::ISA=();
195 my $x = {}; bless $x, 'X';
196 ok $x->isa('UNIVERSAL');
197 ok $x->isa('UNIVERSAL');
198
199
200 # Check that the "historical accident" of UNIVERSAL having an import()
201 # method doesn't effect anyone else.
202 eval { Some::Package->import("bar") };
203 is $@, '';
204
205
206 # This segfaulted in a blead.
207 fresh_perl_is('package Foo; Foo->VERSION;  print "ok"', 'ok');
208
209 # So did this.
210 fresh_perl_is('$:; UNIVERSAL::isa(":","Unicode::String");print "ok"','ok');
211
212 package Foo;
213
214 sub DOES { 1 }
215
216 package Bar;
217
218 @Bar::ISA = 'Foo';
219
220 package Baz;
221
222 package main;
223 ok( Foo->DOES( 'bar' ), 'DOES() should call DOES() on class' );
224 ok( Bar->DOES( 'Bar' ), '... and should fall back to isa()' );
225 ok( Bar->DOES( 'Foo' ), '... even when inherited' );
226 ok( Baz->DOES( 'Baz' ), '... even without inheriting any other DOES()' );
227 ok( ! Baz->DOES( 'Foo' ), '... returning true or false appropriately' );
228
229 ok( ! "T"->DOES( "T\0" ), 'DOES() is nul-clean' );
230 ok( ! Baz->DOES( "Baz\0Boy howdy" ), 'DOES() is nul-clean' );
231
232 package Pig;
233 package Bodine;
234 Bodine->isa('Pig');
235 *isa = \&UNIVERSAL::isa;
236 eval { isa({}, 'HASH') };
237 ::is($@, '', "*isa correctly found");
238
239 package main;
240 eval { UNIVERSAL::DOES([], "foo") };
241 like( $@, qr/Can't call method "DOES" on unblessed reference/,
242     'DOES call error message says DOES, not isa' );
243
244 # Tests for can seem to be split between here and method.t
245 # Add the verbatim perl code mentioned in the comments of
246 # http://www.xray.mpe.mpg.de/mailing-lists/perl5-porters/2001-05/msg01710.html
247 # but never actually tested.
248 is(UNIVERSAL->can("NoSuchPackage::foo"), undef);
249
250 @splatt::ISA = 'zlopp';
251 ok (splatt->isa('zlopp'));
252 ok (!splatt->isa('plop'));
253
254 # This should reset the ->isa lookup cache
255 @splatt::ISA = 'plop';
256 # And here is the new truth.
257 ok (!splatt->isa('zlopp'));
258 ok (splatt->isa('plop'));
259
260 use warnings "deprecated";
261 {
262     my $m;
263     local $SIG{__WARN__} = sub { $m = $_[0] };
264     eval "use UNIVERSAL 'can'";
265     like($@, qr/^UNIVERSAL does not export anything\b/,
266         "error for UNIVERSAL->import('can')");
267     is($m, undef,
268         "no deprecation warning for UNIVERSAL->import('can')");
269
270           undef $m;
271     eval "use UNIVERSAL";
272     is($@, "",
273         "no error for UNIVERSAL->import");
274     is($m, undef,
275         "no deprecation warning for UNIVERSAL->import");
276 }
277
278 # Test: [perl #66112]: change @ISA inside  sub isa
279 {
280     package RT66112::A;
281
282     package RT66112::B;
283
284     sub isa {
285         my $self = shift;
286         @ISA = qw/RT66112::A/;
287         return $self->SUPER::isa(@_);
288     }
289
290     package RT66112::C;
291
292     package RT66112::D;
293
294     sub isa {
295         my $self = shift;
296         @RT66112::E::ISA = qw/RT66112::A/;
297         return $self->SUPER::isa(@_);
298     }
299
300     package RT66112::E;
301
302     package main;
303
304     @RT66112::B::ISA = qw//;
305     @RT66112::C::ISA = qw/RT66112::B/;
306     @RT66112::T1::ISA = qw/RT66112::C/;
307     ok(RT66112::T1->isa('RT66112::C'), "modify \@ISA in isa (RT66112::T1 isa RT66112::C)");
308
309     @RT66112::B::ISA = qw//;
310     @RT66112::C::ISA = qw/RT66112::B/;
311     @RT66112::T2::ISA = qw/RT66112::C/;
312     ok(RT66112::T2->isa('RT66112::B'), "modify \@ISA in isa (RT66112::T2 isa RT66112::B)");
313
314     @RT66112::B::ISA = qw//;
315     @RT66112::C::ISA = qw/RT66112::B/;
316     @RT66112::T3::ISA = qw/RT66112::C/;
317     ok(RT66112::T3->isa('RT66112::A'), "modify \@ISA in isa (RT66112::T3 isa RT66112::A)") or require mro, diag "@{mro::get_linear_isa('RT66112::T3')}";
318
319     @RT66112::E::ISA = qw/RT66112::D/;
320     @RT66112::T4::ISA = qw/RT66112::E/;
321     ok(RT66112::T4->isa('RT66112::E'), "modify \@ISA in isa (RT66112::T4 isa RT66112::E)");
322
323     @RT66112::E::ISA = qw/RT66112::D/;
324     @RT66112::T5::ISA = qw/RT66112::E/;
325     ok(! RT66112::T5->isa('RT66112::D'), "modify \@ISA in isa (RT66112::T5 not isa RT66112::D)");
326
327     @RT66112::E::ISA = qw/RT66112::D/;
328     @RT66112::T6::ISA = qw/RT66112::E/;
329     ok(RT66112::T6->isa('RT66112::A'), "modify \@ISA in isa (RT66112::T6 isa RT66112::A)");
330 }
331
332 ok(Undeclared->can("can"));
333 sub Undeclared::foo { }
334 ok(Undeclared->can("foo"));
335 ok(!Undeclared->can("something_else"));
336
337 ok(Undeclared->isa("UNIVERSAL"));
338
339 # keep this at the end to avoid messing up earlier tests, since it modifies
340 # @UNIVERSAL::ISA
341 @UNIVERSAL::ISA = ('UniversalParent');
342 { package UniversalIsaTest1; }
343 ok(UniversalIsaTest1->isa('UniversalParent'));
344 ok(UniversalIsaTest2->isa('UniversalParent'));