7b85a1093c074c8c0b18eb8054eff6c999593e9c
[gitmo/MooseX-AttributeHelpers.git] / t / 005_basic_list.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 19;
7 use Test::Exception;
8
9 BEGIN {
10     use_ok('MooseX::AttributeHelpers');   
11 }
12
13 {
14     package Stuff;
15     use Moose;
16
17     has '_options' => (
18         metaclass => 'Collection::List',
19         is        => 'ro',
20         isa       => 'ArrayRef[Int]',
21         init_arg  => 'options',
22         default   => sub { [] },
23         provides  => {
24             'count'    => 'num_options',
25             'empty'    => 'has_options',        
26             'map'      => 'map_options',
27             'grep'     => 'filter_options',
28             'find'     => 'find_option',
29             'elements' => 'options',
30         }
31     );
32 }
33
34 my $stuff = Stuff->new(options => [ 1 .. 10 ]);
35 isa_ok($stuff, 'Stuff');
36
37 can_ok($stuff, $_) for qw[
38     _options
39     num_options
40     has_options
41     map_options
42     filter_options
43     find_option
44     options
45 ];
46
47 is_deeply($stuff->_options, [1 .. 10], '... got options');
48
49 ok($stuff->has_options, '... we have options');
50 is($stuff->num_options, 10, '... got 2 options');
51
52 is_deeply(
53 [ $stuff->filter_options(sub { $_[0] % 2 == 0 }) ],
54 [ 2, 4, 6, 8, 10 ],
55 '... got the right filtered values'
56 );
57
58 is_deeply(
59 [ $stuff->map_options(sub { $_[0] * 2 }) ],
60 [ 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 ],
61 '... got the right mapped values'
62 );
63
64 is($stuff->find_option(sub { $_[0] % 2 == 0 }), 2, '.. found the right option');
65
66 is_deeply([ $stuff->options ], [1 .. 10], '... got the list of options');
67
68 ## test the meta
69
70 my $options = $stuff->meta->get_attribute('_options');
71 isa_ok($options, 'MooseX::AttributeHelpers::Collection::List');
72
73 is_deeply($options->provides, {
74     'map'      => 'map_options',
75     'grep'     => 'filter_options',
76     'find'     => 'find_option',
77     'count'    => 'num_options',
78     'empty'    => 'has_options',
79     'elements' => 'options',
80 }, '... got the right provies mapping');
81
82 is($options->type_constraint->type_parameter, 'Int', '... got the right container type');