This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Avoid uninit warning for qq|${\<<FOO}|
[perl5.git] / t / op / ref.t
CommitLineData
79072805
LW
1#!./perl
2
20274adc
JH
3BEGIN {
4 chdir 't' if -d 't';
b5fe401b 5 @INC = qw(. ../lib);
e47aeb22 6 require 'test.pl';
20274adc
JH
7}
8
e24631be 9use strict qw(refs subs);
79072805 10
03002e3e 11plan(229);
805232b4 12
79072805
LW
13# Test glob operations.
14
1c509eb9
NC
15$bar = "one";
16$foo = "two";
79072805
LW
17{
18 local(*foo) = *bar;
1c509eb9 19 is($foo, 'one');
79072805 20}
1c509eb9 21is ($foo, 'two');
79072805 22
1c509eb9
NC
23$baz = "three";
24$foo = "four";
79072805
LW
25{
26 local(*foo) = 'baz';
1c509eb9 27 is ($foo, 'three');
79072805 28}
1c509eb9 29is ($foo, 'four');
79072805 30
1c509eb9 31$foo = "global";
79072805
LW
32{
33 local(*foo);
1c509eb9
NC
34 is ($foo, undef);
35 $foo = "local";
36 is ($foo, 'local');
79072805 37}
1c509eb9 38is ($foo, 'global');
79072805 39
e24631be
NC
40{
41 no strict 'refs';
79072805
LW
42# Test fake references.
43
e24631be
NC
44 $baz = "valid";
45 $bar = 'baz';
46 $foo = 'bar';
47 is ($$$foo, 'valid');
48}
79072805
LW
49
50# Test real references.
51
52$FOO = \$BAR;
53$BAR = \$BAZ;
1c509eb9
NC
54$BAZ = "hit";
55is ($$$FOO, 'hit');
79072805
LW
56
57# Test references to real arrays.
58
1c509eb9
NC
59my $test = curr_test();
60@ary = ($test,$test+1,$test+2,$test+3);
79072805
LW
61$ref[0] = \@a;
62$ref[1] = \@b;
63$ref[2] = \@c;
64$ref[3] = \@d;
65for $i (3,1,2,0) {
66 push(@{$ref[$i]}, "ok $ary[$i]\n");
67}
68print @a;
69print ${$ref[1]}[0];
70print @{$ref[2]}[0];
e24631be
NC
71{
72 no strict 'refs';
73 print @{'d'};
74}
1c509eb9 75curr_test($test+4);
79072805
LW
76
77# Test references to references.
78
79$refref = \\$x;
1c509eb9
NC
80$x = "Good";
81is ($$$refref, 'Good');
79072805
LW
82
83# Test nested anonymous lists.
84
85$ref = [[],2,[3,4,5,]];
1c509eb9
NC
86is (scalar @$ref, 3);
87is ($$ref[1], 2);
88is (${$$ref[2]}[2], 5);
89is (scalar @{$$ref[0]}, 0);
79072805 90
1c509eb9
NC
91is ($ref->[1], 2);
92is ($ref->[2]->[0], 3);
79072805
LW
93
94# Test references to hashes of references.
95
96$refref = \%whatever;
97$refref->{"key"} = $ref;
1c509eb9 98is ($refref->{"key"}->[2]->[0], 3);
79072805 99
93a17b20 100# Test to see if anonymous subarrays spring into existence.
79072805
LW
101
102$spring[5]->[0] = 123;
103$spring[5]->[1] = 456;
104push(@{$spring[5]}, 789);
1c509eb9 105is (join(':',@{$spring[5]}), "123:456:789");
79072805 106
93a17b20 107# Test to see if anonymous subhashes spring into existence.
79072805
LW
108
109@{$spring2{"foo"}} = (1,2,3);
110$spring2{"foo"}->[3] = 4;
1c509eb9 111is (join(':',@{$spring2{"foo"}}), "1:2:3:4");
79072805
LW
112
113# Test references to subroutines.
114
1c509eb9
NC
115{
116 my $called;
117 sub mysub { $called++; }
118 $subref = \&mysub;
119 &$subref;
120 is ($called, 1);
121}
03002e3e 122is ref eval {\&{""}}, "CODE", 'reference to &{""} [perl #94476]';
79072805 123
e47aeb22
FC
124# Test references to return values of operators (TARGs/PADTMPs)
125{
126 my @refs;
127 for("a", "b") {
128 push @refs, \"$_"
129 }
130 is join(" ", map $$_, @refs), "a b", 'refgen+PADTMP';
131}
132
79072805 133$subrefref = \\&mysub2;
1c509eb9
NC
134is ($$subrefref->("GOOD"), "good");
135sub mysub2 { lc shift }
79072805 136
f0826785
BM
137# Test REGEXP assignment
138
293c724a
NC
139SKIP: {
140 skip_if_miniperl("no dynamic loading on miniperl, so can't load re", 5);
141 require re;
f0826785
BM
142 my $x = qr/x/;
143 my $str = "$x"; # regex stringification may change
144
145 my $y = $$x;
146 is ($y, $str, "bare REGEXP stringifies correctly");
147 ok (eval { "x" =~ $y }, "bare REGEXP matches correctly");
148
149 my $z = \$y;
150 ok (re::is_regexp($z), "new ref to REXEXP passes is_regexp");
151 is ($z, $str, "new ref to REGEXP stringifies correctly");
152 ok (eval { "x" =~ $z }, "new ref to REGEXP matches correctly");
153}
154{
155 my ($x, $str);
156 {
157 my $y = qr/x/;
158 $str = "$y";
159 $x = $$y;
160 }
161 is ($x, $str, "REGEXP keeps a ref to its mother_re");
162 ok (eval { "x" =~ $x }, "REGEXP with mother_re still matches");
163}
164
79072805
LW
165# Test the ref operator.
166
6e592b3a
BM
167sub PVBM () { 'foo' }
168{ my $dummy = index 'foo', PVBM }
169
170my $pviv = 1; "$pviv";
171my $pvnv = 1.0; "$pvnv";
172my $x;
173
174# we don't test
175# tied lvalue => SCALAR, as we haven't tested tie yet
176# BIND, 'cos we can't create them yet
177# REGEXP, 'cos that requires overload or Scalar::Util
6e592b3a
BM
178
179for (
180 [ 'undef', SCALAR => \undef ],
181 [ 'constant IV', SCALAR => \1 ],
182 [ 'constant NV', SCALAR => \1.0 ],
183 [ 'constant PV', SCALAR => \'f' ],
184 [ 'scalar', SCALAR => \$x ],
185 [ 'PVIV', SCALAR => \$pviv ],
186 [ 'PVNV', SCALAR => \$pvnv ],
187 [ 'PVMG', SCALAR => \$0 ],
188 [ 'PVBM', SCALAR => \PVBM ],
544303ee
FC
189 [ 'scalar @array', SCALAR => \scalar @array ],
190 [ 'scalar %hash', SCALAR => \scalar %hash ],
6e592b3a
BM
191 [ 'vstring', VSTRING => \v1 ],
192 [ 'ref', REF => \\1 ],
7393165e
FC
193 [ 'substr lvalue', LVALUE => \substr($x, 0, 0) ],
194 [ 'pos lvalue', LVALUE => \pos ],
195 [ 'vec lvalue', LVALUE => \vec($x,0,1) ],
6e592b3a
BM
196 [ 'named array', ARRAY => \@ary ],
197 [ 'anon array', ARRAY => [ 1 ] ],
198 [ 'named hash', HASH => \%whatever ],
199 [ 'anon hash', HASH => { a => 1 } ],
200 [ 'named sub', CODE => \&mysub, ],
201 [ 'anon sub', CODE => sub { 1; } ],
202 [ 'glob', GLOB => \*foo ],
203 [ 'format', FORMAT => *STDERR{FORMAT} ],
204) {
205 my ($desc, $type, $ref) = @$_;
206 is (ref $ref, $type, "ref() for ref to $desc");
207 like ("$ref", qr/^$type\(0x[0-9a-f]+\)$/, "stringify for ref to $desc");
208}
209
d963bf01
NC
210is (ref *STDOUT{IO}, 'IO::File', 'IO refs are blessed into IO::File');
211like (*STDOUT{IO}, qr/^IO::File=IO\(0x[0-9a-f]+\)$/,
6e592b3a 212 'stringify for IO refs');
79072805 213
b535e014
FC
214{ # Test re-use of ref's TARG [perl #101738]
215 my $obj = bless [], '____';
216 my $uniobj = bless [], chr 256;
217 my $get_ref = sub { ref shift };
218 my $dummy = &$get_ref($uniobj);
219 $dummy = &$get_ref($obj);
220 ok exists { ____ => undef }->{$dummy}, 'ref sets UTF8 flag correctly';
221}
222
79072805
LW
223# Test anonymous hash syntax.
224
225$anonhash = {};
1c509eb9 226is (ref $anonhash, 'HASH');
e24631be 227$anonhash2 = {FOO => 'BAR', ABC => 'XYZ',};
1c509eb9 228is (join('', sort values %$anonhash2), 'BARXYZ');
79072805
LW
229
230# Test bless operator.
231
232package MYHASH;
233
234$object = bless $main'anonhash2;
1c509eb9
NC
235main::is (ref $object, 'MYHASH');
236main::is ($object->{ABC}, 'XYZ');
79072805
LW
237
238$object2 = bless {};
1c509eb9 239main::is (ref $object2, 'MYHASH');
79072805
LW
240
241# Test ordinary call on object method.
242
1c509eb9 243&mymethod($object,"argument");
79072805
LW
244
245sub mymethod {
246 local($THIS, @ARGS) = @_;
ed6116ce 247 die 'Got a "' . ref($THIS). '" instead of a MYHASH'
e24631be 248 unless ref $THIS eq 'MYHASH';
1c509eb9
NC
249 main::is ($ARGS[0], "argument");
250 main::is ($THIS->{FOO}, 'BAR');
79072805
LW
251}
252
253# Test automatic destructor call.
254
1c509eb9 255$string = "bad";
79072805 256$object = "foo";
1c509eb9 257$string = "good";
79072805 258$main'anonhash2 = "foo";
8990e307 259$string = "";
79072805 260
ed6116ce 261DESTROY {
8990e307 262 return unless $string;
1c509eb9 263 main::is ($string, 'good');
79072805 264
a0d0e21e 265 # Test that the object has not already been "cursed".
1c509eb9 266 main::isnt (ref shift, 'HASH');
79072805
LW
267}
268
269# Now test inheritance of methods.
270
271package OBJ;
272
e24631be 273@ISA = ('BASEOBJ');
79072805 274
e24631be 275$main'object = bless {FOO => 'foo', BAR => 'bar'};
79072805
LW
276
277package main;
278
279# Test arrow-style method invocation.
280
e24631be 281is ($object->doit("BAR"), 'bar');
79072805
LW
282
283# Test indirect-object-style method invocation.
284
285$foo = doit $object "FOO";
e24631be 286main::is ($foo, 'foo');
79072805
LW
287
288sub BASEOBJ'doit {
289 local $ref = shift;
e24631be 290 die "Not an OBJ" unless ref $ref eq 'OBJ';
748a9306 291 $ref->{shift()};
79072805 292}
8990e307 293
a0d0e21e
LW
294package UNIVERSAL;
295@ISA = 'LASTCHANCE';
296
297package LASTCHANCE;
805232b4 298sub foo { main::is ($_[1], 'works') }
a0d0e21e
LW
299
300package WHATEVER;
805232b4 301foo WHATEVER "works";
a0d0e21e 302
58e0a6ae
GS
303#
304# test the \(@foo) construct
305#
306package main;
fb53bbb2 307@foo = \(1..3);
58e0a6ae
GS
308@bar = \(@foo);
309@baz = \(1,@foo,@bar);
805232b4
NC
310is (scalar (@bar), 3);
311is (scalar grep(ref($_), @bar), 3);
312is (scalar (@baz), 3);
58e0a6ae 313
fb53bbb2 314my(@fuu) = \(1..2,3);
58e0a6ae
GS
315my(@baa) = \(@fuu);
316my(@bzz) = \(1,@fuu,@baa);
805232b4
NC
317is (scalar (@baa), 3);
318is (scalar grep(ref($_), @baa), 3);
319is (scalar (@bzz), 3);
58e0a6ae 320
75ea820e
SM
321# also, it can't be an lvalue
322eval '\\($x, $y) = (1, 2);';
805232b4 323like ($@, qr/Can\'t modify.*ref.*in.*assignment/);
75ea820e 324
bc44cdaf 325# test for proper destruction of lexical objects
1c509eb9 326$test = curr_test();
805232b4
NC
327sub larry::DESTROY { print "# larry\nok $test\n"; }
328sub curly::DESTROY { print "# curly\nok ", $test + 1, "\n"; }
329sub moe::DESTROY { print "# moe\nok ", $test + 2, "\n"; }
bc44cdaf
GS
330
331{
332 my ($joe, @curly, %larry);
333 my $moe = bless \$joe, 'moe';
334 my $curly = bless \@curly, 'curly';
335 my $larry = bless \%larry, 'larry';
336 print "# leaving block\n";
337}
338
339print "# left block\n";
805232b4 340curr_test($test + 3);
bc44cdaf 341
fb73857a 342# another glob test
343
805232b4
NC
344
345$foo = "garbage";
fb73857a 346{ local(*bar) = "foo" }
805232b4 347$bar = "glob 3";
fb73857a 348local(*bar) = *bar;
805232b4 349is ($bar, "glob 3");
fb73857a 350
805232b4 351$var = "glob 4";
d4010388 352$_ = \$var;
805232b4 353is ($$_, 'glob 4');
d4010388 354
4e8e7886 355
805232b4
NC
356# test if reblessing during destruction results in more destruction
357$test = curr_test();
4e8e7886
GS
358{
359 package A;
360 sub new { bless {}, shift }
805232b4 361 DESTROY { print "# destroying 'A'\nok ", $test + 1, "\n" }
8bac7e00 362 package _B;
4e8e7886 363 sub new { bless {}, shift }
805232b4 364 DESTROY { print "# destroying '_B'\nok $test\n"; bless shift, 'A' }
4e8e7886 365 package main;
8bac7e00 366 my $b = _B->new;
4e8e7886 367}
805232b4 368curr_test($test + 2);
4e8e7886
GS
369
370# test if $_[0] is properly protected in DESTROY()
371
372{
805232b4 373 my $test = curr_test();
4e8e7886
GS
374 my $i = 0;
375 local $SIG{'__DIE__'} = sub {
376 my $m = shift;
377 if ($i++ > 4) {
805232b4 378 print "# infinite recursion, bailing\nnot ok $test\n";
4e8e7886
GS
379 exit 1;
380 }
805232b4 381 like ($m, qr/^Modification of a read-only/);
4e8e7886
GS
382 };
383 package C;
384 sub new { bless {}, shift }
385 DESTROY { $_[0] = 'foo' }
386 {
387 print "# should generate an error...\n";
388 my $c = C->new;
389 }
390 print "# good, didn't recurse\n";
391}
392
5e307270
FC
393# test that DESTROY is called on all objects during global destruction,
394# even those without hard references [perl #36347]
395
396is(
397 runperl(
c1b879e5 398 stderr => 1, prog => 'sub DESTROY { print qq-aaa\n- } bless \$a[0]'
5e307270 399 ),
c1b879e5 400 "aaa\n", 'DESTROY called on array elem'
5e307270
FC
401);
402is(
403 runperl(
404 stderr => 1,
c1b879e5 405 prog => '{ bless \my@x; *a=sub{@x}}sub DESTROY { print qq-aaa\n- }'
5e307270 406 ),
c1b879e5 407 "aaa\n",
5e307270
FC
408 'DESTROY called on closure variable'
409);
640c0c3e 410
5e307270 411
0dd88869 412# test if refgen behaves with autoviv magic
0dd88869
GS
413{
414 my @a;
805232b4
NC
415 $a[1] = "good";
416 my $got;
417 for (@a) {
418 $got .= ${\$_};
419 $got .= ';';
420 }
421 is ($got, ";good;");
0dd88869
GS
422}
423
840a7b70
IZ
424# This test is the reason for postponed destruction in sv_unref
425$a = [1,2,3];
426$a = $a->[1];
805232b4 427is ($a, 2);
840a7b70 428
04ca4930
NC
429# This test used to coredump. The BEGIN block is important as it causes the
430# op that created the constant reference to be freed. Hence the only
431# reference to the constant string "pass" is in $a. The hack that made
432# sure $a = $a->[1] would work didn't work with references to constants.
433
04ca4930
NC
434
435foreach my $lexical ('', 'my $a; ') {
436 my $expect = "pass\n";
437 my $result = runperl (switches => ['-wl'], stderr => 1,
438 prog => $lexical . 'BEGIN {$a = \q{pass}}; $a = $$a; print $a');
439
805232b4
NC
440 is ($?, 0);
441 is ($result, $expect);
840a7b70
IZ
442}
443
e24631be 444$test = curr_test();
04ca4930
NC
445sub x::DESTROY {print "ok ", $test + shift->[0], "\n"}
446{ my $a1 = bless [3],"x";
447 my $a2 = bless [2],"x";
448 { my $a3 = bless [1],"x";
449 my $a4 = bless [0],"x";
450 567;
451 }
452}
805232b4
NC
453curr_test($test+4);
454
455is (runperl (switches=>['-l'],
456 prog=> 'print 1; print qq-*$\*-;print 1;'),
457 "1\n*\n*\n1\n");
b2ce0fda 458
39cff0d9
AE
459# bug #21347
460
461runperl(prog => 'sub UNIVERSAL::AUTOLOAD { qr// } a->p' );
805232b4 462is ($?, 0, 'UNIVERSAL::AUTOLOAD called when freeing qr//');
39cff0d9 463
7b102d90 464runperl(prog => 'sub UNIVERSAL::DESTROY { warn } bless \$a, A', stderr => 1);
805232b4 465is ($?, 0, 'warn called inside UNIVERSAL::DESTROY');
7b102d90 466
23bb1b96
DM
467
468# bug #22719
469
470runperl(prog => 'sub f { my $x = shift; *z = $x; } f({}); f();');
805232b4 471is ($?, 0, 'coredump on typeglob = (SvRV && !SvROK)');
23bb1b96 472
ec5f3c78
DM
473# bug #27268: freeing self-referential typeglobs could trigger
474# "Attempt to free unreferenced scalar" warnings
475
805232b4 476is (runperl(
3d7a9343 477 prog => 'use Symbol;my $x=bless \gensym,q{t}; print;*$$x=$x',
ec5f3c78 478 stderr => 1
805232b4 479), '', 'freeing self-referential typeglob');
23bb1b96 480
804ffa60
DM
481# using a regex in the destructor for STDOUT segfaulted because the
482# REGEX pad had already been freed (ithreads build only). The
483# object is required to trigger the early freeing of GV refs to to STDOUT
484
ff26e4c8
CB
485TODO: {
486 local $TODO = "works but output through pipe is mangled" if $^O eq 'VMS';
487 like (runperl(
3d7a9343 488 prog => '$x=bless[]; sub IO::Handle::DESTROY{$_=q{bad};s/bad/ok/;print}',
ff26e4c8
CB
489 stderr => 1
490 ), qr/^(ok)+$/, 'STDOUT destructor');
491}
804ffa60 492
2e434a10 493{
512d1826
NC
494 no strict 'refs';
495 $name8 = chr 163;
496 $name_utf8 = $name8 . chr 256;
497 chop $name_utf8;
498
499 is ($$name8, undef, 'Nothing before we start');
500 is ($$name_utf8, undef, 'Nothing before we start');
501 $$name8 = "Pound";
502 is ($$name8, "Pound", 'Accessing via 8 bit symref works');
512d1826
NC
503 is ($$name_utf8, "Pound", 'Accessing via UTF8 symref works');
504}
505
2e434a10 506{
512d1826
NC
507 no strict 'refs';
508 $name_utf8 = $name = chr 9787;
509 utf8::encode $name_utf8;
510
511 is (length $name, 1, "Name is 1 char");
512 is (length $name_utf8, 3, "UTF8 representation is 3 chars");
513
514 is ($$name, undef, 'Nothing before we start');
515 is ($$name_utf8, undef, 'Nothing before we start');
516 $$name = "Face";
517 is ($$name, "Face", 'Accessing via Unicode symref works');
512d1826
NC
518 is ($$name_utf8, undef,
519 'Accessing via the UTF8 byte sequence gives nothing');
520}
521
431529db 522{
512d1826
NC
523 no strict 'refs';
524 $name1 = "\0Chalk";
525 $name2 = "\0Cheese";
526
527 isnt ($name1, $name2, "They differ");
528
431529db 529 is ($$name1, undef, 'Nothing before we start (scalars)');
512d1826 530 is ($$name2, undef, 'Nothing before we start');
b3d904f3 531 $$name1 = "Yummy";
512d1826 532 is ($$name1, "Yummy", 'Accessing via the correct name works');
512d1826
NC
533 is ($$name2, undef,
534 'Accessing via a different NUL-containing name gives nothing');
fc4809d7
NC
535 # defined uses a different code path
536 ok (defined $$name1, 'defined via the correct name works');
537 ok (!defined $$name2,
538 'defined via a different NUL-containing name gives nothing');
431529db
NC
539
540 is ($name1->[0], undef, 'Nothing before we start (arrays)');
541 is ($name2->[0], undef, 'Nothing before we start');
542 $name1->[0] = "Yummy";
543 is ($name1->[0], "Yummy", 'Accessing via the correct name works');
544 is ($name2->[0], undef,
545 'Accessing via a different NUL-containing name gives nothing');
fc4809d7
NC
546 ok (defined $name1->[0], 'defined via the correct name works');
547 ok (!defined$name2->[0],
548 'defined via a different NUL-containing name gives nothing');
431529db
NC
549
550 my (undef, $one) = @{$name1}[2,3];
551 my (undef, $two) = @{$name2}[2,3];
552 is ($one, undef, 'Nothing before we start (array slices)');
553 is ($two, undef, 'Nothing before we start');
554 @{$name1}[2,3] = ("Very", "Yummy");
555 (undef, $one) = @{$name1}[2,3];
556 (undef, $two) = @{$name2}[2,3];
557 is ($one, "Yummy", 'Accessing via the correct name works');
558 is ($two, undef,
559 'Accessing via a different NUL-containing name gives nothing');
fc4809d7
NC
560 ok (defined $one, 'defined via the correct name works');
561 ok (!defined $two,
562 'defined via a different NUL-containing name gives nothing');
431529db
NC
563
564 is ($name1->{PWOF}, undef, 'Nothing before we start (hashes)');
565 is ($name2->{PWOF}, undef, 'Nothing before we start');
566 $name1->{PWOF} = "Yummy";
567 is ($name1->{PWOF}, "Yummy", 'Accessing via the correct name works');
568 is ($name2->{PWOF}, undef,
569 'Accessing via a different NUL-containing name gives nothing');
fc4809d7
NC
570 ok (defined $name1->{PWOF}, 'defined via the correct name works');
571 ok (!defined $name2->{PWOF},
572 'defined via a different NUL-containing name gives nothing');
431529db
NC
573
574 my (undef, $one) = @{$name1}{'SNIF', 'BEEYOOP'};
575 my (undef, $two) = @{$name2}{'SNIF', 'BEEYOOP'};
576 is ($one, undef, 'Nothing before we start (hash slices)');
577 is ($two, undef, 'Nothing before we start');
578 @{$name1}{'SNIF', 'BEEYOOP'} = ("Very", "Yummy");
579 (undef, $one) = @{$name1}{'SNIF', 'BEEYOOP'};
580 (undef, $two) = @{$name2}{'SNIF', 'BEEYOOP'};
581 is ($one, "Yummy", 'Accessing via the correct name works');
582 is ($two, undef,
583 'Accessing via a different NUL-containing name gives nothing');
fc4809d7
NC
584 ok (defined $one, 'defined via the correct name works');
585 ok (!defined $two,
586 'defined via a different NUL-containing name gives nothing');
431529db
NC
587
588 $name1 = "Left"; $name2 = "Left\0Right";
589 my $glob2 = *{$name2};
590
88e5f542 591 is ($glob1, undef, "We get different typeglobs. In fact, undef");
780a5241
NC
592
593 *{$name1} = sub {"One"};
594 *{$name2} = sub {"Two"};
595
596 is (&{$name1}, "One");
597 is (&{$name2}, "Two");
512d1826
NC
598}
599
9a9798c2
YST
600# test derefs after list slice
601
602is ( ({foo => "bar"})[0]{foo}, "bar", 'hash deref from list slice w/o ->' );
603is ( ({foo => "bar"})[0]->{foo}, "bar", 'hash deref from list slice w/ ->' );
604is ( ([qw/foo bar/])[0][1], "bar", 'array deref from list slice w/o ->' );
605is ( ([qw/foo bar/])[0]->[1], "bar", 'array deref from list slice w/ ->' );
606is ( (sub {"bar"})[0](), "bar", 'code deref from list slice w/o ->' );
607is ( (sub {"bar"})[0]->(), "bar", 'code deref from list slice w/ ->' );
608
609# deref on empty list shouldn't autovivify
610{
611 local $@;
612 eval { ()[0]{foo} };
613 like ( "$@", "Can't use an undefined value as a HASH reference",
614 "deref of undef from list slice fails" );
615}
616
cbae9b9f
YST
617# test dereferencing errors
618{
2d905216
NC
619 format STDERR =
620.
621 my $ref;
622 foreach $ref (*STDOUT{IO}, *STDERR{FORMAT}) {
623 eval q/ $$ref /;
624 like($@, qr/Not a SCALAR reference/, "Scalar dereference");
625 eval q/ @$ref /;
626 like($@, qr/Not an ARRAY reference/, "Array dereference");
627 eval q/ %$ref /;
628 like($@, qr/Not a HASH reference/, "Hash dereference");
629 eval q/ &$ref /;
630 like($@, qr/Not a CODE reference/, "Code dereference");
631 }
632
633 $ref = *STDERR{FORMAT};
634 eval q/ *$ref /;
635 like($@, qr/Not a GLOB reference/, "Glob dereference");
636
637 $ref = *STDOUT{IO};
638 eval q/ *$ref /;
639 is($@, '', "Glob dereference of PVIO is acceptable");
640
641 is($ref, *{$ref}{IO}, "IO slot of the temporary glob is set correctly");
cbae9b9f
YST
642}
643
6e592b3a
BM
644# these will segfault if they fail
645
646my $pvbm = PVBM;
647my $rpvbm = \$pvbm;
648
649ok (!eval { *$rpvbm }, 'PVBM ref is not a GLOB ref');
650ok (!eval { *$pvbm }, 'PVBM is not a GLOB ref');
651ok (!eval { $$pvbm }, 'PVBM is not a SCALAR ref');
652ok (!eval { @$pvbm }, 'PVBM is not an ARRAY ref');
653ok (!eval { %$pvbm }, 'PVBM is not a HASH ref');
654ok (!eval { $pvbm->() }, 'PVBM is not a CODE ref');
655ok (!eval { $rpvbm->foo }, 'PVBM is not an object');
656
fcf99ed4
B
657# bug 24254
658is( runperl(stderr => 1, prog => 'map eval qq(exit),1 for 1'), "");
659is( runperl(stderr => 1, prog => 'eval { for (1) { map { die } 2 } };'), "");
660is( runperl(stderr => 1, prog => 'for (125) { map { exit } (213)}'), "");
54c717c3
CB
661my $hushed = $^O eq 'VMS' ? 'use vmsish qw(hushed);' : '';
662is( runperl(stderr => 1, prog => $hushed . 'map die,4 for 3'), "Died at -e line 1.\n");
663is( runperl(stderr => 1, prog => $hushed . 'grep die,4 for 3'), "Died at -e line 1.\n");
664is( runperl(stderr => 1, prog => $hushed . 'for $a (3) {@b=sort {die} 4,5}'), "Died at -e line 1.\n");
fcf99ed4
B
665
666# bug 57564
667is( runperl(stderr => 1, prog => 'my $i;for $i (1) { for $i (2) { } }'), "");
668
57ef47cc
DM
669# The mechanism for freeing objects in globs used to leave dangling
670# pointers to freed SVs. To test this, we construct this nested structure:
671# GV => blessed(AV) => RV => GV => blessed(SV)
672# all with a refcnt of 1, and hope that the second GV gets processed first
673# by do_clean_named_objs. Then when the first GV is processed, it mustn't
93f09d7b 674# find anything nasty left by the previous GV processing.
57ef47cc
DM
675# The eval is stop things in the main body of the code holding a reference
676# to a GV, and the print at the end seems to bee necessary to ensure
677# the correct freeing order of *x and *y (no, I don't know why - DAPM).
678
679is (runperl(
680 prog => 'eval q[bless \@y; bless \$x; $y[0] = \*x; $z = \*y; ]; '
bf70f410 681 . 'delete $::{x}; delete $::{y}; print qq{ok\n};',
57ef47cc
DM
682 stderr => 1),
683 "ok\n", 'freeing freed glob in global destruction');
684
fcf99ed4 685
fd1d9b5c
FC
686# Test undefined hash references as arguments to %{} in boolean context
687# [perl #81750]
688{
689 no strict 'refs';
690 eval { my $foo; %$foo; }; ok !$@, '%$undef';
691 eval { my $foo; scalar %$foo; }; ok !$@, 'scalar %$undef';
692 eval { my $foo; !%$foo; }; ok !$@, '!%$undef';
693 eval { my $foo; if ( %$foo) {} }; ok !$@, 'if ( %$undef) {}';
694 eval { my $foo; if (!%$foo) {} }; ok !$@, 'if (!%$undef) {}';
695 eval { my $foo; unless ( %$foo) {} }; ok !$@, 'unless ( %$undef) {}';
696 eval { my $foo; unless (!%$foo) {} }; ok !$@, 'unless (!%$undef) {}';
697 eval { my $foo; 1 if %$foo; }; ok !$@, '1 if %$undef';
698 eval { my $foo; 1 if !%$foo; }; ok !$@, '1 if !%$undef';
699 eval { my $foo; 1 unless %$foo; }; ok !$@, '1 unless %$undef;';
700 eval { my $foo; 1 unless ! %$foo; }; ok !$@, '1 unless ! %$undef';
701 eval { my $foo; %$foo ? 1 : 0; }; ok !$@, ' %$undef ? 1 : 0';
702 eval { my $foo; !%$foo ? 1 : 0; }; ok !$@, '!%$undef ? 1 : 0';
703}
704
da0c0b27
DM
705# RT #88330
706# Make sure that a leaked thinggy with multiple weak references to
707# it doesn't trigger a panic with multiple rounds of global cleanup
708# (Perl_sv_clean_all).
709
710SKIP: {
711 skip_if_miniperl('no Scalar::Util under miniperl', 4);
712
713 local $ENV{PERL_DESTRUCT_LEVEL} = 2;
714
715 # we do all permutations of array/hash, 1ref/2ref, to account
716 # for the different way backref magic is stored
717
718 fresh_perl_is(<<'EOF', 'ok', { stderr => 1 }, 'array with 1 weak ref');
719use Scalar::Util qw(weaken);
720my $r = [];
721Internals::SvREFCNT(@$r, 9);
722my $r1 = $r;
723weaken($r1);
724print "ok";
725EOF
726
727 fresh_perl_is(<<'EOF', 'ok', { stderr => 1 }, 'array with 2 weak refs');
728use Scalar::Util qw(weaken);
729my $r = [];
730Internals::SvREFCNT(@$r, 9);
731my $r1 = $r;
732weaken($r1);
733my $r2 = $r;
734weaken($r2);
735print "ok";
736EOF
737
738 fresh_perl_is(<<'EOF', 'ok', { stderr => 1 }, 'hash with 1 weak ref');
739use Scalar::Util qw(weaken);
740my $r = {};
741Internals::SvREFCNT(%$r, 9);
742my $r1 = $r;
743weaken($r1);
744print "ok";
745EOF
746
747 fresh_perl_is(<<'EOF', 'ok', { stderr => 1 }, 'hash with 2 weak refs');
748use Scalar::Util qw(weaken);
749my $r = {};
750Internals::SvREFCNT(%$r, 9);
751my $r1 = $r;
752weaken($r1);
753my $r2 = $r;
754weaken($r2);
755print "ok";
756EOF
757
758}
fd1d9b5c 759
5d4ff231
FC
760SKIP:{
761 skip_if_miniperl "no Scalar::Util on miniperl", 1;
762 my $error;
763 *hassgropper::DESTROY = sub {
764 require Scalar::Util;
765 eval { Scalar::Util::weaken($_[0]) };
766 $error = $@;
767 # This line caused a crash before weaken refused to weaken a
768 # read-only reference:
769 $do::not::overwrite::this = $_[0];
770 };
771 my $xs = bless [], "hassgropper";
772 undef $xs;
773 like $error, qr/^Modification of a read-only/,
774 'weaken refuses to weaken a read-only ref';
775 # Now that the test has passed, avoid sabotaging global destruction:
776 undef *hassgropper::DESTROY;
777 undef $do::not::overwrite::this;
778}
779
780
a15456de
BF
781is ref( bless {}, "nul\0clean" ), "nul\0clean", "ref() is nul-clean";
782
805232b4
NC
783# Bit of a hack to make test.pl happy. There are 3 more tests after it leaves.
784$test = curr_test();
785curr_test($test + 3);
4e8e7886
GS
786# test global destruction
787
840a7b70
IZ
788my $test1 = $test + 1;
789my $test2 = $test + 2;
790
8990e307
LW
791package FINALE;
792
793{
840a7b70
IZ
794 $ref3 = bless ["ok $test2\n"]; # package destruction
795 my $ref2 = bless ["ok $test1\n"]; # lexical destruction
796 local $ref1 = bless ["ok $test\n"]; # dynamic destruction
8990e307
LW
797 1; # flush any temp values on stack
798}
799
800DESTROY {
801 print $_[0][0];
802}
804ffa60 803