This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
dc49edd6f79a273189ca2027cc404f92f0df54d4
[perl5.git] / t / op / lvref.t
1 BEGIN {
2     chdir 't';
3     require './test.pl';
4     set_up_inc("../lib");
5 }
6
7 plan 102;
8
9 sub on { $::TODO = ' ' }
10 sub off{ $::TODO = ''  }
11
12 eval '\$x = \$y';
13 like $@, qr/^Experimental lvalue references not enabled/,
14     'error when feature is disabled';
15 eval '\($x) = \$y';
16 like $@, qr/^Experimental lvalue references not enabled/,
17     'error when feature is disabled (aassign)';
18
19 use feature 'lvalue_refs';
20
21 {
22     my($w,$c);
23     local $SIG{__WARN__} = sub { $c++; $w = shift };
24     eval '\$x = \$y';
25     is $c, 1, 'one warning from lv ref assignment';
26     like $w, qr/^Lvalue references are experimental/,
27         'experimental warning';
28     undef $c;
29     eval '\($x) = \$y';
30     is $c, 1, 'one warning from lv ref list assignment';
31     like $w, qr/^Lvalue references are experimental/,
32         'experimental warning';
33 }
34
35 no warnings 'experimental::lvalue_refs';
36
37 # Scalars
38
39 eval '\$x = \$y';
40 is \$x, \$y, '\$pkg_scalar = ...';
41 my $m;
42 \$m = \$y;
43 is \$m, \$y, '\$lexical = ...';
44 \my $n = \$y;
45 is \$n, \$y, '\my $lexical = ...';
46 @_ = \$_;
47 \($x) = @_;
48 is \$x, \$_, '\($pkgvar) = ... gives list context';
49 undef *x;
50 (\$x) = @_;
51 is \$x, \$_, '(\$pkgvar) = ... gives list context';
52 my $o;
53 \($o) = @_;
54 is \$o, \$_, '\($lexical) = ... gives list cx';
55 my $q;
56 (\$q) = @_;
57 is \$q, \$_, '(\$lexical) = ... gives list cx';
58 \(my $p) = @_;
59 is \$p, \$_, '\(my $lexical) = ... gives list cx';
60 (\my $r) = @_;
61 is \$r, \$_, '(\my $lexical) = ... gives list cx';
62 \my($s) = @_;
63 is \$s, \$_, '\my($lexical) = ... gives list cx';
64 \($_a, my $a) = @{[\$b, \$c]};
65 is \$_a, \$b, 'package scalar in \(...)';
66 is \$a, \$c, 'lex scalar in \(...)';
67 (\$_b, \my $b) = @{[\$b, \$c]};
68 is \$_b, \$::b, 'package scalar in (\$foo, \$bar)';
69 is \$b, \$c, 'lex scalar in (\$foo, \$bar)';
70 is do { \local $l = \3; $l }, 3, '\local $scalar assignment';
71 is $l, undef, 'localisation unwound';
72 is do { \(local $l) = \4; $l }, 4, '\(local $scalar) assignment';
73 is $l, undef, 'localisation unwound';
74 \$foo = \*bar;
75 is *foo{SCALAR}, *bar{GLOB}, 'globref-to-scalarref assignment';
76
77 # Array Elements
78
79 sub expect_scalar_cx { wantarray ? 0 : \$_ }
80 sub expect_list_cx { wantarray ? (\$_,\$_) : 0 }
81 \$a[0] = expect_scalar_cx;
82 is \$a[0], \$_, '\$array[0]';
83 \($a[1]) = expect_list_cx;
84 is \$a[1], \$_, '\($array[0])';
85 {
86   my @a;
87   \$a[0] = expect_scalar_cx;
88   is \$a[0], \$_, '\$lexical_array[0]';
89   \($a[1]) = expect_list_cx;
90   is \$a[1], \$_, '\($lexical_array[0])';
91   my $tmp;
92   {
93     \local $a[0] = \$tmp;
94     is \$a[0], \$tmp, '\local $a[0]';
95   }
96   is \$a[0], \$_, '\local $a[0] unwound';
97   {
98     \local ($a[1]) = \$tmp;
99     is \$a[1], \$tmp, '\local ($a[0])';
100   }
101   is \$a[1], \$_, '\local $a[0] unwound';
102 }
103 {
104   my @a;
105   \@a[0,1] = expect_list_cx;
106   is \$a[0].\$a[1], \$_.\$_, '\@array[indices]';
107   \(@a[2,3]) = expect_list_cx;
108   is \$a[0].\$a[1], \$_.\$_, '\(@array[indices])';
109   my $tmp;
110   {
111     \local @a[0,1] = (\$tmp)x2;
112     is \$a[0].\$a[1], \$tmp.\$tmp, '\local @a[indices]';
113   }
114   is \$a[0].\$a[1], \$_.\$_, '\local @a[indices] unwound';
115 }
116
117 # Hash Elements
118
119 \$h{a} = expect_scalar_cx;
120 is \$h{a}, \$_, '\$hash{a}';
121 \($h{b}) = expect_list_cx;
122 is \$h{b}, \$_, '\($hash{a})';
123 {
124   my @h;
125   \$h{a} = expect_scalar_cx;
126   is \$h{a}, \$_, '\$lexical_array{a}';
127   \($h{b}) = expect_list_cx;
128   is \$h{b}, \$_, '\($lexical_array{a})';
129   my $tmp;
130   {
131     \local $h{a} = \$tmp;
132     is \$h{a}, \$tmp, '\local $h{a}';
133   }
134   is \$h{a}, \$_, '\local $h{a} unwound';
135   {
136     \local ($h{b}) = \$tmp;
137     is \$h{b}, \$tmp, '\local ($h{a})';
138   }
139   is \$h{b}, \$_, '\local $h{a} unwound';
140 }
141 {
142   my @h;
143   \@h{"a","b"} = expect_list_cx;
144   is \$h{a}.\$h{b}, \$_.\$_, '\@hash{indices}';
145   \(@h{2,3}) = expect_list_cx;
146   is \$h{a}.\$h{b}, \$_.\$_, '\(@hash{indices})';
147   my $tmp;
148   {
149     \local @h{"a","b"} = (\$tmp)x2;
150     is \$h{a}.\$h{b}, \$tmp.\$tmp, '\local @h{indices}';
151   }
152   is \$h{a}.\$h{b}, \$_.\$_, '\local @h{indices} unwound';
153 }
154
155 # Arrays
156
157 package ArrayTest {
158   BEGIN { *is = *main::is }
159   sub expect_scalar_cx { wantarray ? 0 : \@ThatArray }
160   sub expect_list_cx   { wantarray ? (\$_,\$_) : 0 }
161   sub expect_list_cx_a { wantarray ? (\@ThatArray)x2 : 0 }
162   eval '\@a = expect_scalar_cx';
163   is \@a, \@ThatArray, '\@pkg';
164   my @a;
165   \@a = expect_scalar_cx;
166   is \@a, \@ThatArray, '\@lexical';
167   (\@b) = expect_list_cx_a;
168   is \@b, \@ThatArray, '(\@pkg)';
169   my @b;
170   (\@b) = expect_list_cx_a;
171   is \@b, \@ThatArray, '(\@lexical)';
172   \my @c = expect_scalar_cx;
173   is \@c, \@ThatArray, '\my @lexical';
174 ::on;
175   eval '(\my @d) = expect_list_cx_a';
176   is \@d, \@ThatArray, '(\my @lexical)';
177   eval '\(@e) = expect_list_cx';
178   is \$e[0].$e[1], \$_.\$_, '\(@pkg)';
179   my @e;
180   eval '\(@e) = expect_list_cx';
181   is \$e[0].$e[1], \$_.\$_, '\(@lexical)';
182   eval '\(my @f) = expect_list_cx';
183   is \$f[0].$f[1], \$_.\$_, '\(my @lexical)';
184   eval '\my(@g) = expect_list_cx';
185   is \$g[0].$g[1], \$_.\$_, '\my(@lexical)';
186   my $old = \@h;
187 ::off;
188   {
189     \local @h = \@ThatArray;
190     is \@h, \@ThatArray, '\local @a';
191   }
192   is \@h, $old, '\local @a unwound';
193   $old = \@i;
194   eval q{
195     (\local @i) = \@ThatArray;
196     is \@i, \@ThatArray, '(\local @a)';
197   } or do { SKIP: { ::skip 'unimplemented' } };
198   is \@i, $old, '(\local @a) unwound';
199 }
200
201 # Hashes
202
203 package HashTest {
204   BEGIN { *is = *main::is }
205   sub expect_scalar_cx { wantarray ? 0 : \%ThatHash }
206   sub expect_list_cx   { wantarray ? (\%ThatHash)x2 : 0 }
207   \%a = expect_scalar_cx;
208   is \%a, \%ThatHash, '\%pkg';
209   my %a;
210   \%a = expect_scalar_cx;
211   is \%a, \%ThatHash, '\%lexical';
212   (\%b) = expect_list_cx;
213   is \%b, \%ThatHash, '(\%pkg)';
214   my %b;
215   (\%b) = expect_list_cx;
216   is \%b, \%ThatHash, '(\%lexical)';
217   \my %c = expect_scalar_cx;
218   is \%c, \%ThatHash, '\my %lexical';
219   (\my %d) = expect_list_cx;
220   is \%d, \%ThatHash, '(\my %lexical)';
221   my $old = \%h;
222   {
223     \local %h = \%ThatHash;
224     is \%h, \%ThatHash, '\local %a';
225   }
226   is \%h, $old, '\local %a unwound';
227   $old = \%i;
228   eval q{
229     (\local %i) = \%ThatHash;
230     is \%i, \%ThatHash, '(\local %a)';
231   } or do { SKIP: { ::skip 'unimplemented' } };
232   is \%i, $old, '(\local %a) unwound';
233 }
234
235 # Subroutines
236
237 # ...
238
239 # Mixed List Assignments
240
241 (\$tahi, $rua) = \(1,2);
242 is join(' ', $tahi, $$rua), '1 2',
243   'mixed scalar ref and scalar list assignment';
244 on;
245
246 # Conditional expressions
247
248 $_ = 3;
249 eval '$_ == 3 ? \$tahi : $rua = \3';
250 is $tahi, 3, 'cond assignment resolving to scalar ref';
251 eval '$_ == 3 ? \$toru : $wha = \3';
252 is $$wha, 3, 'cond assignment resolving to scalar';
253 eval '$_ == 3 ? \$rima : \$ono = \5';
254 is $$rima, 5, 'cond assignment with refgens on both branches';
255
256 # Foreach
257
258 eval '
259   for \my $a(\$for1, \$for2) {
260     push @for, \$a;
261   }
262 ';
263 is "@for", \$for1 . ' ' . \$for2, 'foreach \my $a';
264
265 @for = ();
266 eval '
267   for \my @a([1,2], [3,4]) {
268     push @for, @a;
269   }
270 ';
271 is "@for", "1 2 3 4", 'foreach \my @a [perl #22335]';
272
273 @for = ();
274 eval '
275   for \my %a({5,6}, {7,8}) {
276     push @for, %a;
277   }
278 ';
279 is "@for", "5 6 7 8", 'foreach \my %a [perl #22335]';
280
281 @for = ();
282 eval '
283   for \my &a(sub {9}, sub {10}) {
284     push @for, &a;
285   }
286 ';
287 is "@for", "9 10", 'foreach \my &a';
288
289
290 # Errors
291
292 off;
293 eval { my $x; \$x = 3 };
294 like $@, qr/^Assigned value is not a reference at/, 'assigning non-ref';
295 eval { my $x; \$x = [] };
296 like $@, qr/^Assigned value is not a SCALAR reference at/,
297     'assigning non-scalar ref to scalar ref';
298 eval { \$::x = [] };
299 like $@, qr/^Assigned value is not a SCALAR reference at/,
300     'assigning non-scalar ref to package scalar ref';
301 eval { my @x; \@x = {} };
302 like $@, qr/^Assigned value is not an ARRAY reference at/,
303     'assigning non-array ref to array ref';
304 eval { \@::x = {} };
305 like $@, qr/^Assigned value is not an ARRAY reference at/,
306     'assigning non-array ref to package array ref';
307 eval { my %x; \%x = [] };
308 like $@, qr/^Assigned value is not a HASH reference at/,
309     'assigning non-hash ref to hash ref';
310 eval { \%::x = [] };
311 like $@, qr/^Assigned value is not a HASH reference at/,
312     'assigning non-hash ref to package hash ref';
313
314 on;
315 eval '(\do{}) = 42';
316 like $@, qr/^Can't modify reference to do block in list assignment at /,
317     "Can't modify reference to do block in list assignment";
318 off;
319 eval '(\pos) = 42';
320 like $@,
321      qr/^Can't modify reference to match position in list assignment at /,
322     "Can't modify ref to some scalar-returning op in list assignment";
323 eval '(\glob) = 42';
324 like $@,
325      qr/^Can't modify reference to glob in list assignment at /,
326     "Can't modify reference to some list-returning op in list assignment";
327 eval '\pos = 42';
328 like $@,
329     qr/^Can't modify reference to match position in scalar assignment at /,
330    "Can't modify ref to some scalar-returning op in scalar assignment";
331 on;
332 eval '\(local @b) = 42';
333 like $@,
334     qr/^Can't modify reference to parenthesized localized array in list(?x:
335       ) assignment at /,
336    q"Can't modify \(local @array) in list assignment";
337 eval '\local(@b) = 42';
338 like $@,
339     qr/^Can't modify reference to parenthesized localized array in list(?x:
340       ) assignment at /,
341    q"Can't modify \local(@array) in list assignment";
342 off;
343 eval '\(%b) = 42';
344 like $@,
345     qr/^Can't modify reference to parenthesized hash in list assignment a/,
346    "Can't modify ref to parenthesized package hash in scalar assignment";
347 eval '\(my %b) = 42';
348 like $@,
349     qr/^Can't modify reference to parenthesized hash in list assignment a/,
350    "Can't modify ref to parenthesized hash (\(my %b)) in list assignment";
351 eval '\my(%b) = 42';
352 like $@,
353     qr/^Can't modify reference to parenthesized hash in list assignment a/,
354    "Can't modify ref to parenthesized hash (\my(%b)) in list assignment";
355 eval '\%{"42"} = 42';
356 like $@,
357     qr/^Can't modify reference to hash dereference in scalar assignment a/,
358    "Can't modify reference to hash dereference in scalar assignment";
359 on;
360
361
362 # Miscellaneous
363
364 {
365   my($x,$y);
366   sub {
367     sub {
368       \$x = \$y;
369     }->();
370     is \$x, \$y, 'lexical alias affects outer closure';
371   }->();
372   is \$x, \$y, 'lexical alias affects outer sub where vars are declared';
373 }
374
375 { # PADSTALE has a double meaning
376   use feature 'lexical_subs', 'signatures', 'state';
377   no warnings 'experimental';
378   my $c;
379   my sub s ($arg) {
380     state $x = ++$c;
381     if ($arg == 3) { return $c }
382     goto skip if $arg == 2;
383     my $y;
384    skip:
385     # $y is PADSTALE the 2nd time
386     \$x = \$y if $arg == 2;
387   }
388   s(1);
389   s(2);
390   is s(3), 1, 'padstale alias should not reset state'
391 }
392
393 off;
394 SKIP: {
395     skip_without_dynamic_extension('List/Util');
396     require Scalar::Util;
397     my $a;
398     Scalar::Util::weaken($r = \$a);
399     \$a = $r;
400     pass 'no crash when assigning \$lex = $weakref_to_lex'
401 }