more-stuff
[gitmo/Moose.git] / t / 003_basic.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 25;
7 use Test::Exception;
8
9 use Scalar::Util 'isweak';
10
11 BEGIN {
12     use_ok('Moose');           
13 }
14
15 {
16     package BinaryTree;
17     use strict;
18     use warnings;
19     use Moose;
20
21     has 'parent' => (
22                 is        => 'rw',
23                 isa       => 'BinaryTree',      
24         predicate => 'has_parent',
25                 weak_ref  => 1,
26     );
27
28     has 'left' => (
29                 is        => 'rw',      
30                 isa       => 'BinaryTree',              
31         predicate => 'has_left',  
32         lazy      => 1,
33         default   => sub { BinaryTree->new(parent => $_[0]) },       
34     );
35
36     has 'right' => (
37                 is        => 'rw',      
38                 isa       => 'BinaryTree',              
39         predicate => 'has_right',   
40         lazy      => 1,       
41         default   => sub { BinaryTree->new(parent => $_[0]) },       
42     );
43
44     before 'right', 'left' => sub {
45         my ($self, $tree) = @_;
46             $tree->parent($self) if defined $tree;   
47         };
48 }
49
50 my $root = BinaryTree->new();
51 isa_ok($root, 'BinaryTree');
52
53 ok(!$root->has_left, '... no left node yet');
54 ok(!$root->has_right, '... no right node yet');
55
56 ok(!$root->has_parent, '... no parent for root node');
57
58 # make a left node
59
60 my $left = $root->left;
61 isa_ok($left, 'BinaryTree');
62
63 is($root->left, $left, '... got the same node (and it is $left)');
64 ok($root->has_left, '... we have a left node now');
65
66 ok($left->has_parent, '... lefts has a parent');
67 is($left->parent, $root, '... lefts parent is the root');
68
69 ok(isweak($left->{parent}), '... parent is a weakened ref');
70
71 ok(!$left->has_left, '... $left no left node yet');
72 ok(!$left->has_right, '... $left no right node yet');
73
74 # make a right node
75
76 my $right = $root->right;
77 isa_ok($right, 'BinaryTree');
78
79 is($root->right, $right, '... got the same node (and it is $right)');
80 ok($root->has_right, '... we have a right node now');
81
82 ok($right->has_parent, '... rights has a parent');
83 is($right->parent, $root, '... rights parent is the root');
84
85 ok(isweak($right->{parent}), '... parent is a weakened ref');
86
87 my $left_left = $left->left;
88 isa_ok($left_left, 'BinaryTree');
89
90 ok($left_left->has_parent, '... left does have a parent');
91
92 is($left_left->parent, $left, '... got a parent node (and it is $left)');
93 ok($left->has_left, '... we have a left node now');
94 is($left->left, $left_left, '... got a left node (and it is $left_left)');
95
96 ok(isweak($left_left->{parent}), '... parent is a weakened ref');
97