Rewrite tests for objects and ~~
[p5sagit/p5-mst-13.2.git] / t / op / attrs.t
CommitLineData
9c6390c7 1#!./perl
09bef843 2
3# Regression tests for attributes.pm and the C< : attrs> syntax.
4
9c6390c7 5use warnings;
6
09bef843 7BEGIN {
8 chdir 't' if -d 't';
20822f61 9 @INC = '../lib';
1ce0b88c 10 require './test.pl';
09bef843 11}
12
8e5dadda 13plan 83;
09bef843 14
15$SIG{__WARN__} = sub { die @_ };
16
42262798 17sub eval_ok ($;$) {
18 eval shift;
19 is( $@, '', @_);
09bef843 20}
21
8e5dadda 22our $anon1; eval_ok '$anon1 = sub : method { $_[0]++ }';
09bef843 23
24eval 'sub e1 ($) : plugh ;';
1ce0b88c 25like $@, qr/^Invalid CODE attributes?: ["']?plugh["']? at/;
09bef843 26
27eval 'sub e2 ($) : plugh(0,0) xyzzy ;';
1ce0b88c 28like $@, qr/^Invalid CODE attributes: ["']?plugh\(0,0\)["']? /;
09bef843 29
30eval 'sub e3 ($) : plugh(0,0 xyzzy ;';
1ce0b88c 31like $@, qr/Unterminated attribute parameter in attribute list at/;
09bef843 32
33eval 'sub e4 ($) : plugh + xyzzy ;';
1ce0b88c 34like $@, qr/Invalid separator character '[+]' in attribute list at/;
35
36eval_ok 'my main $x : = 0;';
37eval_ok 'my $x : = 0;';
38eval_ok 'my $x ;';
39eval_ok 'my ($x) : = 0;';
40eval_ok 'my ($x) ;';
41eval_ok 'my ($x) : ;';
42eval_ok 'my ($x,$y) : = 0;';
43eval_ok 'my ($x,$y) ;';
44eval_ok 'my ($x,$y) : ;';
09bef843 45
46eval 'my ($x,$y) : plugh;';
1ce0b88c 47like $@, qr/^Invalid SCALAR attribute: ["']?plugh["']? at/;
09bef843 48
8e7ae056 49# bug #16080
50eval '{my $x : plugh}';
51like $@, qr/^Invalid SCALAR attribute: ["']?plugh["']? at/;
52eval '{my ($x,$y) : plugh(})}';
53like $@, qr/^Invalid SCALAR attribute: ["']?plugh\(}\)["']? at/;
54
c9124e92 55# More syntax tests from the attributes manpage
56eval 'my $x : switch(10,foo(7,3)) : expensive;';
57like $@, qr/^Invalid SCALAR attributes: ["']?switch\(10,foo\(7,3\)\) : expensive["']? at/;
58eval q/my $x : Ugly('\(") :Bad;/;
59like $@, qr/^Invalid SCALAR attributes: ["']?Ugly\('\\\("\) : Bad["']? at/;
60eval 'my $x : _5x5;';
61like $@, qr/^Invalid SCALAR attribute: ["']?_5x5["']? at/;
62eval 'my $x : locked method;';
63like $@, qr/^Invalid SCALAR attributes: ["']?locked : method["']? at/;
64eval 'my $x : switch(10,foo();';
65like $@, qr/^Unterminated attribute parameter in attribute list at/;
66eval q/my $x : Ugly('(');/;
67like $@, qr/^Unterminated attribute parameter in attribute list at/;
68eval 'my $x : 5x5;';
69like $@, qr/error/;
70eval 'my $x : Y2::north;';
71like $@, qr/Invalid separator character ':' in attribute list at/;
72
09bef843 73sub A::MODIFY_SCALAR_ATTRIBUTES { return }
74eval 'my A $x : plugh;';
1ce0b88c 75like $@, qr/^SCALAR package attribute may clash with future reserved word: ["']?plugh["']? at/;
09bef843 76
77eval 'my A $x : plugh plover;';
1ce0b88c 78like $@, qr/^SCALAR package attributes may clash with future reserved words: ["']?plugh["']? /;
09bef843 79
9c6390c7 80no warnings 'reserved';
81eval 'my A $x : plugh;';
82is $@, '';
83
3f8f4626 84eval 'package Cat; my Cat @socks;';
1ce0b88c 85like $@, qr/^Can't declare class for non-scalar \@socks in "my"/;
3f8f4626 86
09bef843 87sub X::MODIFY_CODE_ATTRIBUTES { die "$_[0]" }
88sub X::foo { 1 }
89*Y::bar = \&X::foo;
90*Y::bar = \&X::foo; # second time for -w
0256094b 91eval 'package Z; sub Y::bar : foo';
1ce0b88c 92like $@, qr/^X at /;
09bef843 93
09bef843 94@attrs = eval 'attributes::get $anon1';
8e5dadda 95is "@attrs", "method";
09bef843 96
97sub Z::DESTROY { }
98sub Z::FETCH_CODE_ATTRIBUTES { return 'Z' }
8e5dadda 99my $thunk = eval 'bless +sub : method { 1 }, "Z"';
1ce0b88c 100is ref($thunk), "Z";
09bef843 101
102@attrs = eval 'attributes::get $thunk';
8e5dadda 103is "@attrs", "method Z";
09bef843 104
61dbb99a 105# Test attributes on predeclared subroutines:
106eval 'package A; sub PS : lvalue';
107@attrs = eval 'attributes::get \&A::PS';
108is "@attrs", "lvalue";
109
d3cea301 110# Test ability to modify existing sub's (or XSUB's) attributes.
111eval 'package A; sub X { $_[0] } sub X : lvalue';
112@attrs = eval 'attributes::get \&A::X';
1ce0b88c 113is "@attrs", "lvalue";
d3cea301 114
020f0e03 115# Above not with just 'pure' built-in attributes.
116sub Z::MODIFY_CODE_ATTRIBUTES { (); }
117eval 'package Z; sub L { $_[0] } sub L : Z lvalue';
118@attrs = eval 'attributes::get \&Z::L';
1ce0b88c 119is "@attrs", "lvalue Z";
020f0e03 120
95f0a2f1 121# Begin testing attributes that tie
122
123{
124 package Ttie;
125 sub DESTROY {}
126 sub TIESCALAR { my $x = $_[1]; bless \$x, $_[0]; }
127 sub FETCH { ${$_[0]} }
128 sub STORE {
1ce0b88c 129 ::pass;
95f0a2f1 130 ${$_[0]} = $_[1]*2;
131 }
132 package Tloop;
133 sub MODIFY_SCALAR_ATTRIBUTES { tie ${$_[1]}, 'Ttie', -1; (); }
134}
135
1ce0b88c 136eval_ok '
95f0a2f1 137 package Tloop;
138 for my $i (0..2) {
139 my $x : TieLoop = $i;
1ce0b88c 140 $x != $i*2 and ::is $x, $i*2;
95f0a2f1 141 }
142';
09bef843 143
1ce0b88c 144# bug #15898
145eval 'our ${""} : foo = 1';
fab01b8e 146like $@, qr/Can't declare scalar dereference in "our"/;
1ce0b88c 147eval 'my $$foo : bar = 1';
fab01b8e 148like $@, qr/Can't declare scalar dereference in "my"/;
42262798 149
150
c32124fe 151my @code = qw(lvalue method);
f1a3ce43 152my @other = qw(shared);
153my @deprecated = qw(locked unique);
42262798 154my %valid;
155$valid{CODE} = {map {$_ => 1} @code};
156$valid{SCALAR} = {map {$_ => 1} @other};
157$valid{ARRAY} = $valid{HASH} = $valid{SCALAR};
c32124fe 158my %deprecated;
159$deprecated{CODE} = { locked => 1 };
f1a3ce43 160$deprecated{ARRAY} = $deprecated{HASH} = $deprecated{SCALAR} = { unique => 1 };
42262798 161
adb2fcba 162our ($scalar, @array, %hash);
42262798 163foreach my $value (\&foo, \$scalar, \@array, \%hash) {
164 my $type = ref $value;
165 foreach my $negate ('', '-') {
c32124fe 166 foreach my $attr (@code, @other, @deprecated) {
42262798 167 my $attribute = $negate . $attr;
168 eval "use attributes __PACKAGE__, \$value, '$attribute'";
c32124fe 169 if ($deprecated{$type}{$attr}) {
170 like $@, qr/^Attribute "$attr" is deprecated at \(eval \d+\)/,
171 "$type attribute $attribute deprecated";
172 } elsif ($valid{$type}{$attr}) {
42262798 173 if ($attribute eq '-shared') {
174 like $@, qr/^A variable may not be unshared/;
175 } else {
176 is( $@, '', "$type attribute $attribute");
177 }
178 } else {
179 like $@, qr/^Invalid $type attribute: $attribute/,
180 "Bogus $type attribute $attribute should fail";
181 }
182 }
183 }
184}
6e592b3a 185
186# this will segfault if it fails
187sub PVBM () { 'foo' }
188{ my $dummy = index 'foo', PVBM }
189
190ok !defined(attributes::get(\PVBM)),
191 'PVBMs don\'t segfault attributes::get';