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