This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add tests for autovivication combined with get-magic, some of which are TODO.
[perl5.git] / lib / overload.t
CommitLineData
3340ac37 1#!./perl -T
8ebc5c01 2
3BEGIN {
4 chdir 't' if -d 't';
20822f61 5 @INC = '../lib';
78cd8b71 6 require Config;
98641f60 7 if (($Config::Config{'extensions'} !~ m!\bList/Util\b!) ){
78cd8b71
NC
8 print "1..0 # Skip -- Perl configured without List::Util module\n";
9 exit 0;
10 }
8ebc5c01 11}
12
8ebc5c01 13package Oscalar;
14use overload (
15 # Anonymous subroutines:
16'+' => sub {new Oscalar $ {$_[0]}+$_[1]},
17'-' => sub {new Oscalar
18 $_[2]? $_[1]-${$_[0]} : ${$_[0]}-$_[1]},
19'<=>' => sub {new Oscalar
20 $_[2]? $_[1]-${$_[0]} : ${$_[0]}-$_[1]},
21'cmp' => sub {new Oscalar
22 $_[2]? ($_[1] cmp ${$_[0]}) : (${$_[0]} cmp $_[1])},
23'*' => sub {new Oscalar ${$_[0]}*$_[1]},
24'/' => sub {new Oscalar
25 $_[2]? $_[1]/${$_[0]} :
26 ${$_[0]}/$_[1]},
27'%' => sub {new Oscalar
28 $_[2]? $_[1]%${$_[0]} : ${$_[0]}%$_[1]},
29'**' => sub {new Oscalar
30 $_[2]? $_[1]**${$_[0]} : ${$_[0]}-$_[1]},
31
32qw(
33"" stringify
b0bf6df7 340+ numify) # Order of arguments insignificant
8ebc5c01 35);
36
37sub new {
38 my $foo = $_[1];
39 bless \$foo, $_[0];
40}
41
42sub stringify { "${$_[0]}" }
43sub numify { 0 + "${$_[0]}" } # Not needed, additional overhead
44 # comparing to direct compilation based on
45 # stringify
46
47package main;
48
8ebc5c01 49$| = 1;
25222ff9 50BEGIN { require './test.pl' }
5e2699c2 51plan tests => 4982;
b1fbf5c3 52
a02ec77a 53use Scalar::Util qw(tainted);
8ebc5c01 54
55$a = new Oscalar "087";
56$b= "$a";
57
b1fbf5c3
NC
58is($b, $a);
59is($b, "087");
60is(ref $a, "Oscalar");
61is($a, $a);
62is($a, "087");
8ebc5c01 63
64$c = $a + 7;
65
b1fbf5c3
NC
66is(ref $c, "Oscalar");
67isnt($c, $a);
68is($c, "94");
8ebc5c01 69
70$b=$a;
71
b1fbf5c3 72is(ref $a, "Oscalar");
8ebc5c01 73
74$b++;
75
b1fbf5c3
NC
76is(ref $b, "Oscalar");
77is($a, "087");
78is($b, "88");
79is(ref $a, "Oscalar");
8ebc5c01 80
81$c=$b;
82$c-=$a;
83
b1fbf5c3
NC
84is(ref $c, "Oscalar");
85is($a, "087");
86is($c, "1");
87is(ref $a, "Oscalar");
8ebc5c01 88
89$b=1;
90$b+=$a;
91
b1fbf5c3
NC
92is(ref $b, "Oscalar");
93is($a, "087");
94is($b, "88");
95is(ref $a, "Oscalar");
8ebc5c01 96
97eval q[ package Oscalar; use overload ('++' => sub { $ {$_[0]}++;$_[0] } ) ];
98
99$b=$a;
100
b1fbf5c3 101is(ref $a, "Oscalar");
8ebc5c01 102
103$b++;
104
b1fbf5c3
NC
105is(ref $b, "Oscalar");
106is($a, "087");
107is($b, "88");
108is(ref $a, "Oscalar");
8ebc5c01 109
110package Oscalar;
111$dummy=bless \$dummy; # Now cache of method should be reloaded
112package main;
113
114$b=$a;
115$b++;
116
b1fbf5c3
NC
117is(ref $b, "Oscalar");
118is($a, "087");
119is($b, "88");
120is(ref $a, "Oscalar");
8ebc5c01 121
32251b26 122undef $b; # Destroying updates tables too...
8ebc5c01 123
124eval q[package Oscalar; use overload ('++' => sub { $ {$_[0]} += 2; $_[0] } ) ];
125
126$b=$a;
127
b1fbf5c3 128is(ref $a, "Oscalar");
8ebc5c01 129
130$b++;
131
b1fbf5c3
NC
132is(ref $b, "Oscalar");
133is($a, "087");
134is($b, "88");
135is(ref $a, "Oscalar");
8ebc5c01 136
137package Oscalar;
138$dummy=bless \$dummy; # Now cache of method should be reloaded
139package main;
140
141$b++;
142
b1fbf5c3
NC
143is(ref $b, "Oscalar");
144is($a, "087");
145is($b, "90");
146is(ref $a, "Oscalar");
8ebc5c01 147
148$b=$a;
149$b++;
150
b1fbf5c3
NC
151is(ref $b, "Oscalar");
152is($a, "087");
153is($b, "89");
154is(ref $a, "Oscalar");
8ebc5c01 155
156
b1fbf5c3 157ok($b? 1:0);
8ebc5c01 158
159eval q[ package Oscalar; use overload ('=' => sub {$main::copies++;
160 package Oscalar;
161 local $new=$ {$_[0]};
162 bless \$new } ) ];
163
164$b=new Oscalar "$a";
165
b1fbf5c3
NC
166is(ref $b, "Oscalar");
167is($a, "087");
168is($b, "087");
169is(ref $a, "Oscalar");
8ebc5c01 170
171$b++;
172
b1fbf5c3
NC
173is(ref $b, "Oscalar");
174is($a, "087");
175is($b, "89");
176is(ref $a, "Oscalar");
177is($copies, undef);
8ebc5c01 178
179$b+=1;
180
b1fbf5c3
NC
181is(ref $b, "Oscalar");
182is($a, "087");
183is($b, "90");
184is(ref $a, "Oscalar");
185is($copies, undef);
8ebc5c01 186
187$b=$a;
188$b+=1;
189
b1fbf5c3
NC
190is(ref $b, "Oscalar");
191is($a, "087");
192is($b, "88");
193is(ref $a, "Oscalar");
194is($copies, undef);
8ebc5c01 195
196$b=$a;
197$b++;
198
b1fbf5c3
NC
199is(ref $b, "Oscalar");
200is($a, "087");
201is($b, "89");
202is(ref $a, "Oscalar");
203is($copies, 1);
8ebc5c01 204
205eval q[package Oscalar; use overload ('+=' => sub {$ {$_[0]} += 3*$_[1];
206 $_[0] } ) ];
207$c=new Oscalar; # Cause rehash
208
209$b=$a;
210$b+=1;
211
b1fbf5c3
NC
212is(ref $b, "Oscalar");
213is($a, "087");
214is($b, "90");
215is(ref $a, "Oscalar");
216is($copies, 2);
8ebc5c01 217
218$b+=$b;
219
b1fbf5c3
NC
220is(ref $b, "Oscalar");
221is($b, "360");
222is($copies, 2);
8ebc5c01 223$b=-$b;
224
b1fbf5c3
NC
225is(ref $b, "Oscalar");
226is($b, "-360");
227is($copies, 2);
8ebc5c01 228
229$b=abs($b);
230
b1fbf5c3
NC
231is(ref $b, "Oscalar");
232is($b, "360");
233is($copies, 2);
8ebc5c01 234
235$b=abs($b);
236
b1fbf5c3
NC
237is(ref $b, "Oscalar");
238is($b, "360");
239is($copies, 2);
8ebc5c01 240
241eval q[package Oscalar;
242 use overload ('x' => sub {new Oscalar ( $_[2] ? "_.$_[1]._" x $ {$_[0]}
243 : "_.${$_[0]}._" x $_[1])}) ];
244
245$a=new Oscalar "yy";
246$a x= 3;
b1fbf5c3 247is($a, "_.yy.__.yy.__.yy._");
8ebc5c01 248
249eval q[package Oscalar;
250 use overload ('.' => sub {new Oscalar ( $_[2] ?
251 "_.$_[1].__.$ {$_[0]}._"
252 : "_.$ {$_[0]}.__.$_[1]._")}) ];
253
254$a=new Oscalar "xx";
255
b1fbf5c3 256is("b${a}c", "_._.b.__.xx._.__.c._");
8ebc5c01 257
258# Check inheritance of overloading;
259{
260 package OscalarI;
261 @ISA = 'Oscalar';
262}
263
264$aI = new OscalarI "$a";
b1fbf5c3
NC
265is(ref $aI, "OscalarI");
266is("$aI", "xx");
267is($aI, "xx");
268is("b${aI}c", "_._.b.__.xx._.__.c._");
8ebc5c01 269
270# Here we test blessing to a package updates hash
271
272eval "package Oscalar; no overload '.'";
273
b1fbf5c3 274is("b${a}", "_.b.__.xx._");
8ebc5c01 275$x="1";
276bless \$x, Oscalar;
b1fbf5c3 277is("b${a}c", "bxxc");
8ebc5c01 278new Oscalar 1;
b1fbf5c3 279is("b${a}c", "bxxc");
8ebc5c01 280
281# Negative overloading:
282
283$na = eval { ~$a };
b1fbf5c3 284like($@, qr/no method found/);
8ebc5c01 285
286# Check AUTOLOADING:
287
288*Oscalar::AUTOLOAD =
289 sub { *{"Oscalar::$AUTOLOAD"} = sub {"_!_" . shift() . "_!_"} ;
290 goto &{"Oscalar::$AUTOLOAD"}};
291
44a8e56a 292eval "package Oscalar; sub comple; use overload '~' => 'comple'";
8ebc5c01 293
294$na = eval { ~$a }; # Hash was not updated
b1fbf5c3 295like($@, qr/no method found/);
8ebc5c01 296
297bless \$x, Oscalar;
298
299$na = eval { ~$a }; # Hash updated
44a8e56a 300warn "`$na', $@" if $@;
b1fbf5c3
NC
301ok !$@;
302is($na, '_!_xx_!_');
8ebc5c01 303
304$na = 0;
305
306$na = eval { ~$aI }; # Hash was not updated
fdb7e2a2 307like($@, qr/no method found/);
8ebc5c01 308
309bless \$x, OscalarI;
310
311$na = eval { ~$aI };
312print $@;
313
fdb7e2a2
NC
314ok(!$@);
315is($na, '_!_xx_!_');
8ebc5c01 316
44a8e56a 317eval "package Oscalar; sub rshft; use overload '>>' => 'rshft'";
8ebc5c01 318
319$na = eval { $aI >> 1 }; # Hash was not updated
fdb7e2a2 320like($@, qr/no method found/);
8ebc5c01 321
322bless \$x, OscalarI;
323
324$na = 0;
325
326$na = eval { $aI >> 1 };
327print $@;
328
fdb7e2a2
NC
329ok(!$@);
330is($na, '_!_xx_!_');
8ebc5c01 331
44a8e56a 332# warn overload::Method($a, '0+'), "\n";
fdb7e2a2
NC
333is(overload::Method($a, '0+'), \&Oscalar::numify);
334is(overload::Method($aI,'0+'), \&Oscalar::numify);
335ok(overload::Overloaded($aI));
336ok(!overload::Overloaded('overload'));
8ebc5c01 337
fdb7e2a2
NC
338ok(! defined overload::Method($aI, '<<'));
339ok(! defined overload::Method($a, '<'));
8ebc5c01 340
fdb7e2a2
NC
341like (overload::StrVal($aI), qr/^OscalarI=SCALAR\(0x[\da-fA-F]+\)$/);
342is(overload::StrVal(\$aI), "@{[\$aI]}");
8ebc5c01 343
44a8e56a 344# Check overloading by methods (specified deep in the ISA tree).
345{
346 package OscalarII;
347 @ISA = 'OscalarI';
348 sub Oscalar::lshft {"_<<_" . shift() . "_<<_"}
349 eval "package OscalarI; use overload '<<' => 'lshft', '|' => 'lshft'";
350}
351
352$aaII = "087";
353$aII = \$aaII;
354bless $aII, 'OscalarII';
355bless \$fake, 'OscalarI'; # update the hash
fdb7e2a2 356is(($aI | 3), '_<<_xx_<<_');
44a8e56a 357# warn $aII << 3;
fdb7e2a2 358is(($aII << 3), '_<<_087_<<_');
44a8e56a 359
b3ac6de7
IZ
360{
361 BEGIN { $int = 7; overload::constant 'integer' => sub {$int++; shift}; }
362 $out = 2**10;
363}
fdb7e2a2
NC
364is($int, 9);
365is($out, 1024);
7898bf0b
RGS
366is($int, 9);
367{
368 BEGIN { overload::constant 'integer' => sub {$int++; shift()+1}; }
369 eval q{$out = 42};
370}
371is($int, 10);
372is($out, 43);
b3ac6de7
IZ
373
374$foo = 'foo';
375$foo1 = 'f\'o\\o';
376{
377 BEGIN { $q = $qr = 7;
378 overload::constant 'q' => sub {$q++; push @q, shift, ($_[1] || 'none'); shift},
379 'qr' => sub {$qr++; push @qr, shift, ($_[1] || 'none'); shift}; }
380 $out = 'foo';
381 $out1 = 'f\'o\\o';
382 $out2 = "a\a$foo,\,";
383 /b\b$foo.\./;
384}
385
fdb7e2a2
NC
386is($out, 'foo');
387is($out, $foo);
388is($out1, 'f\'o\\o');
389is($out1, $foo1);
390is($out2, "a\afoo,\,");
391is("@q", "foo q f'o\\\\o q a\\a qq ,\\, qq");
392is($q, 11);
393is("@qr", "b\\b qq .\\. qq");
394is($qr, 9);
b3ac6de7
IZ
395
396{
397 $_ = '!<b>!foo!<-.>!';
398 BEGIN { overload::constant 'q' => sub {push @q1, shift, ($_[1] || 'none'); "_<" . (shift) . ">_"},
399 'qr' => sub {push @qr1, shift, ($_[1] || 'none'); "!<" . (shift) . ">!"}; }
400 $out = 'foo';
401 $out1 = 'f\'o\\o';
402 $out2 = "a\a$foo,\,";
403 $res = /b\b$foo.\./;
404 $a = <<EOF;
405oups
406EOF
407 $b = <<'EOF';
408oups1
409EOF
410 $c = bareword;
411 m'try it';
412 s'first part'second part';
413 s/yet another/tail here/;
c2e66d9e 414 tr/A-Z/a-z/;
b3ac6de7
IZ
415}
416
fdb7e2a2
NC
417is($out, '_<foo>_');
418is($out1, '_<f\'o\\o>_');
419is($out2, "_<a\a>_foo_<,\,>_");
420is("@q1", "foo q f'o\\\\o q a\\a qq ,\\, qq oups
b3ac6de7 421 qq oups1
fdb7e2a2
NC
422 q second part q tail here s A-Z tr a-z tr");
423is("@qr1", "b\\b qq .\\. qq try it q first part q yet another qq");
424is($res, 1);
425is($a, "_<oups
426>_");
427is($b, "_<oups1
428>_");
429is($c, "bareword");
b3ac6de7 430
ee239bfe
IZ
431{
432 package symbolic; # Primitive symbolic calculator
433 use overload nomethod => \&wrap, '""' => \&str, '0+' => \&num,
434 '=' => \&cpy, '++' => \&inc, '--' => \&dec;
435
436 sub new { shift; bless ['n', @_] }
437 sub cpy {
438 my $self = shift;
439 bless [@$self], ref $self;
440 }
441 sub inc { $_[0] = bless ['++', $_[0], 1]; }
442 sub dec { $_[0] = bless ['--', $_[0], 1]; }
443 sub wrap {
444 my ($obj, $other, $inv, $meth) = @_;
445 if ($meth eq '++' or $meth eq '--') {
446 @$obj = ($meth, (bless [@$obj]), 1); # Avoid circular reference
447 return $obj;
448 }
449 ($obj, $other) = ($other, $obj) if $inv;
450 bless [$meth, $obj, $other];
451 }
452 sub str {
453 my ($meth, $a, $b) = @{+shift};
454 $a = 'u' unless defined $a;
455 if (defined $b) {
456 "[$meth $a $b]";
457 } else {
458 "[$meth $a]";
459 }
460 }
461 my %subr = ( 'n' => sub {$_[0]} );
462 foreach my $op (split " ", $overload::ops{with_assign}) {
463 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
464 }
465 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
466 foreach my $op (split " ", "@overload::ops{ @bins }") {
467 $subr{$op} = eval "sub {shift() $op shift()}";
468 }
469 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
470 $subr{$op} = eval "sub {$op shift()}";
471 }
472 $subr{'++'} = $subr{'+'};
473 $subr{'--'} = $subr{'-'};
474
475 sub num {
476 my ($meth, $a, $b) = @{+shift};
477 my $subr = $subr{$meth}
478 or die "Do not know how to ($meth) in symbolic";
479 $a = $a->num if ref $a eq __PACKAGE__;
480 $b = $b->num if ref $b eq __PACKAGE__;
481 $subr->($a,$b);
482 }
483 sub TIESCALAR { my $pack = shift; $pack->new(@_) }
484 sub FETCH { shift }
485 sub nop { } # Around a bug
486 sub vars { my $p = shift; tie($_, $p), $_->nop foreach @_; }
487 sub STORE {
488 my $obj = shift;
489 $#$obj = 1;
a1063b2d 490 $obj->[1] = shift;
ee239bfe
IZ
491 }
492}
493
494{
495 my $foo = new symbolic 11;
496 my $baz = $foo++;
fdb7e2a2
NC
497 is((sprintf "%d", $foo), '12');
498 is((sprintf "%d", $baz), '11');
ee239bfe
IZ
499 my $bar = $foo;
500 $baz = ++$foo;
fdb7e2a2
NC
501 is((sprintf "%d", $foo), '13');
502 is((sprintf "%d", $bar), '12');
503 is((sprintf "%d", $baz), '13');
ee239bfe
IZ
504 my $ban = $foo;
505 $baz = ($foo += 1);
fdb7e2a2
NC
506 is((sprintf "%d", $foo), '14');
507 is((sprintf "%d", $bar), '12');
508 is((sprintf "%d", $baz), '14');
509 is((sprintf "%d", $ban), '13');
ee239bfe
IZ
510 $baz = 0;
511 $baz = $foo++;
fdb7e2a2
NC
512 is((sprintf "%d", $foo), '15');
513 is((sprintf "%d", $baz), '14');
514 is("$foo", '[++ [+= [++ [++ [n 11] 1] 1] 1] 1]');
ee239bfe
IZ
515}
516
517{
518 my $iter = new symbolic 2;
519 my $side = new symbolic 1;
520 my $cnt = $iter;
521
522 while ($cnt) {
523 $cnt = $cnt - 1; # The "simple" way
524 $side = (sqrt(1 + $side**2) - 1)/$side;
525 }
526 my $pi = $side*(2**($iter+2));
fdb7e2a2
NC
527 is("$side", '[/ [- [sqrt [+ 1 [** [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]] 2]]] 1] [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]]]');
528 is((sprintf "%f", $pi), '3.182598');
ee239bfe
IZ
529}
530
531{
532 my $iter = new symbolic 2;
533 my $side = new symbolic 1;
534 my $cnt = $iter;
535
536 while ($cnt--) {
537 $side = (sqrt(1 + $side**2) - 1)/$side;
538 }
539 my $pi = $side*(2**($iter+2));
fdb7e2a2
NC
540 is("$side", '[/ [- [sqrt [+ 1 [** [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]] 2]]] 1] [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]]]');
541 is((sprintf "%f", $pi), '3.182598');
ee239bfe
IZ
542}
543
544{
545 my ($a, $b);
546 symbolic->vars($a, $b);
547 my $c = sqrt($a**2 + $b**2);
548 $a = 3; $b = 4;
fdb7e2a2 549 is((sprintf "%d", $c), '5');
ee239bfe 550 $a = 12; $b = 5;
fdb7e2a2 551 is((sprintf "%d", $c), '13');
ee239bfe
IZ
552}
553
554{
555 package symbolic1; # Primitive symbolic calculator
556 # Mutator inc/dec
557 use overload nomethod => \&wrap, '""' => \&str, '0+' => \&num, '=' => \&cpy;
558
559 sub new { shift; bless ['n', @_] }
560 sub cpy {
561 my $self = shift;
562 bless [@$self], ref $self;
563 }
564 sub wrap {
565 my ($obj, $other, $inv, $meth) = @_;
566 if ($meth eq '++' or $meth eq '--') {
567 @$obj = ($meth, (bless [@$obj]), 1); # Avoid circular reference
568 return $obj;
569 }
570 ($obj, $other) = ($other, $obj) if $inv;
571 bless [$meth, $obj, $other];
572 }
573 sub str {
574 my ($meth, $a, $b) = @{+shift};
575 $a = 'u' unless defined $a;
576 if (defined $b) {
577 "[$meth $a $b]";
578 } else {
579 "[$meth $a]";
580 }
581 }
582 my %subr = ( 'n' => sub {$_[0]} );
583 foreach my $op (split " ", $overload::ops{with_assign}) {
584 $subr{$op} = $subr{"$op="} = eval "sub {shift() $op shift()}";
585 }
586 my @bins = qw(binary 3way_comparison num_comparison str_comparison);
587 foreach my $op (split " ", "@overload::ops{ @bins }") {
588 $subr{$op} = eval "sub {shift() $op shift()}";
589 }
590 foreach my $op (split " ", "@overload::ops{qw(unary func)}") {
591 $subr{$op} = eval "sub {$op shift()}";
592 }
593 $subr{'++'} = $subr{'+'};
594 $subr{'--'} = $subr{'-'};
595
596 sub num {
597 my ($meth, $a, $b) = @{+shift};
598 my $subr = $subr{$meth}
599 or die "Do not know how to ($meth) in symbolic";
600 $a = $a->num if ref $a eq __PACKAGE__;
601 $b = $b->num if ref $b eq __PACKAGE__;
602 $subr->($a,$b);
603 }
604 sub TIESCALAR { my $pack = shift; $pack->new(@_) }
605 sub FETCH { shift }
7dbf2beb 606 sub vars { my $p = shift; tie($_, $p) foreach @_; }
ee239bfe
IZ
607 sub STORE {
608 my $obj = shift;
609 $#$obj = 1;
a1063b2d 610 $obj->[1] = shift;
ee239bfe
IZ
611 }
612}
613
614{
615 my $foo = new symbolic1 11;
616 my $baz = $foo++;
fdb7e2a2
NC
617 is((sprintf "%d", $foo), '12');
618 is((sprintf "%d", $baz), '11');
ee239bfe
IZ
619 my $bar = $foo;
620 $baz = ++$foo;
fdb7e2a2
NC
621 is((sprintf "%d", $foo), '13');
622 is((sprintf "%d", $bar), '12');
623 is((sprintf "%d", $baz), '13');
ee239bfe
IZ
624 my $ban = $foo;
625 $baz = ($foo += 1);
fdb7e2a2
NC
626 is((sprintf "%d", $foo), '14');
627 is((sprintf "%d", $bar), '12');
628 is((sprintf "%d", $baz), '14');
629 is((sprintf "%d", $ban), '13');
ee239bfe
IZ
630 $baz = 0;
631 $baz = $foo++;
fdb7e2a2
NC
632 is((sprintf "%d", $foo), '15');
633 is((sprintf "%d", $baz), '14');
634 is("$foo", '[++ [+= [++ [++ [n 11] 1] 1] 1] 1]');
ee239bfe
IZ
635}
636
637{
638 my $iter = new symbolic1 2;
639 my $side = new symbolic1 1;
640 my $cnt = $iter;
641
642 while ($cnt) {
643 $cnt = $cnt - 1; # The "simple" way
644 $side = (sqrt(1 + $side**2) - 1)/$side;
645 }
646 my $pi = $side*(2**($iter+2));
fdb7e2a2
NC
647 is("$side", '[/ [- [sqrt [+ 1 [** [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]] 2]]] 1] [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]]]');
648 is((sprintf "%f", $pi), '3.182598');
ee239bfe
IZ
649}
650
651{
652 my $iter = new symbolic1 2;
653 my $side = new symbolic1 1;
654 my $cnt = $iter;
655
656 while ($cnt--) {
657 $side = (sqrt(1 + $side**2) - 1)/$side;
658 }
659 my $pi = $side*(2**($iter+2));
fdb7e2a2
NC
660 is("$side", '[/ [- [sqrt [+ 1 [** [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]] 2]]] 1] [/ [- [sqrt [+ 1 [** [n 1] 2]]] 1] [n 1]]]');
661 is((sprintf "%f", $pi), '3.182598');
ee239bfe
IZ
662}
663
664{
665 my ($a, $b);
666 symbolic1->vars($a, $b);
667 my $c = sqrt($a**2 + $b**2);
668 $a = 3; $b = 4;
fdb7e2a2 669 is((sprintf "%d", $c), '5');
ee239bfe 670 $a = 12; $b = 5;
fdb7e2a2 671 is((sprintf "%d", $c), '13');
ee239bfe
IZ
672}
673
674{
675 package two_face; # Scalars with separate string and
676 # numeric values.
677 sub new { my $p = shift; bless [@_], $p }
678 use overload '""' => \&str, '0+' => \&num, fallback => 1;
679 sub num {shift->[1]}
680 sub str {shift->[0]}
681}
682
683{
684 my $seven = new two_face ("vii", 7);
fdb7e2a2 685 is((sprintf "seven=$seven, seven=%d, eight=%d", $seven, $seven+1),
ee239bfe 686 'seven=vii, seven=7, eight=8');
fdb7e2a2 687 is(scalar ($seven =~ /i/), '1');
ee239bfe 688}
b3ac6de7 689
d0ecd44c
IZ
690{
691 package sorting;
692 use overload 'cmp' => \&comp;
693 sub new { my ($p, $v) = @_; bless \$v, $p }
694 sub comp { my ($x,$y) = @_; ($$x * 3 % 10) <=> ($$y * 3 % 10) or $$x cmp $$y }
695}
696{
697 my @arr = map sorting->new($_), 0..12;
698 my @sorted1 = sort @arr;
699 my @sorted2 = map $$_, @sorted1;
7bf00c86 700 is("@sorted2", '0 10 7 4 1 11 8 5 12 2 9 6 3');
d0ecd44c 701}
f5284f61
IZ
702{
703 package iterator;
704 use overload '<>' => \&iter;
705 sub new { my ($p, $v) = @_; bless \$v, $p }
706 sub iter { my ($x) = @_; return undef if $$x < 0; return $$x--; }
707}
72b16652 708
9426e1a5 709{
f5284f61
IZ
710 my $iter = iterator->new(5);
711 my $acc = '';
712 my $out;
713 $acc .= " $out" while $out = <${iter}>;
7bf00c86 714 is($acc, ' 5 4 3 2 1 0');
f5284f61 715 $iter = iterator->new(5);
7bf00c86 716 is(scalar <${iter}>, '5');
f5284f61 717 $acc = '';
b04ef359 718 $acc .= " $out" while $out = <$iter>;
7bf00c86 719 is($acc, ' 4 3 2 1 0');
f5284f61
IZ
720}
721{
722 package deref;
723 use overload '%{}' => \&hderef, '&{}' => \&cderef,
724 '*{}' => \&gderef, '${}' => \&sderef, '@{}' => \&aderef;
725 sub new { my ($p, $v) = @_; bless \$v, $p }
726 sub deref {
727 my ($self, $key) = (shift, shift);
728 my $class = ref $self;
729 bless $self, 'deref::dummy'; # Disable overloading of %{}
730 my $out = $self->{$key};
731 bless $self, $class; # Restore overloading
732 $out;
733 }
734 sub hderef {shift->deref('h')}
735 sub aderef {shift->deref('a')}
736 sub cderef {shift->deref('c')}
737 sub gderef {shift->deref('g')}
738 sub sderef {shift->deref('s')}
739}
740{
741 my $deref = bless { h => { foo => 5 , fake => 23 },
742 c => sub {return shift() + 34},
743 's' => \123,
744 a => [11..13],
745 g => \*srt,
746 }, 'deref';
747 # Hash:
748 my @cont = sort %$deref;
b0bf6df7 749 if ("\t" eq "\011") { # ASCII
7bf00c86 750 is("@cont", '23 5 fake foo');
f70c35af 751 }
b0bf6df7 752 else { # EBCDIC alpha-numeric sort order
7bf00c86 753 is("@cont", 'fake foo 23 5');
f70c35af 754 }
f5284f61 755 my @keys = sort keys %$deref;
7bf00c86 756 is("@keys", 'fake foo');
f5284f61 757 my @val = sort values %$deref;
7bf00c86
NC
758 is("@val", '23 5');
759 is($deref->{foo}, 5);
760 is(defined $deref->{bar}, '');
f5284f61
IZ
761 my $key;
762 @keys = ();
763 push @keys, $key while $key = each %$deref;
764 @keys = sort @keys;
7bf00c86
NC
765 is("@keys", 'fake foo');
766 is(exists $deref->{bar}, '');
767 is(exists $deref->{foo}, 1);
f5284f61 768 # Code:
7bf00c86
NC
769 is($deref->(5), 39);
770 is(&$deref(6), 40);
f5284f61 771 sub xxx_goto { goto &$deref }
7bf00c86 772 is(xxx_goto(7), 41);
f5284f61
IZ
773 my $srt = bless { c => sub {$b <=> $a}
774 }, 'deref';
775 *srt = \&$srt;
776 my @sorted = sort srt 11, 2, 5, 1, 22;
7bf00c86 777 is("@sorted", '22 11 5 2 1');
f5284f61 778 # Scalar
7bf00c86 779 is($$deref, 123);
c6e96bcb
GS
780 # Code
781 @sorted = sort $srt 11, 2, 5, 1, 22;
7bf00c86 782 is("@sorted", '22 11 5 2 1');
f5284f61 783 # Array
7bf00c86
NC
784 is("@$deref", '11 12 13');
785 is($#$deref, '2');
f5284f61 786 my $l = @$deref;
7bf00c86
NC
787 is($l, 3);
788 is($deref->[2], '13');
f5284f61 789 $l = pop @$deref;
7bf00c86 790 is($l, 13);
f5284f61 791 $l = 1;
7bf00c86 792 is($deref->[$l], '12');
f5284f61
IZ
793 # Repeated dereference
794 my $double = bless { h => $deref,
795 }, 'deref';
7bf00c86 796 is($double->{foo}, 5);
f5284f61
IZ
797}
798
799{
800 package two_refs;
801 use overload '%{}' => \&gethash, '@{}' => sub { ${shift()} };
802 sub new {
803 my $p = shift;
804 bless \ [@_], $p;
805 }
806 sub gethash {
807 my %h;
808 my $self = shift;
809 tie %h, ref $self, $self;
810 \%h;
811 }
812
813 sub TIEHASH { my $p = shift; bless \ shift, $p }
814 my %fields;
815 my $i = 0;
816 $fields{$_} = $i++ foreach qw{zero one two three};
817 sub STORE {
818 my $self = ${shift()};
819 my $key = $fields{shift()};
820 defined $key or die "Out of band access";
821 $$self->[$key] = shift;
822 }
823 sub FETCH {
824 my $self = ${shift()};
825 my $key = $fields{shift()};
826 defined $key or die "Out of band access";
827 $$self->[$key];
828 }
829}
830
831my $bar = new two_refs 3,4,5,6;
832$bar->[2] = 11;
7bf00c86 833is($bar->{two}, 11);
f5284f61 834$bar->{three} = 13;
7bf00c86 835is($bar->[3], 13);
f5284f61
IZ
836
837{
838 package two_refs_o;
839 @ISA = ('two_refs');
840}
841
842$bar = new two_refs_o 3,4,5,6;
843$bar->[2] = 11;
7bf00c86 844is($bar->{two}, 11);
f5284f61 845$bar->{three} = 13;
7bf00c86 846is($bar->[3], 13);
f5284f61
IZ
847
848{
849 package two_refs1;
850 use overload '%{}' => sub { ${shift()}->[1] },
851 '@{}' => sub { ${shift()}->[0] };
852 sub new {
853 my $p = shift;
854 my $a = [@_];
855 my %h;
856 tie %h, $p, $a;
857 bless \ [$a, \%h], $p;
858 }
859 sub gethash {
860 my %h;
861 my $self = shift;
862 tie %h, ref $self, $self;
863 \%h;
864 }
865
866 sub TIEHASH { my $p = shift; bless \ shift, $p }
867 my %fields;
868 my $i = 0;
869 $fields{$_} = $i++ foreach qw{zero one two three};
870 sub STORE {
871 my $a = ${shift()};
872 my $key = $fields{shift()};
873 defined $key or die "Out of band access";
874 $a->[$key] = shift;
875 }
876 sub FETCH {
877 my $a = ${shift()};
878 my $key = $fields{shift()};
879 defined $key or die "Out of band access";
880 $a->[$key];
881 }
882}
883
884$bar = new two_refs_o 3,4,5,6;
885$bar->[2] = 11;
7bf00c86 886is($bar->{two}, 11);
f5284f61 887$bar->{three} = 13;
7bf00c86 888is($bar->[3], 13);
f5284f61
IZ
889
890{
891 package two_refs1_o;
892 @ISA = ('two_refs1');
893}
894
895$bar = new two_refs1_o 3,4,5,6;
896$bar->[2] = 11;
7bf00c86 897is($bar->{two}, 11);
f5284f61 898$bar->{three} = 13;
7bf00c86 899is($bar->[3], 13);
f5284f61 900
fe7ac86a
IZ
901{
902 package B;
903 use overload bool => sub { ${+shift} };
904}
905
906my $aaa;
907{ my $bbbb = 0; $aaa = bless \$bbbb, B }
908
7bf00c86 909is !$aaa, 1;
fe7ac86a
IZ
910
911unless ($aaa) {
7bf00c86 912 pass();
fe7ac86a 913} else {
7bf00c86 914 fail();
fe7ac86a
IZ
915}
916
1426bbf4
MG
917# check that overload isn't done twice by join
918{ my $c = 0;
919 package Join;
920 use overload '""' => sub { $c++ };
921 my $x = join '', bless([]), 'pq', bless([]);
7bf00c86 922 main::is $x, '0pq1';
1426bbf4 923};
fe7ac86a 924
4498a751
PM
925# Test module-specific warning
926{
927 # check the Odd number of arguments for overload::constant warning
928 my $a = "" ;
0a911d86 929 local $SIG{__WARN__} = sub {$a = $_[0]} ;
4498a751 930 $x = eval ' overload::constant "integer" ; ' ;
7bf00c86 931 is($a, "");
4498a751
PM
932 use warnings 'overload' ;
933 $x = eval ' overload::constant "integer" ; ' ;
7bf00c86 934 like($a, qr/^Odd number of arguments for overload::constant at/);
4498a751
PM
935}
936
937{
938 # check the `$_[0]' is not an overloadable type warning
939 my $a = "" ;
0a911d86 940 local $SIG{__WARN__} = sub {$a = $_[0]} ;
4498a751 941 $x = eval ' overload::constant "fred" => sub {} ; ' ;
7bf00c86 942 is($a, "");
4498a751
PM
943 use warnings 'overload' ;
944 $x = eval ' overload::constant "fred" => sub {} ; ' ;
7bf00c86 945 like($a, qr/^`fred' is not an overloadable type at/);
4498a751
PM
946}
947
948{
949 # check the `$_[1]' is not a code reference warning
950 my $a = "" ;
0a911d86 951 local $SIG{__WARN__} = sub {$a = $_[0]} ;
4498a751 952 $x = eval ' overload::constant "integer" => 1; ' ;
7bf00c86 953 is($a, "");
4498a751
PM
954 use warnings 'overload' ;
955 $x = eval ' overload::constant "integer" => 1; ' ;
7bf00c86 956 like($a, qr/^`1' is not a code reference at/);
4498a751
PM
957}
958
78f67eb5
JH
959{
960 my $c = 0;
961 package ov_int1;
962 use overload '""' => sub { 3+shift->[0] },
963 '0+' => sub { 10+shift->[0] },
964 'int' => sub { 100+shift->[0] };
965 sub new {my $p = shift; bless [shift], $p}
966
967 package ov_int2;
968 use overload '""' => sub { 5+shift->[0] },
969 '0+' => sub { 30+shift->[0] },
970 'int' => sub { 'ov_int1'->new(1000+shift->[0]) };
971 sub new {my $p = shift; bless [shift], $p}
972
973 package noov_int;
974 use overload '""' => sub { 2+shift->[0] },
975 '0+' => sub { 9+shift->[0] };
976 sub new {my $p = shift; bless [shift], $p}
977
978 package main;
979
980 my $x = new noov_int 11;
981 my $int_x = int $x;
7bf00c86 982 main::is("$int_x", 20);
78f67eb5
JH
983 $x = new ov_int1 31;
984 $int_x = int $x;
7bf00c86 985 main::is("$int_x", 131);
78f67eb5
JH
986 $x = new ov_int2 51;
987 $int_x = int $x;
7bf00c86 988 main::is("$int_x", 1054);
78f67eb5
JH
989}
990
b0bf6df7 991# make sure that we don't infinitely recurse
1554e226
DC
992{
993 my $c = 0;
994 package Recurse;
995 use overload '""' => sub { shift },
996 '0+' => sub { shift },
997 'bool' => sub { shift },
998 fallback => 1;
999 my $x = bless([]);
7bf00c86
NC
1000 # For some reason beyond me these have to be oks rather than likes.
1001 main::ok("$x" =~ /Recurse=ARRAY/);
1002 main::ok($x);
1003 main::ok($x+0 =~ qr/Recurse=ARRAY/);
11e3e2e4 1004}
78f67eb5 1005
1dc13c17
SC
1006# BugID 20010422.003
1007package Foo;
1008
1009use overload
1010 'bool' => sub { return !$_[0]->is_zero() || undef; }
1011;
1012
1013sub is_zero
1014 {
1015 my $self = shift;
1016 return $self->{var} == 0;
1017 }
1018
1019sub new
1020 {
1021 my $class = shift;
1022 my $self = {};
1023 $self->{var} = shift;
1024 bless $self,$class;
1025 }
1026
1027package main;
1028
1029use strict;
1030
1031my $r = Foo->new(8);
1032$r = Foo->new(0);
78f67eb5 1033
11e3e2e4 1034is(($r || 0), 0);
1554e226 1035
6050d10e
JP
1036package utf8_o;
1037
1038use overload
1039 '""' => sub { return $_[0]->{var}; }
1040 ;
1041
1042sub new
1043 {
1044 my $class = shift;
1045 my $self = {};
1046 $self->{var} = shift;
1047 bless $self,$class;
1048 }
1049
1050package main;
1051
1052
1053my $utfvar = new utf8_o 200.2.1;
11e3e2e4
NC
1054is("$utfvar", 200.2.1); # 223 - stringify
1055is("a$utfvar", "a".200.2.1); # 224 - overload via sv_2pv_flags
6050d10e 1056
446eaa42 1057# 225..227 -- more %{} tests. Hangs in 5.6.0, okay in later releases.
41cb1005
JH
1058# Basically this example implements strong encapsulation: if Hderef::import()
1059# were to eval the overload code in the caller's namespace, the privatisation
1060# would be quite transparent.
1061package Hderef;
1062use overload '%{}' => sub { (caller(0))[0] eq 'Foo' ? $_[0] : die "zap" };
1063package Foo;
1064@Foo::ISA = 'Hderef';
1065sub new { bless {}, shift }
1066sub xet { @_ == 2 ? $_[0]->{$_[1]} :
1067 @_ == 3 ? ($_[0]->{$_[1]} = $_[2]) : undef }
1068package main;
1069my $a = Foo->new;
1070$a->xet('b', 42);
11e3e2e4
NC
1071is ($a->xet('b'), 42);
1072ok (!defined eval { $a->{b} });
1073like ($@, qr/zap/);
41cb1005 1074
29ddfe35
RD
1075{
1076 package t229;
1077 use overload '=' => sub { 42 },
1078 '++' => sub { my $x = ${$_[0]}; $_[0] };
1079 sub new { my $x = 42; bless \$x }
1080
1081 my $warn;
1082 {
1083 local $SIG{__WARN__} = sub { $warn++ };
1084 my $x = t229->new;
1085 my $y = $x;
1086 eval { $y++ };
1087 }
11e3e2e4 1088 main::ok (!$warn);
61f33854
RGS
1089}
1090
1091{
1092 my ($int, $out1, $out2);
1093 {
1094 BEGIN { $int = 0; overload::constant 'integer' => sub {$int++; 17}; }
1095 $out1 = 0;
1096 $out2 = 1;
1097 }
11e3e2e4
NC
1098 is($int, 2, "#24313"); # 230
1099 is($out1, 17, "#24313"); # 231
1100 is($out2, 17, "#24313"); # 232
29ddfe35
RD
1101}
1102
0bdaccee
NC
1103{
1104 package Numify;
1105 use overload (qw(0+ numify fallback 1));
1106
1107 sub new {
1108 my $val = $_[1];
1109 bless \$val, $_[0];
1110 }
1111
1112 sub numify { ${$_[0]} }
1113}
1114
d411a6a9
RD
1115{
1116 package perl31793;
1b1d102f
RD
1117 use overload cmp => sub { 0 };
1118 package perl31793_fb;
76c43448 1119 use overload cmp => sub { 0 }, fallback => 1;
d411a6a9
RD
1120 package main;
1121 my $o = bless [], 'perl31793';
1b1d102f 1122 my $of = bless [], 'perl31793_fb';
d411a6a9 1123 my $no = bless [], 'no_overload';
11e3e2e4
NC
1124 like(overload::StrVal(\"scalar"), qr/^SCALAR\(0x[0-9a-f]+\)$/);
1125 like(overload::StrVal([]), qr/^ARRAY\(0x[0-9a-f]+\)$/);
1126 like(overload::StrVal({}), qr/^HASH\(0x[0-9a-f]+\)$/);
1127 like(overload::StrVal(sub{1}), qr/^CODE\(0x[0-9a-f]+\)$/);
1128 like(overload::StrVal(\*GLOB), qr/^GLOB\(0x[0-9a-f]+\)$/);
1129 like(overload::StrVal(\$o), qr/^REF\(0x[0-9a-f]+\)$/);
0fc92fc6 1130 like(overload::StrVal(qr/a/), qr/^Regexp=REGEXP\(0x[0-9a-f]+\)$/);
11e3e2e4
NC
1131 like(overload::StrVal($o), qr/^perl31793=ARRAY\(0x[0-9a-f]+\)$/);
1132 like(overload::StrVal($of), qr/^perl31793_fb=ARRAY\(0x[0-9a-f]+\)$/);
1133 like(overload::StrVal($no), qr/^no_overload=ARRAY\(0x[0-9a-f]+\)$/);
d411a6a9
RD
1134}
1135
b0bf6df7 1136# These are all check that overloaded values rather than reference addresses
0bdaccee
NC
1137# are what is getting tested.
1138my ($two, $one, $un, $deux) = map {new Numify $_} 2, 1, 1, 2;
1139my ($ein, $zwei) = (1, 2);
1140
1141my %map = (one => 1, un => 1, ein => 1, deux => 2, two => 2, zwei => 2);
1142foreach my $op (qw(<=> == != < <= > >=)) {
1143 foreach my $l (keys %map) {
1144 foreach my $r (keys %map) {
1145 my $ocode = "\$$l $op \$$r";
1146 my $rcode = "$map{$l} $op $map{$r}";
1147
1148 my $got = eval $ocode;
1149 die if $@;
1150 my $expect = eval $rcode;
1151 die if $@;
11e3e2e4 1152 is ($got, $expect, $ocode) or print "# $rcode\n";
0bdaccee
NC
1153 }
1154 }
1155}
131b3ad0
DM
1156{
1157 # check that overloading works in regexes
1158 {
1159 package Foo493;
1160 use overload
1161 '""' => sub { "^$_[0][0]\$" },
1162 '.' => sub {
1163 bless [
1164 $_[2]
1165 ? (ref $_[1] ? $_[1][0] : $_[1]) . ':' .$_[0][0]
1166 : $_[0][0] . ':' . (ref $_[1] ? $_[1][0] : $_[1])
1167 ], 'Foo493'
1168 };
1169 }
1170
1171 my $a = bless [ "a" ], 'Foo493';
11e3e2e4
NC
1172 like('a', qr/$a/);
1173 like('x:a', qr/x$a/);
1174 like('x:a:=', qr/x$a=$/);
1175 like('x:a:a:=', qr/x$a$a=$/);
131b3ad0
DM
1176
1177}
1178
705c898c 1179{
d4b87e75
BM
1180 {
1181 package QRonly;
1182 use overload qr => sub { qr/x/ }, fallback => 1;
1183 }
1184 {
1185 my $x = bless [], "QRonly";
1186
1187 # like tries to be too clever, and decides that $x-stringified
1188 # doesn't look like a regex
1189 ok("x" =~ $x, "qr-only matches");
e4eea578 1190 ok("y" !~ $x, "qr-only doesn't match what it shouldn't");
d4b87e75 1191 ok("xx" =~ /x$x/, "qr-only matches with concat");
e4eea578 1192 like("$x", qr/^QRonly=ARRAY/, "qr-only doesn't have string overload");
d4b87e75
BM
1193
1194 my $qr = bless qr/y/, "QRonly";
1195 ok("x" =~ $qr, "qr with qr-overload uses overload");
e4eea578 1196 ok("y" !~ $qr, "qr with qr-overload uses overload");
d4b87e75
BM
1197 is("$qr", "".qr/y/, "qr with qr-overload stringify");
1198
1199 my $rx = $$qr;
1200 ok("y" =~ $rx, "bare rx with qr-overload doesn't overload match");
e4eea578 1201 ok("x" !~ $rx, "bare rx with qr-overload doesn't overload match");
d4b87e75
BM
1202 is("$rx", "".qr/y/, "bare rx with qr-overload stringify");
1203 }
1204 {
1205 package QRandSTR;
1206 use overload qr => sub { qr/x/ }, q/""/ => sub { "y" };
1207 }
1208 {
1209 my $x = bless [], "QRandSTR";
1210 ok("x" =~ $x, "qr+str uses qr for match");
e4eea578 1211 ok("y" !~ $x, "qr+str uses qr for match");
d4b87e75
BM
1212 ok("xx" =~ /x$x/, "qr+str uses qr for match with concat");
1213 is("$x", "y", "qr+str uses str for stringify");
1214
1215 my $qr = bless qr/z/, "QRandSTR";
1216 is("$qr", "y", "qr with qr+str uses str for stringify");
1217 ok("xx" =~ /x$x/, "qr with qr+str uses qr for match");
1218
1219 my $rx = $$qr;
1220 ok("z" =~ $rx, "bare rx with qr+str doesn't overload match");
1221 is("$rx", "".qr/z/, "bare rx with qr+str doesn't overload stringify");
1222 }
1223 {
1224 package QRany;
1225 use overload qr => sub { $_[0]->(@_) };
1226
1227 package QRself;
1228 use overload qr => sub { $_[0] };
1229 }
1230 {
1231 my $rx = bless sub { ${ qr/x/ } }, "QRany";
e4eea578
RGS
1232 ok("x" =~ $rx, "qr overload accepts a bare rx");
1233 ok("y" !~ $rx, "qr overload accepts a bare rx");
d4b87e75
BM
1234
1235 my $str = bless sub { "x" }, "QRany";
1236 ok(!eval { "x" =~ $str }, "qr overload doesn't accept a string");
e4eea578 1237 like($@, qr/^Overloaded qr did not return a REGEXP/, "correct error");
d4b87e75
BM
1238
1239 my $oqr = bless qr/z/, "QRandSTR";
1240 my $oqro = bless sub { $oqr }, "QRany";
e4eea578 1241 ok("z" =~ $oqro, "qr overload doesn't recurse");
d4b87e75
BM
1242
1243 my $qrs = bless qr/z/, "QRself";
e4eea578 1244 ok("z" =~ $qrs, "qr overload can return self");
d4b87e75
BM
1245 }
1246 {
1247 package STRonly;
1248 use overload q/""/ => sub { "x" };
1249
1250 package STRonlyFB;
1251 use overload q/""/ => sub { "x" }, fallback => 1;
1252 }
1253 {
1254 my $fb = bless [], "STRonlyFB";
e4eea578
RGS
1255 ok("x" =~ $fb, "qr falls back to \"\"");
1256 ok("y" !~ $fb, "qr falls back to \"\"");
d4b87e75
BM
1257
1258 my $nofb = bless [], "STRonly";
e4eea578
RGS
1259 ok("x" =~ $nofb, "qr falls back even without fallback");
1260 ok("y" !~ $nofb, "qr falls back even without fallback");
d4b87e75
BM
1261 }
1262}
1263
1264{
705c898c
RH
1265 my $twenty_three = 23;
1266 # Check that constant overloading propagates into evals
1267 BEGIN { overload::constant integer => sub { 23 } }
11e3e2e4 1268 is(eval "17", $twenty_three);
705c898c 1269}
dd2eae66
NC
1270
1271{
1272 package Sklorsh;
1273 use overload
1274 bool => sub { shift->is_cool };
1275
1276 sub is_cool {
1277 $_[0]->{name} eq 'cool';
1278 }
1279
1280 sub delete {
1281 undef %{$_[0]};
1282 bless $_[0], 'Brap';
1283 return 1;
1284 }
1285
1286 sub delete_with_self {
1287 my $self = shift;
1288 undef %$self;
1289 bless $self, 'Brap';
1290 return 1;
1291 }
1292
1293 package Brap;
1294
1295 1;
1296
1297 package main;
1298
1299 my $obj;
1300 $obj = bless {name => 'cool'}, 'Sklorsh';
1301 $obj->delete;
b0bf6df7 1302 ok(eval {if ($obj) {1}; 1}, $@ || 'reblessed into nonexistent namespace');
dd2eae66
NC
1303
1304 $obj = bless {name => 'cool'}, 'Sklorsh';
1305 $obj->delete_with_self;
1306 ok (eval {if ($obj) {1}; 1}, $@);
1307
1308 my $a = $b = {name => 'hot'};
1309 bless $b, 'Sklorsh';
1310 is(ref $a, 'Sklorsh');
1311 is(ref $b, 'Sklorsh');
1312 ok(!$b, "Expect overloaded boolean");
1313 ok(!$a, "Expect overloaded boolean");
1314}
edbe35ea
VP
1315
1316{
1317 package Flrbbbbb;
1318 use overload
1319 bool => sub { shift->{truth} eq 'yes' },
1320 '0+' => sub { shift->{truth} eq 'yes' ? '1' : '0' },
1321 '!' => sub { shift->{truth} eq 'no' },
1322 fallback => 1;
1323
1324 sub new { my $class = shift; bless { truth => shift }, $class }
1325
1326 package main;
1327
1328 my $yes = Flrbbbbb->new('yes');
1329 my $x;
1330 $x = 1 if $yes; is($x, 1);
1331 $x = 2 unless $yes; is($x, 1);
1332 $x = 3 if !$yes; is($x, 1);
1333 $x = 4 unless !$yes; is($x, 4);
1334
1335 my $no = Flrbbbbb->new('no');
1336 $x = 0;
1337 $x = 1 if $no; is($x, 0);
1338 $x = 2 unless $no; is($x, 2);
1339 $x = 3 if !$no; is($x, 3);
1340 $x = 4 unless !$no; is($x, 3);
1341
1342 $x = 0;
1343 $x = 1 if !$no && $yes; is($x, 1);
1344 $x = 2 unless !$no && $yes; is($x, 1);
1345 $x = 3 if $no || !$yes; is($x, 1);
1346 $x = 4 unless $no || !$yes; is($x, 4);
1347
1348 $x = 0;
1349 $x = 1 if !$no || !$yes; is($x, 1);
1350 $x = 2 unless !$no || !$yes; is($x, 1);
1351 $x = 3 if !$no && !$yes; is($x, 1);
1352 $x = 4 unless !$no && !$yes; is($x, 4);
1353}
1354
ea940d6b 1355{
2372186a
NC
1356 use Scalar::Util 'weaken';
1357
1358 package Shklitza;
1359 use overload '""' => sub {"CLiK KLAK"};
1360
1361 package Ksshfwoom;
2372186a
NC
1362
1363 package main;
1364
1365 my ($obj, $ref);
1366 $obj = bless do {my $a; \$a}, 'Shklitza';
1367 $ref = $obj;
1368
ea940d6b
CBW
1369 is ("$obj", "CLiK KLAK");
1370 is ("$ref", "CLiK KLAK");
2372186a
NC
1371
1372 weaken $ref;
ea940d6b 1373 is ("$ref", "CLiK KLAK");
2372186a
NC
1374
1375 bless $obj, 'Ksshfwoom';
1376
cd75d542
NC
1377 like ($obj, qr/^Ksshfwoom=/);
1378 like ($ref, qr/^Ksshfwoom=/);
2372186a
NC
1379
1380 undef $obj;
1381 is ($ref, undef);
1382}
6dd85743
AF
1383
1384{
1385 package bit;
1386 # bit operations have overloadable assignment variants too
1387
1388 sub new { bless \$_[1], $_[0] }
1389
1390 use overload
1391 "&=" => sub { bit->new($_[0]->val . ' & ' . $_[1]->val) },
1392 "^=" => sub { bit->new($_[0]->val . ' ^ ' . $_[1]->val) },
1393 "|" => sub { bit->new($_[0]->val . ' | ' . $_[1]->val) }, # |= by fallback
1394 ;
1395
1396 sub val { ${$_[0]} }
1397
1398 package main;
1399
1400 my $a = bit->new(my $va = 'a');
1401 my $b = bit->new(my $vb = 'b');
1402
1403 $a &= $b;
1404 is($a->val, 'a & b', "overloaded &= works");
1405
1406 my $c = bit->new(my $vc = 'c');
1407
1408 $b ^= $c;
1409 is($b->val, 'b ^ c', "overloaded ^= works");
1410
1411 my $d = bit->new(my $vd = 'd');
1412
1413 $c |= $d;
1414 is($c->val, 'c | d', "overloaded |= (by fallback) works");
1415}
d11ee47c
RD
1416
1417{
2ab54efd 1418 # comparison operators with nomethod (bug 41546)
d11ee47c
RD
1419 my $warning = "";
1420 my $method;
1421
1422 package nomethod_false;
1423 use overload nomethod => sub { $method = 'nomethod'; 0 };
1424
1425 package nomethod_true;
1426 use overload nomethod => sub { $method= 'nomethod'; 'true' };
1427
1428 package main;
1429 local $^W = 1;
1430 local $SIG{__WARN__} = sub { $warning = $_[0] };
1431
1432 my $f = bless [], 'nomethod_false';
1433 ($warning, $method) = ("", "");
1434 is($f eq 'whatever', 0, 'nomethod makes eq return 0');
1435 is($method, 'nomethod');
1436
1437 my $t = bless [], 'nomethod_true';
1438 ($warning, $method) = ("", "");
1439 is($t eq 'whatever', 'true', 'nomethod makes eq return "true"');
1440 is($method, 'nomethod');
1441 is($warning, "", 'nomethod eq need not return number');
1442
1443 eval q{
1444 package nomethod_false;
1445 use overload cmp => sub { $method = 'cmp'; 0 };
1446 };
1447 $f = bless [], 'nomethod_false';
1448 ($warning, $method) = ("", "");
1449 ok($f eq 'whatever', 'eq falls back to cmp (nomethod not called)');
1450 is($method, 'cmp');
1451
1452 eval q{
1453 package nomethod_true;
1454 use overload cmp => sub { $method = 'cmp'; 'true' };
1455 };
1456 $t = bless [], 'nomethod_true';
1457 ($warning, $method) = ("", "");
1458 ok($t eq 'whatever', 'eq falls back to cmp (nomethod not called)');
1459 is($method, 'cmp');
1460 like($warning, qr/isn't numeric/, 'cmp should return number');
1461
1462}
2c615c57
NC
1463
1464{
2ab54efd
MB
1465 # nomethod called for '!' after attempted fallback
1466 my $nomethod_called = 0;
1467
1468 package nomethod_not;
1469 use overload nomethod => sub { $nomethod_called = 'yes'; };
1470
1471 package main;
1472 my $o = bless [], 'nomethod_not';
1473 my $res = ! $o;
1474
1475 is($nomethod_called, 'yes', "nomethod() is called for '!'");
1476 is($res, 'yes', "nomethod(..., '!') return value propagates");
1477}
1478
1479{
2c615c57 1480 # Subtle bug pre 5.10, as a side effect of the overloading flag being
b0bf6df7 1481 # stored on the reference rather than the referent. Despite the fact that
2c615c57 1482 # objects can only be accessed via references (even internally), the
b0bf6df7 1483 # referent actually knows that it's blessed, not the references. So taking
2c615c57
NC
1484 # a new, unrelated, reference to it gives an object. However, the
1485 # overloading-or-not flag was on the reference prior to 5.10, and taking
1486 # a new reference didn't (use to) copy it.
1487
1488 package kayo;
1489
1490 use overload '""' => sub {${$_[0]}};
1491
1492 sub Pie {
1493 return "$_[0], $_[1]";
1494 }
1495
1496 package main;
1497
1498 my $class = 'kayo';
1499 my $string = 'bam';
1500 my $crunch_eth = bless \$string, $class;
1501
1502 is("$crunch_eth", $string);
1503 is ($crunch_eth->Pie("Meat"), "$string, Meat");
1504
1505 my $wham_eth = \$string;
1506
1507 is("$wham_eth", $string,
1508 'This reference did not have overloading in 5.8.8 and earlier');
1509 is ($crunch_eth->Pie("Apple"), "$string, Apple");
1510
1511 my $class = ref $wham_eth;
1512 $class =~ s/=.*//;
1513
1514 # Bless it back into its own class!
1515 bless $wham_eth, $class;
1516
1517 is("$wham_eth", $string);
1518 is ($crunch_eth->Pie("Blackbird"), "$string, Blackbird");
1519}
c781a409
RD
1520
1521{
1522 package numify_int;
1523 use overload "0+" => sub { $_[0][0] += 1; 42 };
1524 package numify_self;
1525 use overload "0+" => sub { $_[0][0]++; $_[0] };
1526 package numify_other;
1527 use overload "0+" => sub { $_[0][0]++; $_[0][1] = bless [], 'numify_int' };
e28bb1d5 1528 package numify_by_fallback;
800401ee 1529 use overload fallback => 1;
c781a409
RD
1530
1531 package main;
1532 my $o = bless [], 'numify_int';
1533 is(int($o), 42, 'numifies to integer');
1534 is($o->[0], 1, 'int() numifies only once');
1535
1536 my $aref = [];
93521010 1537 my $num_val = int($aref);
c781a409
RD
1538 my $r = bless $aref, 'numify_self';
1539 is(int($r), $num_val, 'numifies to self');
1540 is($r->[0], 1, 'int() numifies once when returning self');
1541
1542 my $s = bless [], 'numify_other';
1543 is(int($s), 42, 'numifies to numification of other object');
1544 is($s->[0], 1, 'int() numifies once when returning other object');
1545 is($s->[1][0], 1, 'returned object numifies too');
e28bb1d5
RD
1546
1547 my $m = bless $aref, 'numify_by_fallback';
1548 is(int($m), $num_val, 'numifies to usual reference value');
800401ee
JH
1549 is(abs($m), $num_val, 'numifies to usual reference value');
1550 is(-$m, -$num_val, 'numifies to usual reference value');
1551 is(0+$m, $num_val, 'numifies to usual reference value');
1552 is($m+0, $num_val, 'numifies to usual reference value');
1553 is($m+$m, 2*$num_val, 'numifies to usual reference value');
1554 is(0-$m, -$num_val, 'numifies to usual reference value');
1555 is(1*$m, $num_val, 'numifies to usual reference value');
9fa8ecf2 1556 is(int($m/1), $num_val, 'numifies to usual reference value');
800401ee
JH
1557 is($m%100, $num_val%100, 'numifies to usual reference value');
1558 is($m**1, $num_val, 'numifies to usual reference value');
1559
1560 is(abs($aref), $num_val, 'abs() of ref');
1561 is(-$aref, -$num_val, 'negative of ref');
1562 is(0+$aref, $num_val, 'ref addition');
1563 is($aref+0, $num_val, 'ref addition');
1564 is($aref+$aref, 2*$num_val, 'ref addition');
1565 is(0-$aref, -$num_val, 'subtraction of ref');
1566 is(1*$aref, $num_val, 'multiplicaton of ref');
9fa8ecf2 1567 is(int($aref/1), $num_val, 'division of ref');
800401ee
JH
1568 is($aref%100, $num_val%100, 'modulo of ref');
1569 is($aref**1, $num_val, 'exponentiation of ref');
c781a409 1570}
800401ee 1571
49c95d58
RD
1572{
1573 package CopyConstructorFallback;
1574 use overload
1575 '++' => sub { "$_[0]"; $_[0] },
1576 fallback => 1;
1577 sub new { bless {} => shift }
1578
1579 package main;
1580
1581 my $o = CopyConstructorFallback->new;
1582 my $x = $o++; # would segfault
1583 my $y = ++$o;
1584 is($x, $o, "copy constructor falls back to assignment (postinc)");
1585 is($y, $o, "copy constructor falls back to assignment (preinc)");
1586}
1587
6f1401dc
DM
1588# only scalar 'x' should currently overload
1589
1590{
1591 package REPEAT;
1592
1593 my ($x,$n, $nm);
1594
1595 use overload
1596 'x' => sub { $x++; 1 },
1597 '0+' => sub { $n++; 1 },
1598 'nomethod' => sub { $nm++; 1 },
1599 'fallback' => 0,
1600 ;
1601
1602 my $s = bless {};
1603
1604 package main;
1605
1606 my @a;
1607 my $count = 3;
1608
1609 ($x,$n,$nm) = (0,0,0);
1610 @a = ((1,2,$s) x $count);
1611 is("$x-$n-$nm", "0-0-0", 'repeat 1');
1612
1613 ($x,$n,$nm) = (0,0,0);
1614 @a = ((1,$s,3) x $count);
1615 is("$x-$n-$nm", "0-0-0", 'repeat 2');
1616
1617 ($x,$n,$nm) = (0,0,0);
1618 @a = ((1,2,3) x $s);
1619 is("$x-$n-$nm", "0-1-0", 'repeat 3');
1620}
1621
1622
1623
1624# RT #57012: magic items need to have mg_get() called before testing for
1625# overload. Lack of this means that overloaded values returned by eg a
1626# tied array didn't call overload methods.
1627# We test here both a tied array and scalar, since the implementation of
1628# tied arrays (and hashes) is such that in rvalue context, mg_get is
1629# called prior to executing the op, while it isn't for a tied scalar.
a02ec77a
DM
1630# We also check that return values are correctly tainted.
1631# We try against two overload packages; one has all expected methods, the
1632# other uses only fallback methods.
6f1401dc
DM
1633
1634{
1635
a02ec77a
DM
1636 # @tests holds a list of test cases. Each elem is an array ref with
1637 # the following entries:
1638 #
1639 # * the value that the overload method should return
1640 #
1641 # * the expression to be evaled. %s is replaced with the
1642 # variable being tested ($ta[0], $ts, or $plain)
1643 #
1644 # * a string listing what functions we expect to be called.
1645 # Each method appends its name in parentheses, so "(=)(+)" means
1646 # we expect the copy constructor and then the add method to be
1647 # called.
1648 #
1649 # * like above, but what should be called for the fallback-only test
1650 # (in this case, nomethod() identifies itself as "(NM:*)" where *
1651 # is the op). If this value is undef, fallback tests are skipped.
1652 #
1653 # * An array ref of expected counts of calls to FETCH/STORE.
1654 # The first three values are:
1655 # 1. the expected number of FETCHs for a tied array
1656 # 2. the expected number of FETCHs for a tied scalar
1657 # 3. the expected number of STOREs
1658 # If there are a further three elements present, then
1659 # these represent the expected counts for the fallback
1660 # version of the tests. If absent, they are assumed to
1661 # be the same as for the full method test
1662 #
1663 # * Under the taint version of the tests, whether we expect
1664 # the result to be tainted (for example comparison ops
1665 # like '==' don't return a tainted value, even if their
1666 # args are.
1667 my @tests;
1668
6f1401dc
DM
1669 my %subs;
1670 my $funcs;
1671 my $use_int;
1672
1673 BEGIN {
1674 # A note on what methods to expect to be called, and
1675 # how many times FETCH/STORE is called:
1676 #
1677 # Mutating ops (+=, ++ etc) trigger a copy ('='), since
7f1e438c 1678 # the code can't distinguish between something that's been copied:
6f1401dc
DM
1679 # $a = foo->new(0); $b = $a; refcnt($$b) == 2
1680 # and overloaded objects stored in ties which will have extra
1681 # refcounts due to the tied_obj magic and entries on the tmps
1682 # stack when returning from FETCH etc. So we always copy.
1683
1684 # This accounts for a '=', and an extra STORE.
1685 # We also have a FETCH returning the final value from the eval,
1686 # plus a FETCH in the overload subs themselves: ($_[0][0])
7f1e438c 1687 # triggers one. However, tied aggregates have a mechanism to prevent
6f1401dc
DM
1688 # multiple fetches between STOREs, which means that the tied
1689 # hash skips doing a FETCH during '='.
1690
a02ec77a
DM
1691 for (qw(+ - * / % ** << >> & | ^)) {
1692 my $op = $_;
1693 $op = '%%' if $op eq '%';
1694 my $e = "%s $op= 3";
6f1401dc
DM
1695 $subs{"$_="} = $e;
1696 # ARRAY FETCH: initial, sub+=, eval-return,
1697 # SCALAR FETCH: initial, sub=, sub+=, eval-return,
1698 # STORE: copy, mutator
a02ec77a
DM
1699 push @tests, [ 18, $e, "(=)($_=)", "(=)(NM:$_=)", [ 3, 4, 2 ], 1 ];
1700
1701 $subs{$_} =
1702 "do { my \$arg = %s; \$_[2] ? (3 $op \$arg) : (\$arg $op 3) }";
6f1401dc
DM
1703 # ARRAY FETCH: initial
1704 # SCALAR FETCH: initial eval-return,
a02ec77a
DM
1705 push @tests, [ 18, "%s $op 3", "($_)", "(NM:$_)", [ 1, 2, 0 ], 1 ];
1706 push @tests, [ 18, "3 $op %s", "($_)", "(NM:$_)", [ 1, 2, 0 ], 1 ];
6f1401dc 1707 }
a02ec77a
DM
1708
1709 # these use string fallback rather than nomethod
1710 for (qw(x .)) {
1711 my $op = $_;
1712 my $e = "%s $op= 3";
1713 $subs{"$_="} = $e;
1714 # For normal case:
1715 # ARRAY FETCH: initial, sub+=, eval-return,
1716 # SCALAR FETCH: initial, sub=, sub+=, eval-return,
1717 # STORE: copy, mutator
1718 # for fallback, we just stringify, so eval-return and copy skipped
c5aa2872
DM
1719
1720 push @tests, [ 18, $e, "(=)($_=)", '("")',
1721 [ 3, 4, 2, 2, 3, 1 ], 1 ];
a02ec77a
DM
1722
1723 $subs{$_} =
1724 "do { my \$arg = %s; \$_[2] ? (3 $op \$arg) : (\$arg $op 3) }";
1725 # ARRAY FETCH: initial
1726 # SCALAR FETCH: initial eval-return,
3bc4ee4c
DM
1727 # with fallback, we just stringify, so eval-return skipped,
1728 # but an extra FETCH happens in sub"", except for 'x',
1729 # which passes a copy of the RV to sub"", avoiding the
1730 # second FETCH
1731
1732 push @tests, [ 18, "%s $op 3", "($_)", '("")',
1733 [ 1, 2, 0, 1, ($_ eq '.' ? 2 : 1), 0 ], 1 ];
1734 next if $_ eq 'x'; # repeat only overloads on LHS
1735 push @tests, [ 18, "3 $op %s", "($_)", '("")',
1736 [ 1, 2, 0, 1, 2, 0 ], 1 ];
a02ec77a
DM
1737 }
1738
6f1401dc
DM
1739 for (qw(++ --)) {
1740 my $pre = "$_%s";
1741 my $post = "%s$_";
1742 $subs{$_} = $pre;
a02ec77a 1743 push @tests,
6f1401dc
DM
1744 # ARRAY FETCH: initial, sub+=, eval-return,
1745 # SCALAR FETCH: initial, sub=, sub+=, eval-return,
1746 # STORE: copy, mutator
a02ec77a 1747 [ 18, $pre, "(=)($_)(\"\")", "(=)(NM:$_)(\"\")", [ 3, 4, 2 ], 1 ],
6f1401dc
DM
1748 # ARRAY FETCH: initial, sub+=
1749 # SCALAR FETCH: initial, sub=, sub+=
1750 # STORE: copy, mutator
a02ec77a 1751 [ 18, $post, "(=)($_)(\"\")", "(=)(NM:$_)(\"\")", [ 2, 3, 2 ], 1 ];
6f1401dc
DM
1752 }
1753
1754 # For the non-mutator ops, we have a initial FETCH,
1755 # an extra FETCH within the sub itself for the scalar option,
1756 # and no STOREs
1757
a02ec77a 1758 for (qw(< <= > >= == != lt le gt ge eq ne)) {
6f1401dc
DM
1759 my $e = "%s $_ 3";
1760 $subs{$_} = $e;
a02ec77a
DM
1761 push @tests, [ 3, $e, "($_)", "(NM:$_)", [ 1, 2, 0 ], 0 ];
1762 }
1763 for (qw(<=> cmp)) {
1764 my $e = "%s $_ 3";
1765 $subs{$_} = $e;
1766 push @tests, [ 3, $e, "($_)", "(NM:$_)", [ 1, 2, 0 ], 1 ];
6f1401dc
DM
1767 }
1768 for (qw(atan2)) {
1769 my $e = "$_ %s, 3";
1770 $subs{$_} = $e;
a02ec77a 1771 push @tests, [ 18, $e, "($_)", "(NM:$_)", [ 1, 2, 0 ], 1 ];
6f1401dc 1772 }
a02ec77a 1773 for (qw(cos sin exp abs log sqrt int ~)) {
6f1401dc
DM
1774 my $e = "$_(%s)";
1775 $subs{$_} = $e;
a02ec77a
DM
1776 push @tests, [ 1.23, $e, "($_)",
1777 ($_ eq 'int' ? '(0+)' : "(NM:$_)") , [ 1, 2, 0 ], 1 ];
1778 }
1779 for (qw(!)) {
1780 my $e = "$_(%s)";
1781 $subs{$_} = $e;
1782 push @tests, [ 1.23, $e, "($_)", '(0+)', [ 1, 2, 0 ], 0 ];
6f1401dc
DM
1783 }
1784 for (qw(-)) {
1785 my $e = "$_(%s)";
1786 $subs{neg} = $e;
a02ec77a 1787 push @tests, [ 18, $e, '(neg)', '(NM:neg)', [ 1, 2, 0 ], 1 ];
6f1401dc
DM
1788 }
1789 my $e = '(%s) ? 1 : 0';
1790 $subs{bool} = $e;
a02ec77a 1791 push @tests, [ 18, $e, '(bool)', '(0+)', [ 1, 2, 0 ], 0 ];
6f1401dc
DM
1792
1793 # note: this is testing unary qr, not binary =~
a02ec77a 1794 $subs{qr} = '(qr/%s/)';
f3ec07c7 1795 push @tests, [ "abc", '"abc" =~ (%s)', '(qr)', '("")', [ 1, 2, 0 ], 0 ];
6f1401dc
DM
1796
1797 $e = '"abc" ~~ (%s)';
1798 $subs{'~~'} = $e;
a02ec77a 1799 push @tests, [ "abc", $e, '(~~)', '(NM:~~)', [ 1, 1, 0 ], 0 ];
6f1401dc
DM
1800
1801 $subs{'-X'} = 'do { my $f = (%s);'
1802 . '$_[1] eq "r" ? (-r ($f)) :'
1803 . '$_[1] eq "e" ? (-e ($f)) :'
1804 . '$_[1] eq "f" ? (-f ($f)) :'
1805 . '$_[1] eq "l" ? (-l ($f)) :'
1806 . '$_[1] eq "t" ? (-t ($f)) :'
1807 . '$_[1] eq "T" ? (-T ($f)) : 0;}';
7f1e438c 1808 # Note - we don't care what these file tests return, as
6f1401dc
DM
1809 # long as the tied and untied versions return the same value.
1810 # The flags below are chosen to test all uses of tryAMAGICftest_MG
1811 for (qw(r e f l t T)) {
40c852de 1812 push @tests, [ 'TEST', "-$_ (%s)", '(-X)', '("")', [ 1, 2, 0 ], 0 ];
6f1401dc
DM
1813 }
1814
1815 $subs{'${}'} = '%s';
a02ec77a 1816 push @tests, [ do {my $s=99; \$s}, '${%s}', '(${})', undef, [ 1, 1, 0 ], 0 ];
6f1401dc
DM
1817
1818 # we skip testing '@{}' here because too much of this test
a02ec77a 1819 # framework involves array dereferences!
6f1401dc
DM
1820
1821 $subs{'%{}'} = '%s';
a02ec77a
DM
1822 push @tests, [ {qw(a 1 b 2 c 3)}, 'join "", sort keys %%{%s}',
1823 '(%{})', undef, [ 1, 2, 0 ], 0 ];
6f1401dc
DM
1824
1825 $subs{'&{}'} = '%s';
a02ec77a
DM
1826 push @tests, [ sub {99}, 'do {&{%s} for 1,2}',
1827 '(&{})(&{})', undef, [ 2, 2, 0 ], 0 ];
6f1401dc
DM
1828
1829 our $RT57012A = 88;
1830 our $RT57012B;
1831 $subs{'*{}'} = '%s';
a02ec77a
DM
1832 push @tests, [ \*RT57012A, '*RT57012B = *{%s}; our $RT57012B',
1833 '(*{})', undef, [ 1, 1, 0 ], 0 ];
6f1401dc 1834
9426e1a5
DM
1835 my $iter_text = ("some random text\n" x 100) . $^X;
1836 open my $iter_fh, '<', \$iter_text
1837 or die "open of \$iter_text gave ($!)\n";
1838 $subs{'<>'} = '<$iter_fh>';
1839 push @tests, [ $iter_fh, '<%s>', '(<>)', undef, [ 1, 1, 0 ], 1 ];
6f1401dc 1840
895b760f
DM
1841 # eval should do tie, overload on its arg before checking taint */
1842 push @tests, [ '1;', 'eval q(eval %s); $@ =~ /Insecure/',
1843 '("")', '("")', [ 1, 2, 0 ], 0 ];
1844
1845
6f1401dc
DM
1846 for my $sub (keys %subs) {
1847 my $term = $subs{$sub};
1848 my $t = sprintf $term, '$_[0][0]';
a02ec77a 1849 my $e ="sub { \$funcs .= '($sub)'; my \$r; if (\$use_int) {"
6f1401dc 1850 . "use integer; \$r = ($t) } else { \$r = ($t) } \$r }";
a02ec77a
DM
1851 $subs{$sub} = eval $e;
1852 die "Compiling sub gave error:\n<$e>\n<$@>\n" if $@;
6f1401dc
DM
1853 }
1854 }
1855
1856 my $fetches;
1857 my $stores;
1858
1859 package RT57012_OV;
1860
6f1401dc
DM
1861 use overload
1862 %subs,
a02ec77a
DM
1863 "=" => sub { $funcs .= '(=)'; bless [ $_[0][0] ] },
1864 '0+' => sub { $funcs .= '(0+)'; 0 + $_[0][0] },
1865 '""' => sub { $funcs .= '("")'; "$_[0][0]" },
1866 ;
1867
1868 package RT57012_OV_FB; # only contains fallback conversion functions
1869
1870 use overload
1871 "=" => sub { $funcs .= '(=)'; bless [ $_[0][0] ] },
1872 '0+' => sub { $funcs .= '(0+)'; 0 + $_[0][0] },
1873 '""' => sub { $funcs .= '("")'; "$_[0][0]" },
1874 "nomethod" => sub {
1875 $funcs .= "(NM:$_[3])";
1876 my $e = defined($_[1])
1877 ? $_[3] eq 'atan2'
1878 ? $_[2]
1879 ? "atan2(\$_[1],\$_[0][0])"
1880 : "atan2(\$_[0][0],\$_[1])"
1881 : $_[2]
1882 ? "\$_[1] $_[3] \$_[0][0]"
1883 : "\$_[0][0] $_[3] \$_[1]"
1884 : $_[3] eq 'neg'
1885 ? "-\$_[0][0]"
1886 : "$_[3](\$_[0][0])";
1887 my $r;
1888 if ($use_int) {
1889 use integer; $r = eval $e;
1890 }
1891 else {
1892 $r = eval $e;
1893 }
1894 ::diag("eval of nomethod <$e> gave <$@>") if $@;
1895 $r;
1896 }
1897
6f1401dc
DM
1898 ;
1899
1900 package RT57012_TIE_S;
1901
1902 my $tie_val;
a02ec77a 1903 sub TIESCALAR { bless [ bless [ $tie_val ], $_[1] ] }
6f1401dc
DM
1904 sub FETCH { $fetches++; $_[0][0] }
1905 sub STORE { $stores++; $_[0][0] = $_[1] }
1906
1907 package RT57012_TIE_A;
1908
1909 sub TIEARRAY { bless [] }
1910 sub FETCH { $fetches++; $_[0][0] }
1911 sub STORE { $stores++; $_[0][$_[1]] = $_[2] }
1912
1913 package main;
1914
a02ec77a
DM
1915 for my $test (@tests) {
1916 my ($val, $sub_term, $exp_funcs, $exp_fb_funcs,
1917 $exp_counts, $exp_taint) = @$test;
1918
1919 my $tainted_val;
1920 {
1921 # create tainted version of $val (unless its a ref)
1922 my $t = substr($^X,0,0);
1923 my $t0 = $t."0";
1924 my $val1 = $val; # use a copy to avoid stringifying original
1925 $tainted_val = ref($val1) ? $val :
1926 ($val1 =~ /^[\d\.]+$/) ? $val+$t0 : $val.$t;
1927 }
1928 $tie_val = $tainted_val;
6f1401dc 1929
6f1401dc
DM
1930 for my $int ('', 'use integer; ') {
1931 $use_int = ($int ne '');
a02ec77a
DM
1932 my $plain = $tainted_val;
1933 my $plain_term = $int . sprintf $sub_term, '$plain';
1934 my $exp = eval $plain_term;
1935 diag("eval of plain_term <$plain_term> gave <$@>") if $@;
1936 is(tainted($exp), $exp_taint,
1937 "<$plain_term> taint of expected return");
1938
1939 for my $ov_pkg (qw(RT57012_OV RT57012_OV_FB)) {
a02ec77a
DM
1940 next if $ov_pkg eq 'RT57012_OV_FB'
1941 and not defined $exp_fb_funcs;
1942 my ($exp_fetch_a, $exp_fetch_s, $exp_store) =
1943 ($ov_pkg eq 'RT57012_OV' || @$exp_counts < 4)
1944 ? @$exp_counts[0,1,2]
1945 : @$exp_counts[3,4,5];
1946
1947 tie my $ts, 'RT57012_TIE_S', $ov_pkg;
6f1401dc 1948 tie my @ta, 'RT57012_TIE_A';
a02ec77a
DM
1949 $ta[0] = bless [ $tainted_val ], $ov_pkg;
1950 my $oload = bless [ $tainted_val ], $ov_pkg;
1951
9426e1a5
DM
1952 for my $var ('$ta[0]', '$ts', '$oload',
1953 ($sub_term eq '<%s>' ? '${ts}' : ())
1954 ) {
a02ec77a
DM
1955
1956 $funcs = '';
1957 $fetches = 0;
1958 $stores = 0;
1959
1960 my $res_term = $int . sprintf $sub_term, $var;
1961 my $desc = "<$res_term> $ov_pkg" ;
1962 my $res = eval $res_term;
1963 diag("eval of res_term $desc gave <$@>") if $@;
7f1e438c 1964 # uniquely, the inc/dec ops return the original
a02ec77a
DM
1965 # ref rather than a copy, so stringify it to
1966 # find out if its tainted
1967 $res = "$res" if $res_term =~ /\+\+|--/;
1968 is(tainted($res), $exp_taint,
1969 "$desc taint of result return");
a02ec77a
DM
1970 is($res, $exp, "$desc return value");
1971 my $fns =($ov_pkg eq 'RT57012_OV_FB')
1972 ? $exp_fb_funcs : $exp_funcs;
1973 if ($var eq '$oload' && $res_term !~ /oload(\+\+|--)/) {
1974 # non-tied overloading doesn't trigger a copy
1975 # except for post inc/dec
1976 $fns =~ s/^\(=\)//;
1977 }
1978 is($funcs, $fns, "$desc methods called");
1979 next if $var eq '$oload';
1980 my $exp_fetch = ($var eq '$ts') ?
1981 $exp_fetch_s : $exp_fetch_a;
1982 is($fetches, $exp_fetch, "$desc FETCH count");
1983 is($stores, $exp_store, "$desc STORE count");
1984
1985 }
1986
6f1401dc
DM
1987 }
1988 }
1989 }
1990}
1991
25222ff9
FC
1992# Test overload from the main package
1993fresh_perl_is
1994 '$^W = 1; use overload q\""\ => sub {"ning"}; print bless []',
1995 'ning',
1996 { switches => ['-wl'], stderr => 1 },
1997 'use overload from the main package'
1998;
1999
56f08af2
FC
2000{
2001 package blessed_methods;
2002 use overload '+' => sub {};
2003 bless overload::Method __PACKAGE__,'+';
2004 eval { overload::Method __PACKAGE__,'+' };
2005 ::is($@, '', 'overload::Method and blessed overload methods');
2006}
2007
bf5522a1
MB
2008{
2009 # fallback to 'cmp' and '<=>' with heterogeneous operands
2010 # [perl #71286]
2011 my $not_found = 'no method found';
2012 my $used = 0;
2013 package CmpBase;
2014 sub new {
2015 my $n = $_[1] || 0;
2016 bless \$n, ref $_[0] || $_[0];
2017 }
2018 sub cmp {
2019 $used = \$_[0];
2020 (${$_[0]} <=> ${$_[1]}) * ($_[2] ? -1 : 1);
2021 }
2022
2023 package NCmp;
2024 use base 'CmpBase';
2025 use overload '<=>' => 'cmp';
2026
2027 package SCmp;
2028 use base 'CmpBase';
2029 use overload 'cmp' => 'cmp';
2030
2031 package main;
2032 my $n = NCmp->new(5);
2033 my $s = SCmp->new(3);
2034 my $res;
2035
2036 eval { $res = $n > $s; };
2037 $res = $not_found if $@ =~ /$not_found/;
2038 is($res, 1, 'A>B using A<=> when B overloaded, no B<=>');
2039
2040 eval { $res = $s < $n; };
2041 $res = $not_found if $@ =~ /$not_found/;
2042 is($res, 1, 'A<B using B<=> when A overloaded, no A<=>');
2043
2044 eval { $res = $s lt $n; };
2045 $res = $not_found if $@ =~ /$not_found/;
2046 is($res, 1, 'A lt B using A:cmp when B overloaded, no B:cmp');
2047
2048 eval { $res = $n gt $s; };
2049 $res = $not_found if $@ =~ /$not_found/;
2050 is($res, 1, 'A gt B using B:cmp when A overloaded, no A:cmp');
2051
2052 my $o = NCmp->new(9);
2053 $res = $n < $o;
2054 is($used, \$n, 'A < B uses <=> from A in preference to B');
2055
2056 my $t = SCmp->new(7);
2057 $res = $s lt $t;
2058 is($used, \$s, 'A lt B uses cmp from A in preference to B');
2059}
2060
2061{
2062 # Combinatorial testing of 'fallback' and 'nomethod'
2063 # [perl #71286]
2064 package NuMB;
2065 use overload '0+' => sub { ${$_[0]}; },
2066 '""' => 'str';
2067 sub new {
2068 my $self = shift;
2069 my $n = @_ ? shift : 0;
2070 bless my $obj = \$n, ref $self || $self;
2071 }
2072 sub str {
2073 no strict qw/refs/;
2074 my $s = "(${$_[0]} ";
2075 $s .= "nomethod, " if defined ${ref($_[0]).'::(nomethod'};
2076 my $fb = ${ref($_[0]).'::()'};
2077 $s .= "fb=" . (defined $fb ? 0 + $fb : 'undef') . ")";
2078 }
2079 sub nomethod { "${$_[0]}.nomethod"; }
2080
2081 # create classes for tests
2082 package main;
2083 my @falls = (0, 'undef', 1);
2084 my @nomethods = ('', 'nomethod');
2085 my $not_found = 'no method found';
2086 for my $fall (@falls) {
2087 for my $nomethod (@nomethods) {
2088 my $nomethod_decl = $nomethod
2089 ? $nomethod . "=>'nomethod'," : '';
2090 eval qq{
2091 package NuMB$fall$nomethod;
2092 use base qw/NuMB/;
2093 use overload $nomethod_decl
2094 fallback => $fall;
2095 };
2096 }
2097 }
2098
2099 # operation and precedence of 'fallback' and 'nomethod'
2100 # for all combinations with 2 overloaded operands
2101 for my $nomethod2 (@nomethods) {
2102 for my $nomethod1 (@nomethods) {
2103 for my $fall2 (@falls) {
2104 my $pack2 = "NuMB$fall2$nomethod2";
2105 for my $fall1 (@falls) {
2106 my $pack1 = "NuMB$fall1$nomethod1";
2107 my ($test, $out, $exp);
2108 eval qq{
2109 my \$x = $pack1->new(2);
2110 my \$y = $pack2->new(3);
2111 \$test = "\$x" . ' * ' . "\$y";
2112 \$out = \$x * \$y;
2113 };
2114 $out = $not_found if $@ =~ /$not_found/;
2115 $exp = $nomethod1 ? '2.nomethod' :
2116 $nomethod2 ? '3.nomethod' :
2117 $fall1 eq '1' && $fall2 eq '1' ? 6
2118 : $not_found;
2119 is($out, $exp, "$test --> $exp");
2120 }
2121 }
2122 }
2123 }
2124
2125 # operation of 'fallback' and 'nomethod'
2126 # where the other operand is not overloaded
2127 for my $nomethod (@nomethods) {
2128 for my $fall (@falls) {
2129 my ($test, $out, $exp);
2130 eval qq{
2131 my \$x = NuMB$fall$nomethod->new(2);
2132 \$test = "\$x" . ' * 3';
2133 \$out = \$x * 3;
2134 };
2135 $out = $not_found if $@ =~ /$not_found/;
2136 $exp = $nomethod ? '2.nomethod' :
2137 $fall eq '1' ? 6
2138 : $not_found;
2139 is($out, $exp, "$test --> $exp");
2140
2141 eval qq{
2142 my \$x = NuMB$fall$nomethod->new(2);
2143 \$test = '3 * ' . "\$x";
2144 \$out = 3 * \$x;
2145 };
2146 $out = $not_found if $@ =~ /$not_found/;
2147 is($out, $exp, "$test --> $exp");
2148 }
2149 }
2150}
2151
bff33ce0
DM
2152# since 5.6 overloaded <> was leaving an extra arg on the stack!
2153
2154{
2155 package Iter1;
2156 use overload '<>' => sub { 11 };
2157 package main;
2158 my $a = bless [], 'Iter1';
2159 my $x;
2160 my @a = (10, ($x = <$a>), 12);
2161 is ($a[0], 10, 'Iter1: a[0]');
2162 is ($a[1], 11, 'Iter1: a[1]');
2163 is ($a[2], 12, 'Iter1: a[2]');
2164 @a = (10, ($x .= <$a>), 12);
2165 is ($a[0], 10, 'Iter1: a[0] concat');
2166 is ($a[1], 1111, 'Iter1: a[1] concat');
2167 is ($a[2], 12, 'Iter1: a[2] concat');
2168}
bf5522a1 2169
5e2699c2
FC
2170# Some tests for error messages
2171{
2172 package Justus;
2173 use overload '+' => 'justice';
2174 eval {bless[]};
2175 ::like $@, qr/^Can't resolve method "justice" overloading "\+" in p(?x:
2176 )ackage "overload" at /,
2177 'Error message when explicitly named overload method does not exist';
2178
2179 package JustUs;
2180 our @ISA = 'JustYou';
2181 package JustYou { use overload '+' => 'injustice'; }
2182 "JustUs"->${\"(+"};
2183 eval {bless []};
2184 ::like $@, qr/^Stub found while resolving method "\?{3}" overloadin(?x:
2185 )g "\+" in package "overload" at /,
2186 'Error message when sub stub is encountered';
2187}
bf5522a1 2188
800401ee 2189# EOF