foo
[gitmo/Moose.git] / t / 004_recipe.t
CommitLineData
5569c072 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
51c5e0fb 6use Test::More;
7
8BEGIN {
9 eval "use Regexp::Common; use Locale::US;";
10 plan skip_all => "Regexp::Common & Locale::US required for this test" if $@;
ad5ed80c 11 plan tests => 81;
51c5e0fb 12}
13
5569c072 14use Test::Exception;
51c5e0fb 15use Scalar::Util 'isweak';
16
5569c072 17BEGIN {
18 use_ok('Moose');
19}
20
21{
22 package Address;
5569c072 23 use Moose;
05d9eaf6 24 use Moose::Util::TypeConstraints;
5569c072 25
26 use Locale::US;
27 use Regexp::Common 'zip';
28
29 my $STATES = Locale::US->new;
30
31 subtype USState
32 => as Str
33 => where {
34 (exists $STATES->{code2state}{uc($_)} || exists $STATES->{state2code}{uc($_)})
35 };
36
37 subtype USZipCode
38 => as Value
39 => where {
40 /^$RE{zip}{US}{-extended => 'allow'}$/
41 };
42
182134e8 43 has 'street' => (is => 'rw', isa => 'Str');
44 has 'city' => (is => 'rw', isa => 'Str');
45 has 'state' => (is => 'rw', isa => 'USState');
46 has 'zip_code' => (is => 'rw', isa => 'USZipCode');
5569c072 47
48 package Company;
5569c072 49 use Moose;
05d9eaf6 50 use Moose::Util::TypeConstraints;
5569c072 51
7c6cacb4 52 has 'name' => (is => 'rw', isa => 'Str', required => 1);
5569c072 53 has 'address' => (is => 'rw', isa => 'Address');
54 has 'employees' => (is => 'rw', isa => subtype ArrayRef => where {
ad5ed80c 55 (blessed($_) && $_->isa('Employee') || return) for @$_; 1
5569c072 56 });
57
58 sub BUILD {
d7f17ebb 59 my ($self, $params) = @_;
60 if ($params->{employees}) {
61 foreach my $employee (@{$params->{employees}}) {
5569c072 62 $employee->company($self);
63 }
64 }
65 }
66
67 sub get_employee_count { scalar @{(shift)->employees} }
68
ad5ed80c 69 after 'employees' => sub {
70 my ($self, $employees) = @_;
71 # if employees is defined, it
72 # has already been type checked
73 if (defined $employees) {
74 # make sure each gets the
75 # weak ref to the company
76 foreach my $employee (@{$employees}) {
77 $employee->company($self);
78 }
79 }
80 };
81
5569c072 82 package Person;
5569c072 83 use Moose;
84
7c6cacb4 85 has 'first_name' => (is => 'rw', isa => 'Str', required => 1);
86 has 'last_name' => (is => 'rw', isa => 'Str', required => 1);
182134e8 87 has 'middle_initial' => (is => 'rw', isa => 'Str', predicate => 'has_middle_initial');
5569c072 88 has 'address' => (is => 'rw', isa => 'Address');
89
90 sub full_name {
91 my $self = shift;
92 return $self->first_name .
93 ($self->has_middle_initial ? ' ' . $self->middle_initial . '. ' : ' ') .
94 $self->last_name;
95 }
96
97 package Employee;
5569c072 98 use Moose;
99
100 extends 'Person';
101
7c6cacb4 102 has 'title' => (is => 'rw', isa => 'Str', required => 1);
5569c072 103 has 'company' => (is => 'rw', isa => 'Company', weak_ref => 1);
b6fe348f 104
105 override 'full_name' => sub {
106 my $self = shift;
107 super() . ', ' . $self->title
108 };
5569c072 109}
110
111my $ii;
112lives_ok {
05d9eaf6 113 $ii = Company->new({
5569c072 114 name => 'Infinity Interactive',
115 address => Address->new(
116 street => '565 Plandome Rd., Suite 307',
117 city => 'Manhasset',
118 state => 'NY',
119 zip_code => '11030'
120 ),
121 employees => [
122 Employee->new(
123 first_name => 'Jeremy',
124 last_name => 'Shao',
125 title => 'President / Senior Consultant',
126 address => Address->new(city => 'Manhasset', state => 'NY')
127 ),
128 Employee->new(
129 first_name => 'Tommy',
130 last_name => 'Lee',
131 title => 'Vice President / Senior Developer',
132 address => Address->new(city => 'New York', state => 'NY')
133 ),
134 Employee->new(
135 first_name => 'Stevan',
136 middle_initial => 'C',
137 last_name => 'Little',
138 title => 'Senior Developer',
139 address => Address->new(city => 'Madison', state => 'CT')
140 ),
141 Employee->new(
142 first_name => 'Rob',
143 last_name => 'Kinyon',
144 title => 'Developer',
145 address => Address->new(city => 'Marysville', state => 'OH')
146 ),
147 ]
05d9eaf6 148 });
5569c072 149} '... created the entire company successfully';
150isa_ok($ii, 'Company');
151
152is($ii->name, 'Infinity Interactive', '... got the right name for the company');
153
154isa_ok($ii->address, 'Address');
155is($ii->address->street, '565 Plandome Rd., Suite 307', '... got the right street address');
156is($ii->address->city, 'Manhasset', '... got the right city');
157is($ii->address->state, 'NY', '... got the right state');
158is($ii->address->zip_code, 11030, '... got the zip code');
159
160is($ii->get_employee_count, 4, '... got the right employee count');
161
162# employee #1
163
164isa_ok($ii->employees->[0], 'Employee');
165isa_ok($ii->employees->[0], 'Person');
166
167is($ii->employees->[0]->first_name, 'Jeremy', '... got the right first name');
168is($ii->employees->[0]->last_name, 'Shao', '... got the right last name');
169ok(!$ii->employees->[0]->has_middle_initial, '... no middle initial');
170is($ii->employees->[0]->middle_initial, undef, '... got the right middle initial value');
b6fe348f 171is($ii->employees->[0]->full_name, 'Jeremy Shao, President / Senior Consultant', '... got the right full name');
5569c072 172is($ii->employees->[0]->title, 'President / Senior Consultant', '... got the right title');
173is($ii->employees->[0]->company, $ii, '... got the right company');
51c5e0fb 174ok(isweak($ii->employees->[0]->{company}), '... the company is a weak-ref');
5569c072 175
176isa_ok($ii->employees->[0]->address, 'Address');
177is($ii->employees->[0]->address->city, 'Manhasset', '... got the right city');
178is($ii->employees->[0]->address->state, 'NY', '... got the right state');
179
180# employee #2
181
182isa_ok($ii->employees->[1], 'Employee');
183isa_ok($ii->employees->[1], 'Person');
184
185is($ii->employees->[1]->first_name, 'Tommy', '... got the right first name');
186is($ii->employees->[1]->last_name, 'Lee', '... got the right last name');
187ok(!$ii->employees->[1]->has_middle_initial, '... no middle initial');
188is($ii->employees->[1]->middle_initial, undef, '... got the right middle initial value');
b6fe348f 189is($ii->employees->[1]->full_name, 'Tommy Lee, Vice President / Senior Developer', '... got the right full name');
5569c072 190is($ii->employees->[1]->title, 'Vice President / Senior Developer', '... got the right title');
191is($ii->employees->[1]->company, $ii, '... got the right company');
51c5e0fb 192ok(isweak($ii->employees->[1]->{company}), '... the company is a weak-ref');
5569c072 193
194isa_ok($ii->employees->[1]->address, 'Address');
195is($ii->employees->[1]->address->city, 'New York', '... got the right city');
196is($ii->employees->[1]->address->state, 'NY', '... got the right state');
197
198# employee #3
199
200isa_ok($ii->employees->[2], 'Employee');
201isa_ok($ii->employees->[2], 'Person');
202
203is($ii->employees->[2]->first_name, 'Stevan', '... got the right first name');
204is($ii->employees->[2]->last_name, 'Little', '... got the right last name');
205ok($ii->employees->[2]->has_middle_initial, '... got middle initial');
206is($ii->employees->[2]->middle_initial, 'C', '... got the right middle initial value');
b6fe348f 207is($ii->employees->[2]->full_name, 'Stevan C. Little, Senior Developer', '... got the right full name');
5569c072 208is($ii->employees->[2]->title, 'Senior Developer', '... got the right title');
209is($ii->employees->[2]->company, $ii, '... got the right company');
51c5e0fb 210ok(isweak($ii->employees->[2]->{company}), '... the company is a weak-ref');
5569c072 211
212isa_ok($ii->employees->[2]->address, 'Address');
213is($ii->employees->[2]->address->city, 'Madison', '... got the right city');
214is($ii->employees->[2]->address->state, 'CT', '... got the right state');
215
216# employee #4
217
218isa_ok($ii->employees->[3], 'Employee');
219isa_ok($ii->employees->[3], 'Person');
220
221is($ii->employees->[3]->first_name, 'Rob', '... got the right first name');
222is($ii->employees->[3]->last_name, 'Kinyon', '... got the right last name');
223ok(!$ii->employees->[3]->has_middle_initial, '... got middle initial');
224is($ii->employees->[3]->middle_initial, undef, '... got the right middle initial value');
b6fe348f 225is($ii->employees->[3]->full_name, 'Rob Kinyon, Developer', '... got the right full name');
5569c072 226is($ii->employees->[3]->title, 'Developer', '... got the right title');
227is($ii->employees->[3]->company, $ii, '... got the right company');
51c5e0fb 228ok(isweak($ii->employees->[3]->{company}), '... the company is a weak-ref');
5569c072 229
230isa_ok($ii->employees->[3]->address, 'Address');
231is($ii->employees->[3]->address->city, 'Marysville', '... got the right city');
232is($ii->employees->[3]->address->state, 'OH', '... got the right state');
233
ad5ed80c 234# create new company
235
236my $new_company = Company->new(name => 'Infinity Interactive International');
237isa_ok($new_company, 'Company');
238
239my $ii_employees = $ii->employees;
240foreach my $employee (@$ii_employees) {
241 is($employee->company, $ii, '... has the ii company');
242}
243
244$new_company->employees($ii_employees);
245
246foreach my $employee (@{$new_company->employees}) {
247 is($employee->company, $new_company, '... has the different company now');
248}
249
5569c072 250## check some error conditions for the subtypes
251
252dies_ok {
51c5e0fb 253 Address->new(street => {}),
254} '... we die correctly with bad args';
255
256dies_ok {
257 Address->new(city => {}),
258} '... we die correctly with bad args';
259
260dies_ok {
5569c072 261 Address->new(state => 'British Columbia'),
262} '... we die correctly with bad args';
263
264lives_ok {
265 Address->new(state => 'Connecticut'),
266} '... we live correctly with good args';
267
268dies_ok {
269 Address->new(zip_code => 'AF5J6$'),
270} '... we die correctly with bad args';
271
272lives_ok {
273 Address->new(zip_code => '06443'),
274} '... we live correctly with good args';
275
276dies_ok {
7c6cacb4 277 Company->new(),
278} '... we die correctly without good args';
279
280lives_ok {
281 Company->new(name => 'Foo'),
282} '... we live correctly without good args';
283
284dies_ok {
285 Company->new(name => 'Foo', employees => [ Person->new ]),
5569c072 286} '... we die correctly with good args';
287
288lives_ok {
7c6cacb4 289 Company->new(name => 'Foo', employees => []),
5569c072 290} '... we live correctly with good args';
291