beb218c4a455b7be9154e0f17c8ebb7365599838
[gitmo/Moose-Autobox.git] / t / 001_basic.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 55;
7
8 BEGIN {
9     use_ok('Moose::Autobox');
10     use_ok('Moose::Autobox::Undef');
11 }
12
13 use autobox UNDEF => 'Moose::Autobox::Undef';
14
15 # SCALAR & UNDEF
16
17 my $s;
18 ok(!$s->defined, '... got a undefined value');
19
20 $s = 5;
21 ok($s->defined, '... got a defined value');
22
23 # CODE
24
25 my $f1 = sub { @_ };
26 ok($f1->defined, '... created function');
27
28 my $f2 = eval { $f1->curry(1, 2, 3)  };
29 ok($f2->defined, '... created curried function');
30
31 my $f3 = eval { $f1->rcurry(1, 2, 3) };
32 ok($f3->defined, '... created right-curried function');
33
34 is_deeply(
35 [ $f2->(4, 5, 6) ],
36 [ 1, 2, 3, 4, 5, 6 ],
37 '... got the right return value from the curried function');
38     
39 is_deeply(
40 [ $f3->(4, 5, 6) ],
41 [ 4, 5, 6, 1, 2, 3 ],
42 '... got the right return value from the r-curried function');  
43
44 ok((sub { 1 })->disjoin(sub { 0 })->(), '... disjoins properly');
45 ok((sub { 0 })->disjoin(sub { 1 })->(), '... disjoins properly');
46
47 ok(!(sub { 1 })->conjoin(sub { 0 })->(), '... conjoins properly');
48 ok(!(sub { 0 })->conjoin(sub { 1 })->(), '... conjoins properly');
49
50 my $compose = (sub { @_, 1 })->compose(sub { @_, 2 });
51
52 is_deeply(
53 [ $compose->() ],
54 [ 1, 2 ],
55 '... got the right return value for compose');
56   
57 # ARRAY    
58     
59 my $a = [ 4, 2, 6, 78, 101, 2, 3 ];
60
61 is($a->length, 7, '... got the right length');
62 ok($a->defined, '... got the right defined value');
63
64 is_deeply(
65 $a->map(sub { $_ + 2 }),
66 [ map { $_ + 2 } (4, 2, 6, 78, 101, 2, 3) ],
67 '... got the right return value for map');
68
69 is_deeply($a, [ 4, 2, 6, 78, 101, 2, 3 ], '... original value is unchanged');
70
71 is_deeply(
72 $a->reverse(),
73 [ 3, 2, 101, 78, 6, 2, 4 ],
74 '... got the right return value for reverse');
75
76 is_deeply($a, [ 4, 2, 6, 78, 101, 2, 3 ], '... original value is unchanged');
77
78 is_deeply(
79 $a->grep(sub { $_ < 50 }),
80 [ grep { $_ < 50 } (4, 2, 6, 78, 101, 2, 3) ],
81 '... got the right return value grep');
82
83 is_deeply($a, [ 4, 2, 6, 78, 101, 2, 3 ], '... original value is unchanged');
84
85 is($a->join(', '), '4, 2, 6, 78, 101, 2, 3', '... got the right joined string');
86 is($a->join, '4267810123', '... got the right joined string');
87 ok($a->exists(0), '... exists works');
88 ok(!$a->exists(10), '... exists works');
89
90 is($a->pop(), 3, '... got the right pop-ed value');
91 is_deeply($a, [ 4, 2, 6, 78, 101, 2 ], '... original value is now changed');
92
93 is($a->shift(), 4, '... got the right unshift-ed value');
94 is_deeply($a, [ 2, 6, 78, 101, 2 ], '... original value is now changed');
95
96 is_deeply(
97 $a->unshift(10), 
98 [ 10, 2, 6, 78, 101, 2 ], 
99 '... got the correct unshifted value');
100
101 is_deeply(
102 $a->unshift(15, 20, 30), 
103 [ 15, 20, 30, 10, 2, 6, 78, 101, 2 ], 
104 '... got the correct unshifted value (multiple values)');
105
106 is_deeply(
107 $a->push(10), 
108 [ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10 ], 
109 '... got the correct pushed value');
110
111 is_deeply(
112 $a->push(15, 20, 30), 
113 [ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ], 
114 '... got the correct pushed value (multiple values)');
115
116 is_deeply(
117 $a->sort(sub { $_[0] <=> $_[1] }), 
118 [ 2, 2, 6, 10, 10, 15, 15, 20, 20, 30, 30, 78, 101 ],
119 '... got the correct sorted value');
120
121 is_deeply(
122 $a, 
123 [ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ], 
124 '... the original values are unchanged');
125
126 is_deeply(
127 []->push(10, 20, 30)->map(sub { ($_, $_ + 5) })->reverse, 
128 [ 35, 30, 25, 20, 15, 10 ], 
129 '... got the correct chained value');
130
131 is_deeply(
132 $a->keys, 
133 [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ],
134 '... the keys');
135
136 is_deeply(
137 $a->values, 
138 [ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ], 
139 '... the values');
140
141 is_deeply(
142 $a->kv, 
143 [ [0, 15], [1, 20], [2, 30], [3, 10], [4, 2], [5, 6], [6, 78], 
144   [7, 101], [8, 2], [9, 10], [10, 15], [11, 20], [12, 30] ], 
145 '... [ k, v ]');
146
147 is([1, 2, 3, 4, 5]->reduce(sub { $_[0] + $_[1] }), 15, '... got the right reduction');
148
149 is_deeply(
150 [1, 2, 3, 4, 5]->zip([ 5, 4, 3, 2, 1 ]), 
151 [ [1, 5], [2, 4], [3, 3], [4, 2], [5, 1] ],
152 '... got the right zip');
153
154 is_deeply(
155 [1, 2, 3, 4, 5]->zip([ 6, 5, 4, 3, 2, 1 ]), 
156 [ [1, 6], [2, 5], [3, 4], [4, 3], [5, 2], [undef, 1] ],
157 '... got the right zip');
158
159 is($a->delete(2), 30, '... got the value deleted');
160 is_deeply(
161 $a, 
162 [ 15, 20, undef, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ], 
163 '... the value is correctly deleted');
164
165 $a->put(2, 30);
166
167 is_deeply(
168 $a, 
169 [ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ], 
170 '... the value is correctly put');
171
172 # Hash
173
174 my $h = { one => 1, two => 2, three => 3 };
175
176 ok($h->defined, '... got the right defined value');
177
178 is_deeply(
179 $h->keys->sort, 
180 [ qw/one three two/ ],
181 '... the keys');
182
183 is_deeply(
184 $h->values->sort, 
185 [ 1, 2, 3 ],
186 '... the values');
187
188 is_deeply(
189 $h->kv->sort(sub { $_[0]->[1] <=> $_[1]->[1] }), 
190 [ ['one', 1], ['two', 2], ['three', 3] ],
191 '... the kvs');
192
193 ok($h->exists('two'), '... exists works');
194 ok(!$h->exists('five'), '... !exists works');
195
196 $h->put('four' => 4);
197 is_deeply(
198 $h,
199 { one => 1, two => 2, three => 3, four => 4 },
200 '... got the value added correctly');
201
202 is($h->at('four'), 4, '... got the value at "four"');
203
204 $h->delete('four');
205 is_deeply(
206 $h,
207 { one => 1, two => 2, three => 3 },
208 '... got the value deleted correctly');
209
210