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