Moose compat: the details of load_class. Check whether the package has any methods...
[gitmo/Mouse.git] / t / 021-weak-ref.t
CommitLineData
c3398f5b 1#!/usr/bin/env perl
2use strict;
3use warnings;
4use Test::More tests => 18;
5use Test::Exception;
6use Scalar::Util 'isweak';
7
8my %destroyed;
9
10do {
11 do {
12 package Class;
13 use Mouse;
14
15 has self => (
16 is => 'rw',
17 weak_ref => 1,
18 );
19
20 has type => (
21 is => 'rw',
22 );
23
24 sub DEMOLISH {
25 my $self = shift;
26 $destroyed{ $self->type }++;
27 }
28 };
29
30 my $self = Class->new(type => 'accessor');
31 $self->self($self);
32
33 my $self2 = Class->new(type => 'middle');
34 my $self3 = Class->new(type => 'constructor', self => $self2);
35 $self2->self($self3);
36
37 for my $object ($self, $self2, $self3) {
38 ok(isweak($object->{self}), "weak reference");
39 ok($object->self->self->self->self, "we've got circularity");
40 }
41};
42
43is($destroyed{accessor}, 1, "destroyed from the accessor");
44is($destroyed{constructor}, 1, "destroyed from the constructor");
45is($destroyed{middle}, 1, "casuality of war");
46
47ok(!Class->meta->get_attribute('type')->weak_ref, "type is not a weakref");
48ok(Class->meta->get_attribute('self')->weak_ref, "self IS a weakref");
49
50do {
51 package Class2;
52 use Mouse;
53
54 has value => (
55 is => 'ro',
56 default => 10,
57 weak_ref => 1,
58 );
59};
60
61throws_ok { Class2->new } qr/Can't weaken a nonreference/;
62ok(Class2->meta->get_attribute('value')->weak_ref, "value IS a weakref");
63
64do {
65 package Class3;
66 use Mouse;
67
68 has hashref => (
e6ac69d4 69 is => 'rw',
c3398f5b 70 default => sub { {} },
71 weak_ref => 1,
72 predicate => 'has_hashref',
73 );
74};
75
76my $obj = Class3->new;
77is($obj->hashref, undef, "hashref collected immediately because refcount=0");
78ok($obj->has_hashref, 'attribute is turned into undef, not deleted from instance');
79
80$obj->hashref({1 => 1});
81is($obj->hashref, undef, "hashref collected between set and get because refcount=0");
82ok($obj->has_hashref, 'attribute is turned into undef, not deleted from instance');
83
84ok(Class3->meta->get_attribute('hashref')->weak_ref, "hashref IS a weakref");