make the namespace cache lazy and weak, in case the stash is deleted
[gitmo/Package-Stash.git] / t / 07-edge-cases.t
CommitLineData
25c87f5c 1#!/usr/bin/env perl
2use strict;
3use warnings;
2905fb35 4use lib 't/lib';
25c87f5c 5use Test::More;
6c30b273 6use Test::Fatal;
25c87f5c 7
8use Package::Stash;
9
10{
11 package Foo;
12 use constant FOO => 1;
13 use constant BAR => \1;
14 use constant BAZ => [];
15 use constant QUUX => {};
16 use constant QUUUX => sub { };
17 sub normal { }
18 sub stub;
19 sub normal_with_proto () { }
20 sub stub_with_proto ();
21
22 our $SCALAR;
f7543739 23 our $SCALAR_WITH_VALUE = 1;
25c87f5c 24 our @ARRAY;
25 our %HASH;
26}
27
28my $stash = Package::Stash->new('Foo');
2905fb35 29{ local $TODO = ($] < 5.010 || $Package::Stash::IMPLEMENTATION eq 'PP')
30 ? "undef scalars aren't visible on 5.8, or from pure perl at all"
31 : undef;
32ok($stash->has_symbol('$SCALAR'), '$SCALAR');
f7543739 33}
2905fb35 34ok($stash->has_symbol('$SCALAR_WITH_VALUE'), '$SCALAR_WITH_VALUE');
35ok($stash->has_symbol('@ARRAY'), '@ARRAY');
36ok($stash->has_symbol('%HASH'), '%HASH');
25c87f5c 37is_deeply(
2905fb35 38 [sort $stash->list_all_symbols('CODE')],
25c87f5c 39 [qw(BAR BAZ FOO QUUUX QUUX normal normal_with_proto stub stub_with_proto)],
40 "can see all code symbols"
41);
42
2905fb35 43$stash->add_symbol('%added', {});
44ok(!$stash->has_symbol('$added'), '$added');
45ok(!$stash->has_symbol('@added'), '@added');
46ok($stash->has_symbol('%added'), '%added');
47
48my $constant = $stash->get_symbol('&FOO');
49is(ref($constant), 'CODE', "expanded a constant into a coderef");
f7543739 50
4723417a 51# ensure get doesn't prevent subsequent vivification (not sure what the deal
52# was here)
53is(ref($stash->get_symbol('$glob')), '', "nothing yet");
54is(ref($stash->get_or_add_symbol('$glob')), 'SCALAR', "got an empty scalar");
55
6c30b273 56my $Bar = Package::Stash->new('Bar');
57my $foo = 3;
58$foo =~ s/3/4/;
59my $bar = 4.5;
60$bar =~ s/4/5/;
61
62is(exception { $Bar->add_symbol('$foo', \$foo) }, undef,
63 "can add PVIV values");
64is(exception { $Bar->add_symbol('$bar', \$bar) }, undef,
65 "can add PVNV values");
66
67use_ok('CompileTime');
68
eb53b1bd 69{
70 package Gets::Deleted;
71 sub bar { }
72}
73
74{
75 my $delete = Package::Stash->new('Gets::Deleted');
76 ok($delete->has_symbol('&bar'), "sees the method");
77 {
78 no strict 'refs';
79 delete ${'main::Gets::'}{'Deleted::'};
80 }
81 ok(!$delete->has_symbol('&bar'), "method goes away when stash is deleted");
82}
83
25c87f5c 84done_testing;