This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Eliminate tryAMAGICunW() by refactoring tryAMAGICun{DEREF,TARGET}
[perl5.git] / t / re / reg_nc_tie.t
CommitLineData
192b9cd1
AB
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
5 @INC = '../lib';
6 require './test.pl';
7}
8
9# Do a basic test on all the tied methods of Tie::Hash::NamedCapture
10
89c9327b 11plan(tests => 37);
1e1d4b91
JJ
12
13# PL_curpm->paren_names can be a null pointer. See that this succeeds anyway.
14'x' =~ /(.)/;
15() = %+;
16pass( 'still alive' );
192b9cd1
AB
17
18"hlagh" =~ /
19 (?<a>.)
20 (?<b>.)
21 (?<a>.)
22 .*
23 (?<e>$)
24/x;
25
26# FETCH
27is($+{a}, "h", "FETCH");
28is($+{b}, "l", "FETCH");
29is($-{a}[0], "h", "FETCH");
30is($-{a}[1], "a", "FETCH");
31
32# STORE
33eval { $+{a} = "yon" };
e5351d2f 34like($@, qr/read-only/, "STORE");
192b9cd1
AB
35
36# DELETE
37eval { delete $+{a} };
e5351d2f 38like($@, qr/read-only/, "DELETE");
192b9cd1
AB
39
40# CLEAR
41eval { %+ = () };
e5351d2f 42like($@, qr/read-only/, "CLEAR");
192b9cd1
AB
43
44# EXISTS
45ok(exists $+{e}, "EXISTS");
46ok(!exists $+{d}, "EXISTS");
47
48# FIRSTKEY/NEXTKEY
49is(join('|', sort keys %+), "a|b|e", "FIRSTKEY/NEXTKEY");
50
51# SCALAR
52is(scalar(%+), 3, "SCALAR");
53is(scalar(%-), 3, "SCALAR");
1d021cc8
NC
54
55# Abuse all methods with undef as the first argument (RT #71828 and then some):
56
57is(Tie::Hash::NamedCapture::FETCH(undef, undef), undef, 'FETCH with undef');
58eval {Tie::Hash::NamedCapture::STORE(undef, undef, undef)};
59like($@, qr/Modification of a read-only value attempted/, 'STORE with undef');
60eval {Tie::Hash::NamedCapture::DELETE(undef, undef)};
61like($@, , qr/Modification of a read-only value attempted/,
62 'DELETE with undef');
63eval {Tie::Hash::NamedCapture::CLEAR(undef)};
64like($@, qr/Modification of a read-only value attempted/, 'CLEAR with undef');
65is(Tie::Hash::NamedCapture::EXISTS(undef, undef), undef, 'EXISTS with undef');
66is(Tie::Hash::NamedCapture::FIRSTKEY(undef), undef, 'FIRSTKEY with undef');
67is(Tie::Hash::NamedCapture::NEXTKEY(undef, undef), undef, 'NEXTKEY with undef');
68is(Tie::Hash::NamedCapture::SCALAR(undef), undef, 'SCALAR with undef');
89c9327b
NC
69
70my $obj = tied %+;
71foreach ([FETCH => '$key'],
72 [STORE => '$key, $value'],
73 [DELETE => '$key'],
74 [CLEAR => ''],
75 [EXISTS => '$key'],
76 [FIRSTKEY => ''],
77 [NEXTKEY => '$lastkey'],
78 [SCALAR => ''],
79 ) {
80 my ($method, $error) = @$_;
81
82 is(eval {$obj->$method(0..3); 1}, undef, "$method with undef");
83 like($@, qr/Usage: Tie::Hash::NamedCapture::$method\(\Q$error\E\)/,
84 "usage method for $method");
85}