work around glob brokenness on pre-5.14
[gitmo/Package-Stash-XS.git] / t / anon-basic.t
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4 use lib 't/lib';
5 use Test::More;
6 use Test::Fatal;
7
8 use Test::Requires 'Package::Anon';
9 use Package::Stash;
10 use Symbol;
11
12 plan skip_all => "Anonymous stashes in PP need at least perl 5.14"
13     if $] < 5.014
14     && $Package::Stash::IMPLEMENTATION eq 'PP';
15
16 my $Foo = Package::Anon->new('Foo');
17 $Foo->{SOME_CONSTANT} = \1;
18
19 # ----------------------------------------------------------------------
20 ## tests adding a HASH
21
22 my $foo_stash = Package::Stash->new($Foo);
23 ok(!defined($Foo->{foo}), '... the %foo slot has not been created yet');
24 ok(!$foo_stash->has_symbol('%foo'), '... the object agrees');
25 ok(!defined($Foo->{foo}), '... checking doesn\'t vivify');
26
27 is(exception {
28     $foo_stash->add_symbol('%foo' => { one => 1 });
29 }, undef, '... created %Foo::foo successfully');
30
31 # ... scalar should NOT be created here
32
33 ok(!$foo_stash->has_symbol('$foo'), '... SCALAR shouldnt have been created too');
34 ok(!$foo_stash->has_symbol('@foo'), '... ARRAY shouldnt have been created too');
35 ok(!$foo_stash->has_symbol('&foo'), '... CODE shouldnt have been created too');
36
37 ok(defined($Foo->{foo}), '... the %foo slot was created successfully');
38 ok($foo_stash->has_symbol('%foo'), '... the meta agrees');
39
40 # check the value ...
41
42 ok(exists $Foo->{foo}{one}, '... our %foo was initialized correctly');
43 is($Foo->{foo}{one}, 1, '... our %foo was initialized correctly');
44
45 my $foo = $foo_stash->get_symbol('%foo');
46 is_deeply({ one => 1 }, $foo, '... got the right package variable back');
47
48 # ... make sure changes propogate up
49
50 $foo->{two} = 2;
51
52 is(\%{ $Foo->{foo} }, $foo_stash->get_symbol('%foo'), '... our %foo is the same as the metas');
53
54 ok(exists ${ $Foo->{foo} }{two}, '... our %foo was updated correctly');
55 is(${ $Foo->{foo} }{two}, 2, '... our %foo was updated correctly');
56
57 # ----------------------------------------------------------------------
58 ## test adding an ARRAY
59
60 ok(!defined($Foo->{bar}), '... the @bar slot has not been created yet');
61
62 is(exception {
63     $foo_stash->add_symbol('@bar' => [ 1, 2, 3 ]);
64 }, undef, '... created @Foo::bar successfully');
65
66 ok(defined($Foo->{bar}), '... the @bar slot was created successfully');
67 ok($foo_stash->has_symbol('@bar'), '... the meta agrees');
68
69 # ... why does this not work ...
70
71 ok(!$foo_stash->has_symbol('$bar'), '... SCALAR shouldnt have been created too');
72 ok(!$foo_stash->has_symbol('%bar'), '... HASH shouldnt have been created too');
73 ok(!$foo_stash->has_symbol('&bar'), '... CODE shouldnt have been created too');
74
75 # check the value itself
76
77 is(scalar @{ $Foo->{bar} }, 3, '... our @bar was initialized correctly');
78 is($Foo->{bar}[1], 2, '... our @bar was initialized correctly');
79
80 # ----------------------------------------------------------------------
81 ## test adding a SCALAR
82
83 ok(!defined($Foo->{baz}), '... the $baz slot has not been created yet');
84
85 is(exception {
86     $foo_stash->add_symbol('$baz' => 10);
87 }, undef, '... created $Foo::baz successfully');
88
89 ok(defined($Foo->{baz}), '... the $baz slot was created successfully');
90 ok($foo_stash->has_symbol('$baz'), '... the meta agrees');
91
92 ok(!$foo_stash->has_symbol('@baz'), '... ARRAY shouldnt have been created too');
93 ok(!$foo_stash->has_symbol('%baz'), '... HASH shouldnt have been created too');
94 ok(!$foo_stash->has_symbol('&baz'), '... CODE shouldnt have been created too');
95
96 is(${$foo_stash->get_symbol('$baz')}, 10, '... got the right value back');
97
98 ${ $Foo->{baz} } = 1;
99
100 is(${ $Foo->{baz} }, 1, '... our $baz was assigned to correctly');
101 is(${$foo_stash->get_symbol('$baz')}, 1, '... the meta agrees');
102
103 # ----------------------------------------------------------------------
104 ## test adding a CODE
105
106 ok(!defined($Foo->{funk}), '... the &funk slot has not been created yet');
107
108 is(exception {
109     $foo_stash->add_symbol('&funk' => sub { "Foo::funk" });
110 }, undef, '... created &Foo::funk successfully');
111
112 ok(defined($Foo->{funk}), '... the &funk slot was created successfully');
113 ok($foo_stash->has_symbol('&funk'), '... the meta agrees');
114
115 ok(!$foo_stash->has_symbol('$funk'), '... SCALAR shouldnt have been created too');
116 ok(!$foo_stash->has_symbol('@funk'), '... ARRAY shouldnt have been created too');
117 ok(!$foo_stash->has_symbol('%funk'), '... HASH shouldnt have been created too');
118
119 ok(defined &{ $Foo->{funk} }, '... our &funk exists');
120
121 is($Foo->bless({})->funk(), 'Foo::funk', '... got the right value from the function');
122
123 # ----------------------------------------------------------------------
124 ## test multiple slots in the glob
125
126 my $ARRAY = [ 1, 2, 3 ];
127 my $CODE = sub { "Foo::foo" };
128
129 is(exception {
130     $foo_stash->add_symbol('@foo' => $ARRAY);
131 }, undef, '... created @Foo::foo successfully');
132
133 ok($foo_stash->has_symbol('@foo'), '... the @foo slot was added successfully');
134 is($foo_stash->get_symbol('@foo'), $ARRAY, '... got the right values for @Foo::foo');
135
136 is(exception {
137     $foo_stash->add_symbol('&foo' => $CODE);
138 }, undef, '... created &Foo::foo successfully');
139
140 ok($foo_stash->has_symbol('&foo'), '... the meta agrees');
141 is($foo_stash->get_symbol('&foo'), $CODE, '... got the right value for &Foo::foo');
142
143 is(exception {
144     $foo_stash->add_symbol('$foo' => 'Foo::foo');
145 }, undef, '... created $Foo::foo successfully');
146
147 ok($foo_stash->has_symbol('$foo'), '... the meta agrees');
148 my $SCALAR = $foo_stash->get_symbol('$foo');
149 is($$SCALAR, 'Foo::foo', '... got the right scalar value back');
150
151 is(${ $Foo->{foo} }, 'Foo::foo', '... got the right value from the scalar');
152
153 is(exception {
154     $foo_stash->remove_symbol('%foo');
155 }, undef, '... removed %Foo::foo successfully');
156
157 ok(!$foo_stash->has_symbol('%foo'), '... the %foo slot was removed successfully');
158 ok($foo_stash->has_symbol('@foo'), '... the @foo slot still exists');
159 ok($foo_stash->has_symbol('&foo'), '... the &foo slot still exists');
160 ok($foo_stash->has_symbol('$foo'), '... the $foo slot still exists');
161
162 is($foo_stash->get_symbol('@foo'), $ARRAY, '... got the right values for @Foo::foo');
163 is($foo_stash->get_symbol('&foo'), $CODE, '... got the right value for &Foo::foo');
164 is($foo_stash->get_symbol('$foo'), $SCALAR, '... got the right value for $Foo::foo');
165
166 ok(!defined(*{ $Foo->{foo} }{HASH}), '... the %foo slot has been removed successfully');
167 ok(defined(*{ $Foo->{foo} }{ARRAY}), '... the @foo slot has NOT been removed');
168 ok(defined(*{ $Foo->{foo} }{CODE}), '... the &foo slot has NOT been removed');
169 ok(defined(${ $Foo->{foo} }), '... the $foo slot has NOT been removed');
170
171 is(exception {
172     $foo_stash->remove_symbol('&foo');
173 }, undef, '... removed &Foo::foo successfully');
174
175 ok(!$foo_stash->has_symbol('&foo'), '... the &foo slot no longer exists');
176
177 ok($foo_stash->has_symbol('@foo'), '... the @foo slot still exists');
178 ok($foo_stash->has_symbol('$foo'), '... the $foo slot still exists');
179
180 is($foo_stash->get_symbol('@foo'), $ARRAY, '... got the right values for @Foo::foo');
181 is($foo_stash->get_symbol('$foo'), $SCALAR, '... got the right value for $Foo::foo');
182
183 ok(!defined(*{ $Foo->{foo} }{HASH}), '... the %foo slot has been removed successfully');
184 ok(!defined(*{ $Foo->{foo} }{CODE}), '... the &foo slot has now been removed');
185 ok(defined(*{ $Foo->{foo} }{ARRAY}), '... the @foo slot has NOT been removed');
186 ok(defined(${ $Foo->{foo} }), '... the $foo slot has NOT been removed');
187
188 is(exception {
189     $foo_stash->remove_symbol('$foo');
190 }, undef, '... removed $Foo::foo successfully');
191
192 ok(!$foo_stash->has_symbol('$foo'), '... the $foo slot no longer exists');
193
194 ok($foo_stash->has_symbol('@foo'), '... the @foo slot still exists');
195
196 is($foo_stash->get_symbol('@foo'), $ARRAY, '... got the right values for @Foo::foo');
197
198 ok(!defined(*{ $Foo->{foo} }{HASH}), '... the %foo slot has been removed successfully');
199 ok(!defined(*{ $Foo->{foo} }{CODE}), '... the &foo slot has now been removed');
200 ok(!defined(${ $Foo->{foo} }), '... the $foo slot has now been removed');
201 ok(defined(*{ $Foo->{foo} }{ARRAY}), '... the @foo slot has NOT been removed');
202
203 {
204     my $syms = $foo_stash->get_all_symbols;
205     is_deeply(
206         [ sort keys %{ $syms } ],
207         [ sort $foo_stash->list_all_symbols ],
208         '... the fetched symbols are the same as the listed ones'
209     );
210 }
211
212 {
213     my $syms = $foo_stash->get_all_symbols('CODE');
214
215     is_deeply(
216         [ sort keys %{ $syms } ],
217         [ sort $foo_stash->list_all_symbols('CODE') ],
218         '... the fetched symbols are the same as the listed ones'
219     );
220
221     foreach my $symbol (keys %{ $syms }) {
222         is($syms->{$symbol}, $foo_stash->get_symbol('&' . $symbol), '... got the right symbol');
223     }
224 }
225
226 {
227     $foo_stash->add_symbol('%bare');
228     ok(!$foo_stash->has_symbol('$bare'),
229        "add_symbol with single argument doesn't vivify scalar slot");
230 }
231
232 {
233     $foo_stash->add_symbol('%zork', {});
234
235     my $syms = $foo_stash->get_all_symbols('HASH');
236
237     is_deeply(
238         [ sort keys %{ $syms } ],
239         [ sort $foo_stash->list_all_symbols('HASH') ],
240         '... the fetched symbols are the same as the listed ones'
241     );
242
243     foreach my $symbol (keys %{ $syms }) {
244         is($syms->{$symbol}, $foo_stash->get_symbol('%' . $symbol), '... got the right symbol');
245     }
246
247     is_deeply(
248         $syms,
249         { zork => *{ $Foo->{zork} }{HASH} },
250         "got the right ones",
251     );
252 }
253
254 # check some errors
255
256 like(exception {
257     $foo_stash->add_symbol('@bar', {})
258 }, qr/HASH.*is not of type ARRAY/, "can't initialize a slot with the wrong type of value");
259
260 like(exception {
261     $foo_stash->add_symbol('bar', [])
262 }, qr/ARRAY.*is not of type IO/, "can't initialize a slot with the wrong type of value");
263
264 like(exception {
265     $foo_stash->add_symbol('$bar', sub { })
266 }, qr/CODE.*is not of type SCALAR/, "can't initialize a slot with the wrong type of value");
267
268 like(exception {
269     $foo_stash->add_symbol('$bar', *{ Symbol::geniosym() }{IO})
270 }, qr/IO.*is not of type SCALAR/, "can't initialize a slot with the wrong type of value");
271
272 is_deeply([Package::Stash->new('Foo')->list_all_symbols], [],
273           "Foo:: isn't touched");
274
275 # *{ $Quux->{foo} } = \23 doesn't work on 5.12 and lower, apparently
276 my $Quux = Package::Anon->new('Quux');
277 {
278     my $gv = Symbol::gensym;
279     *$gv = \23;
280     *$gv = ["bar"];
281     *$gv = { baz => 1 };
282     *$gv = sub { };
283     *$gv = *{ Symbol::geniosym() }{IO};
284     $Quux->{foo} = *$gv;
285 }
286
287 {
288     my $stash = Package::Stash->new($Quux);
289
290     my %expect = (
291         '$foo' => \23,
292         '@foo' => ["bar"],
293         '%foo' => { baz => 1 },
294         '&foo' => \&{ $Quux->{foo} },
295         'foo'  => *{ $Quux->{foo} }{IO},
296     );
297
298     for my $sym ( sort keys %expect ) {
299         is_deeply(
300             $stash->get_symbol($sym),
301             $expect{$sym},
302             "got expected value for $sym"
303         );
304     }
305
306     $stash->add_symbol('%bar' => {x => 42});
307
308     $expect{'%bar'} = {x => 42};
309
310     for my $sym ( sort keys %expect ) {
311         is_deeply(
312             $stash->get_symbol($sym),
313             $expect{$sym},
314             "got expected value for $sym"
315         );
316     }
317
318     $stash->add_symbol('%bar' => {x => 43});
319
320     $expect{'%bar'} = {x => 43};
321
322     for my $sym ( sort keys %expect ) {
323         is_deeply(
324             $stash->get_symbol($sym),
325             $expect{$sym},
326             "got expected value for $sym"
327         );
328     }
329 }
330
331 is_deeply([Package::Stash->new('Quux')->list_all_symbols], [],
332           "Quux:: isn't touched");
333
334 my $Quuux = Package::Anon->new('Quuux');
335
336 {
337     my $gv = Symbol::gensym;
338     *$gv = \(my $scalar);
339     *$gv = [];
340     $Quuux->{foo} = *$gv;
341 }
342
343 {
344     my $gv = Symbol::gensym;
345     *$gv = [];
346     $Quuux->{bar} = *$gv;
347 }
348
349 {
350     my $gv = Symbol::gensym;
351     *$gv = {};
352     *$gv = sub { };
353     $Quuux->{baz} = *$gv;
354 }
355
356 $Quuux->{quux} = \1;
357
358 $Quuux->{quuux} = \[];
359
360 $Quuux->{quuuux} = -1;
361
362 {
363     my $quuux = Package::Stash->new($Quuux);
364     is_deeply(
365         # Package::Anon adds a couple methods
366         [grep { $_ ne 'isa' && $_ ne 'can' } sort $quuux->list_all_symbols],
367         [qw(bar baz foo quuuux quuux quux)],
368         "list_all_symbols",
369     );
370     { local $TODO = $] < 5.010
371           ? "undef scalars aren't visible on 5.8"
372           : undef;
373     is_deeply(
374         [sort $quuux->list_all_symbols('SCALAR')],
375         [qw(foo)],
376         "list_all_symbols SCALAR",
377     );
378     }
379     is_deeply(
380         [sort $quuux->list_all_symbols('ARRAY')],
381         [qw(bar foo)],
382         "list_all_symbols ARRAY",
383     );
384     is_deeply(
385         [sort $quuux->list_all_symbols('HASH')],
386         [qw(baz)],
387         "list_all_symbols HASH",
388     );
389     is_deeply(
390         # Package::Anon adds a couple methods
391         [grep { $_ ne 'isa' && $_ ne 'can' } sort $quuux->list_all_symbols('CODE')],
392         [qw(baz quuuux quuux quux)],
393         "list_all_symbols CODE",
394     );
395 }
396
397 is_deeply([Package::Stash->new('Quuux')->list_all_symbols], [],
398           "Quuux:: isn't touched");
399
400 done_testing;