flatten sclars
[gitmo/Moose-Autobox.git] / t / 001_basic.t
CommitLineData
5f654d8e 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
e29de5ed 6use Test::More tests => 70;
5f654d8e 7
8BEGIN {
9 use_ok('Moose::Autobox');
5f654d8e 10}
11
7dad2765 12use Moose::Autobox;
5f654d8e 13
3f4dd8b7 14my $VAR1; # for eval of dumps
15
5f654d8e 16# SCALAR & UNDEF
17
18my $s;
19ok(!$s->defined, '... got a undefined value');
20
21$s = 5;
22ok($s->defined, '... got a defined value');
23
3f4dd8b7 24eval $s->dump;
25is($VAR1, 5 , '... eval of SCALAR->dump works');
26
e29de5ed 27eval $s->flatten;
28is($VAR1, 5 , '... eval of SCALAR->flatten works');
29
3f4dd8b7 30eval $s->perl;
31is($s->perl, $s->dump, '... SCALAR->dump equals SCALAR->perl');
32
5f654d8e 33# CODE
34
35my $f1 = sub { @_ };
36ok($f1->defined, '... created function');
37
38my $f2 = eval { $f1->curry(1, 2, 3) };
39ok($f2->defined, '... created curried function');
40
41my $f3 = eval { $f1->rcurry(1, 2, 3) };
42ok($f3->defined, '... created right-curried function');
43
44is_deeply(
45[ $f2->(4, 5, 6) ],
46[ 1, 2, 3, 4, 5, 6 ],
47'... got the right return value from the curried function');
48
49is_deeply(
50[ $f3->(4, 5, 6) ],
51[ 4, 5, 6, 1, 2, 3 ],
52'... got the right return value from the r-curried function');
53
54ok((sub { 1 })->disjoin(sub { 0 })->(), '... disjoins properly');
260cc81f 55ok((sub { 0 })->disjoin(sub { 1 })->(), '... disjoins properly');
56
5f654d8e 57ok(!(sub { 1 })->conjoin(sub { 0 })->(), '... conjoins properly');
260cc81f 58ok(!(sub { 0 })->conjoin(sub { 1 })->(), '... conjoins properly');
5f654d8e 59
252ab1a2 60my $compose = (sub { @_, 1 })->compose(sub { @_, 2 });
5f654d8e 61
252ab1a2 62is_deeply(
63[ $compose->() ],
64[ 1, 2 ],
65'... got the right return value for compose');
260cc81f 66
5f654d8e 67# ARRAY
68
69my $a = [ 4, 2, 6, 78, 101, 2, 3 ];
70
71is($a->length, 7, '... got the right length');
72ok($a->defined, '... got the right defined value');
73
74is_deeply(
75$a->map(sub { $_ + 2 }),
76[ map { $_ + 2 } (4, 2, 6, 78, 101, 2, 3) ],
77'... got the right return value for map');
78
79is_deeply($a, [ 4, 2, 6, 78, 101, 2, 3 ], '... original value is unchanged');
80
09a0196c 81my $b = [1, 2, 3];
82$b->map(sub { $_++ } );
83is_deeply($b, [ 2, 3, 4 ], '... original value is changed');
84
5f654d8e 85is_deeply(
86$a->reverse(),
87[ 3, 2, 101, 78, 6, 2, 4 ],
88'... got the right return value for reverse');
89
90is_deeply($a, [ 4, 2, 6, 78, 101, 2, 3 ], '... original value is unchanged');
91
92is_deeply(
93$a->grep(sub { $_ < 50 }),
94[ grep { $_ < 50 } (4, 2, 6, 78, 101, 2, 3) ],
95'... got the right return value grep');
96
97is_deeply($a, [ 4, 2, 6, 78, 101, 2, 3 ], '... original value is unchanged');
98
99is($a->join(', '), '4, 2, 6, 78, 101, 2, 3', '... got the right joined string');
260cc81f 100is($a->join, '4267810123', '... got the right joined string');
5f654d8e 101ok($a->exists(0), '... exists works');
102ok(!$a->exists(10), '... exists works');
103
104is($a->pop(), 3, '... got the right pop-ed value');
105is_deeply($a, [ 4, 2, 6, 78, 101, 2 ], '... original value is now changed');
106
107is($a->shift(), 4, '... got the right unshift-ed value');
108is_deeply($a, [ 2, 6, 78, 101, 2 ], '... original value is now changed');
109
c11e6a74 110
111is_deeply(
112$a->slice([ 1, 2, 4 ]),
113[ 6, 78, 2 ],
114'... got the right sliced value');
115
5f654d8e 116is_deeply(
117$a->unshift(10),
118[ 10, 2, 6, 78, 101, 2 ],
119'... got the correct unshifted value');
120
121is_deeply(
122$a->unshift(15, 20, 30),
123[ 15, 20, 30, 10, 2, 6, 78, 101, 2 ],
124'... got the correct unshifted value (multiple values)');
125
126is_deeply(
127$a->push(10),
128[ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10 ],
129'... got the correct pushed value');
130
131is_deeply(
132$a->push(15, 20, 30),
133[ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ],
134'... got the correct pushed value (multiple values)');
135
136is_deeply(
137$a->sort(sub { $_[0] <=> $_[1] }),
138[ 2, 2, 6, 10, 10, 15, 15, 20, 20, 30, 30, 78, 101 ],
139'... got the correct sorted value');
140
141is_deeply(
142$a,
143[ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ],
144'... the original values are unchanged');
145
146is_deeply(
147[]->push(10, 20, 30)->map(sub { ($_, $_ + 5) })->reverse,
148[ 35, 30, 25, 20, 15, 10 ],
149'... got the correct chained value');
150
5dc78481 151is_deeply(
152$a->keys,
153[ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 ],
154'... the keys');
155
156is_deeply(
157$a->values,
158[ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ],
159'... the values');
160
161is_deeply(
162$a->kv,
163[ [0, 15], [1, 20], [2, 30], [3, 10], [4, 2], [5, 6], [6, 78],
164 [7, 101], [8, 2], [9, 10], [10, 15], [11, 20], [12, 30] ],
165'... [ k, v ]');
166
167is([1, 2, 3, 4, 5]->reduce(sub { $_[0] + $_[1] }), 15, '... got the right reduction');
168
169is_deeply(
260cc81f 170[1, 2, 3, 4, 5]->zip([ 5, 4, 3, 2, 1 ]),
171[ [1, 5], [2, 4], [3, 3], [4, 2], [5, 1] ],
172'... got the right zip');
5dc78481 173
260cc81f 174is_deeply(
175[1, 2, 3, 4, 5]->zip([ 6, 5, 4, 3, 2, 1 ]),
176[ [1, 6], [2, 5], [3, 4], [4, 3], [5, 2], [undef, 1] ],
177'... got the right zip');
178
179is($a->delete(2), 30, '... got the value deleted');
180is_deeply(
181$a,
182[ 15, 20, undef, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ],
183'... the value is correctly deleted');
184
185$a->put(2, 30);
186
187is_deeply(
188$a,
189[ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ],
190'... the value is correctly put');
5dc78481 191
3f4dd8b7 192eval($a->dump);
193is_deeply( $VAR1,
194 [ 15, 20, 30, 10, 2, 6, 78, 101, 2, 10, 15, 20, 30 ],
195 '... the value is correctly dumped');
9b2ca73c 196
9b2ca73c 197is( $a->dump,
198 $a->perl,
199 '... the value is correctly dumped with perl()' );
200
aaf111de 201is([1, 2, 3, 4, 5]->any, 3, '... any correctly found a value');
202is([1, 1, 2, 3, 4, 5, 5]->one, 2, '... one correctly found one value');
203is([1, 1, 2, 3, 4, 5, 5]->none , 6, '... none correctly did not find any of a value');
204is([3, 3, 3]->all, 3, '... all correctly found all of a value');
9b2ca73c 205
5f654d8e 206# Hash
207
208my $h = { one => 1, two => 2, three => 3 };
209
210ok($h->defined, '... got the right defined value');
211
5dc78481 212is_deeply(
213$h->keys->sort,
214[ qw/one three two/ ],
215'... the keys');
216
217is_deeply(
218$h->values->sort,
219[ 1, 2, 3 ],
220'... the values');
5f654d8e 221
260cc81f 222is_deeply(
223$h->kv->sort(sub { $_[0]->[1] <=> $_[1]->[1] }),
224[ ['one', 1], ['two', 2], ['three', 3] ],
225'... the kvs');
226
5dc78481 227ok($h->exists('two'), '... exists works');
228ok(!$h->exists('five'), '... !exists works');
260cc81f 229
230$h->put('four' => 4);
231is_deeply(
232$h,
233{ one => 1, two => 2, three => 3, four => 4 },
234'... got the value added correctly');
235
236is($h->at('four'), 4, '... got the value at "four"');
237
238$h->delete('four');
239is_deeply(
240$h,
241{ one => 1, two => 2, three => 3 },
242'... got the value deleted correctly');
243
bc9177cb 244is_deeply(
245$h->merge({ three => 33, four => 44 }),
246{ one => 1, two => 2, three => 33, four => 44 },
247'... got the hashes merged correctly');
248
3f4dd8b7 249eval($h->dump);
250is_deeply( $VAR1,
251 { one => 1, two => 2, three => 3 },
252 '... the value is correctly dumped');
253
254is( $h->dump,
255 $h->perl,
256 '... the value is correctly dumped with perl()' );
260cc81f 257
18ef6e1c 258is_deeply( { one => 1, two => 2, three => 3 }->slice([qw/three one/]),
259 [ qw/3 1/ ],
260 '... hash slices ok' );
f7ea23f6 261
262is_deeply( { one => 1, two => 2, three => 3 }->hslice([qw/two three/]),
263 { two => 2, three => 3 },
264 '... hash hslices ok' );