6 use Test::More tests => 69;
8 use Test::Moose 'does_ok';
11 use_ok('Moose::AttributeHelpers');
19 traits => [qw/Collection::Array/],
21 isa => 'ArrayRef[Str]',
22 default => sub { [] },
24 'add_options' => 'push',
25 'remove_last_option' => 'pop',
26 'remove_first_option' => 'shift',
27 'insert_options' => 'unshift',
28 'get_option_at' => 'get',
29 'set_option_at' => 'set',
30 'num_options' => 'count',
31 'has_options' => 'empty',
32 'clear_options' => 'clear',
33 'splice_options' => 'splice',
34 'sort_options_in_place' => 'sort_in_place',
35 'option_accessor' => 'accessor',
36 'add_optons_with_speed' =>
37 [ 'push' => ['funrolls', 'funbuns'] ],
38 'prepend_prerequisites_along_with' =>
39 [ 'unshift' => ['first', 'second'] ],
40 'descending_options' =>
41 [ 'sort_in_place' => [ sub { $_[1] <=> $_[0] } ] ],
47 my $stuff = Stuff->new(options => [ 10, 12 ]);
48 isa_ok($stuff, 'Stuff');
50 can_ok($stuff, $_) for qw[
64 is_deeply($stuff->options, [10, 12], '... got options');
66 ok($stuff->has_options, '... we have options');
67 is($stuff->num_options, 2, '... got 2 options');
69 is($stuff->remove_last_option, 12, '... removed the last option');
70 is($stuff->remove_first_option, 10, '... removed the last option');
72 is_deeply($stuff->options, [], '... no options anymore');
74 ok(!$stuff->has_options, '... no options');
75 is($stuff->num_options, 0, '... got no options');
78 $stuff->add_options(1, 2, 3);
79 } '... set the option okay';
81 is_deeply($stuff->options, [1, 2, 3], '... got options now');
83 ok($stuff->has_options, '... no options');
84 is($stuff->num_options, 3, '... got 3 options');
86 is($stuff->get_option_at(0), 1, '... get option at index 0');
87 is($stuff->get_option_at(1), 2, '... get option at index 1');
88 is($stuff->get_option_at(2), 3, '... get option at index 2');
91 $stuff->set_option_at(1, 100);
92 } '... set the option okay';
94 is($stuff->get_option_at(1), 100, '... get option at index 1');
97 $stuff->add_options(10, 15);
98 } '... set the option okay';
100 is_deeply($stuff->options, [1, 100, 3, 10, 15], '... got more options now');
102 is($stuff->num_options, 5, '... got 5 options');
104 is($stuff->remove_last_option, 15, '... removed the last option');
106 is($stuff->num_options, 4, '... got 4 options');
107 is_deeply($stuff->options, [1, 100, 3, 10], '... got diff options now');
110 $stuff->insert_options(10, 20);
111 } '... set the option okay';
113 is($stuff->num_options, 6, '... got 6 options');
114 is_deeply($stuff->options, [10, 20, 1, 100, 3, 10], '... got diff options now');
116 is($stuff->get_option_at(0), 10, '... get option at index 0');
117 is($stuff->get_option_at(1), 20, '... get option at index 1');
118 is($stuff->get_option_at(3), 100, '... get option at index 3');
120 is($stuff->remove_first_option, 10, '... getting the first option');
122 is($stuff->num_options, 5, '... got 5 options');
123 is($stuff->get_option_at(0), 20, '... get option at index 0');
125 $stuff->clear_options;
126 is_deeply( $stuff->options, [], "... clear options" );
128 $stuff->add_options(5, 1, 2, 3);
129 $stuff->sort_options_in_place;
130 is_deeply( $stuff->options, [1, 2, 3, 5], "... sort options in place (default sort order)" );
132 $stuff->sort_options_in_place( sub { $_[1] <=> $_[0] } );
133 is_deeply( $stuff->options, [5, 3, 2, 1], "... sort options in place (descending order)" );
135 $stuff->clear_options();
136 $stuff->add_options(5, 1, 2, 3);
138 $stuff->descending_options();
139 } '... curried sort in place lives ok';
141 is_deeply( $stuff->options, [5, 3, 2, 1], "... sort currying" );
143 throws_ok { $stuff->sort_options_in_place('foo') } qr/Argument must be a code reference/,
144 'error when sort_in_place receives a non-coderef argument';
146 $stuff->clear_options;
149 $stuff->add_options('tree');
150 } '... set the options okay';
153 $stuff->add_options_with_speed('compatible', 'safe');
154 } '... add options with speed okay';
156 is_deeply($stuff->options, [qw/tree funrolls funbuns compatible safe/],
157 'check options after add_options_with_speed');
160 $stuff->prepend_prerequisites_along_with();
161 } '... add prerequisite options okay';
163 $stuff->clear_options;
164 $stuff->add_options( 1, 2 );
167 $stuff->splice_options( 1, 0, 'foo' );
168 } '... splice_options works';
171 $stuff->options, [ 1, 'foo', 2 ],
172 'splice added expected option'
175 is($stuff->option_accessor(1 => 'foo++'), 'foo++');
176 is($stuff->option_accessor(1), 'foo++');
181 # $stuff->insert_options(undef);
182 #} '... could not add an undef where a string is expected';
185 # $stuff->set_option(5, {});
186 #} '... could not add a hash ref where a string is expected';
189 Stuff->new(options => [ undef, 10, undef, 20 ]);
190 } '... bad constructor params';
193 my $stuff = Stuff->new();
194 $stuff->add_options(undef);
195 } '... rejects push of an invalid type';
198 my $stuff = Stuff->new();
199 $stuff->insert_options(undef);
200 } '... rejects unshift of an invalid type';
203 my $stuff = Stuff->new();
204 $stuff->set_option_at( 0, undef );
205 } '... rejects set of an invalid type';
208 my $stuff = Stuff->new();
209 $stuff->sort_in_place_options( undef );
210 } '... sort rejects arg of invalid type';
213 my $stuff = Stuff->new();
214 $stuff->option_accessor();
215 } '... accessor rejects 0 args';
218 my $stuff = Stuff->new();
219 $stuff->option_accessor(1, 2, 3);
220 } '... accessor rejects 3 args';
224 my $options = $stuff->meta->get_attribute('options');
225 does_ok($options, 'Moose::AttributeHelpers::Trait::Collection::Array');
227 is_deeply($options->handles,
228 'add_options' => 'push',
229 'remove_last_option' => 'pop',
230 'remove_first_option' => 'shift',
231 'insert_options' => 'unshift',
232 'get_option_at' => 'get',
233 'set_option_at' => 'set',
234 'num_options' => 'count',
235 'has_options' => 'empty',
236 'clear_options' => 'clear',
237 'splice_options' => 'splice',
238 'sort_options_in_place' => 'sort_in_place',
239 'option_accessor' => 'accessor',
240 }, '... got the right handles mapping');
242 is($options->type_constraint->type_parameter, 'Str', '... got the right container type');