This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Follow-up to d34a6664
[perl5.git] / t / op / gmagic.t
CommitLineData
8d6d96c1
HS
1#!./perl -w
2
3BEGIN {
8d6d96c1
HS
4 chdir 't' if -d 't';
5 @INC = '../lib';
ead3e279 6 require './test.pl';
8d6d96c1
HS
7}
8
ead3e279 9use strict;
8d6d96c1 10
8d6d96c1
HS
11tie my $c => 'Tie::Monitor';
12
ead3e279
NC
13sub expected_tie_calls {
14 my ($obj, $rexp, $wexp) = @_;
15 local $::Level = $::Level + 1;
16 my ($rgot, $wgot) = $obj->init();
17 is ($rgot, $rexp);
18 is ($wgot, $wexp);
8d6d96c1
HS
19}
20
ead3e279 21# Use ok() instead of is(), cmp_ok() etc, to strictly control number of accesses
8d6d96c1 22my($r, $s);
ead3e279
NC
23ok($r = $c + 0 == 0, 'the thing itself');
24expected_tie_calls(tied $c, 1, 0);
25ok($r = "$c" eq '0', 'the thing itself');
26expected_tie_calls(tied $c, 1, 0);
27
28ok($c . 'x' eq '0x', 'concat');
29expected_tie_calls(tied $c, 1, 0);
30ok('x' . $c eq 'x0', 'concat');
31expected_tie_calls(tied $c, 1, 0);
8d6d96c1 32$s = $c . $c;
ead3e279
NC
33ok($s eq '00', 'concat');
34expected_tie_calls(tied $c, 2, 0);
8d6d96c1
HS
35$r = 'x';
36$s = $c = $r . 'y';
ead3e279
NC
37ok($s eq 'xy', 'concat');
38expected_tie_calls(tied $c, 1, 1);
8d6d96c1 39$s = $c = $c . 'x';
ead3e279
NC
40ok($s eq '0x', 'concat');
41expected_tie_calls(tied $c, 2, 1);
8d6d96c1 42$s = $c = 'x' . $c;
ead3e279
NC
43ok($s eq 'x0', 'concat');
44expected_tie_calls(tied $c, 2, 1);
8d6d96c1 45$s = $c = $c . $c;
ead3e279
NC
46ok($s eq '00', 'concat');
47expected_tie_calls(tied $c, 3, 1);
8d6d96c1 48
1e968d83 49$s = chop($c);
ead3e279
NC
50ok($s eq '0', 'multiple magic in core functions');
51expected_tie_calls(tied $c, 1, 1);
1e968d83 52
5cf4b255 53# was a glob
ead3e279 54my $tied_to = tied $c;
5cf4b255
FC
55$c = *strat;
56$s = $c;
ead3e279
NC
57ok($s eq *strat,
58 'Assignment should not ignore magic when the last thing assigned was a glob');
59expected_tie_calls($tied_to, 1, 1);
5cf4b255 60
f64c9ac5
FC
61# A plain *foo should not call get-magic on *foo.
62# This method of scalar-tying an immutable glob relies on details of the
63# current implementation that are subject to change. This test may need to
64# be rewritten if they do change.
65my $tyre = tie $::{gelp} => 'Tie::Monitor';
66# Compilation of this eval autovivifies the *gelp glob.
67eval '$tyre->init(0); () = \*gelp';
68my($rgot, $wgot) = $tyre->init(0);
ead3e279
NC
69ok($rgot == 0, 'a plain *foo causes no get-magic');
70ok($wgot == 0, 'a plain *foo causes no set-magic');
f64c9ac5 71
ead3e279 72done_testing();
5cf4b255 73
8d6d96c1
HS
74# adapted from Tie::Counter by Abigail
75package Tie::Monitor;
76
77sub TIESCALAR {
78 my($class, $value) = @_;
79 bless {
80 read => 0,
81 write => 0,
82 values => [ 0 ],
83 };
84}
85
86sub FETCH {
87 my $self = shift;
88 ++$self->{read};
89 $self->{values}[$#{ $self->{values} }];
90}
91
92sub STORE {
93 my($self, $value) = @_;
94 ++$self->{write};
95 push @{ $self->{values} }, $value;
96}
97
98sub init {
99 my $self = shift;
100 my @results = ($self->{read}, $self->{write});
101 $self->{read} = $self->{write} = 0;
102 $self->{values} = [ 0 ];
103 @results;
104}