Make pod tests run only for authors
[gitmo/MooseX-AttributeHelpers.git] / t / 002_basic_array.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 52;
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::Array',
19         is        => 'ro',
20         isa       => 'ArrayRef[Str]',
21         default   => sub { [] },
22         provides  => {
23             'push'    => 'add_options',
24             'pop'     => 'remove_last_option',    
25             'shift'   => 'remove_first_option',
26             'unshift' => 'insert_options',
27             'get'     => 'get_option_at',
28             'set'     => 'set_option_at',
29             'count'   => 'num_options',
30             'empty'   => 'has_options',        
31             'clear'   => 'clear_options',        
32         },
33         curries   => {
34             'push'    => {
35                 add_options_with_speed => ['funrolls', 'funbuns']
36             },
37             'unshift'  => {
38                 prepend_prerequisites_along_with => ['first', 'second']
39             }
40         }
41     );
42 }
43
44 my $stuff = Stuff->new(options => [ 10, 12 ]);
45 isa_ok($stuff, 'Stuff');
46
47 can_ok($stuff, $_) for qw[
48     add_options
49     remove_last_option
50     remove_first_option
51     insert_options
52     get_option_at
53     set_option_at
54     num_options
55     clear_options
56     has_options
57 ];
58
59 is_deeply($stuff->options, [10, 12], '... got options');
60
61 ok($stuff->has_options, '... we have options');
62 is($stuff->num_options, 2, '... got 2 options');
63
64 is($stuff->remove_last_option, 12, '... removed the last option');
65 is($stuff->remove_first_option, 10, '... removed the last option');
66
67 is_deeply($stuff->options, [], '... no options anymore');
68
69 ok(!$stuff->has_options, '... no options');
70 is($stuff->num_options, 0, '... got no options');
71
72 lives_ok {
73     $stuff->add_options(1, 2, 3);
74 } '... set the option okay';
75
76 is_deeply($stuff->options, [1, 2, 3], '... got options now');
77
78 ok($stuff->has_options, '... no options');
79 is($stuff->num_options, 3, '... got 3 options');
80
81 is($stuff->get_option_at(0), 1, '... get option at index 0');
82 is($stuff->get_option_at(1), 2, '... get option at index 1');
83 is($stuff->get_option_at(2), 3, '... get option at index 2');
84
85 lives_ok {
86     $stuff->set_option_at(1, 100);
87 } '... set the option okay';
88
89 is($stuff->get_option_at(1), 100, '... get option at index 1');
90
91 lives_ok {
92     $stuff->add_options(10, 15);
93 } '... set the option okay';
94
95 is_deeply($stuff->options, [1, 100, 3, 10, 15], '... got more options now');
96
97 is($stuff->num_options, 5, '... got 5 options');
98
99 is($stuff->remove_last_option, 15, '... removed the last option');
100
101 is($stuff->num_options, 4, '... got 4 options');
102 is_deeply($stuff->options, [1, 100, 3, 10], '... got diff options now');
103
104 lives_ok {
105     $stuff->insert_options(10, 20);
106 } '... set the option okay';
107
108 is($stuff->num_options, 6, '... got 6 options');
109 is_deeply($stuff->options, [10, 20, 1, 100, 3, 10], '... got diff options now');
110
111 is($stuff->get_option_at(0), 10, '... get option at index 0');
112 is($stuff->get_option_at(1), 20, '... get option at index 1');
113 is($stuff->get_option_at(3), 100, '... get option at index 3');
114
115 is($stuff->remove_first_option, 10, '... getting the first option');
116
117 is($stuff->num_options, 5, '... got 5 options');
118 is($stuff->get_option_at(0), 20, '... get option at index 0');
119
120 $stuff->clear_options;
121 is_deeply( $stuff->options, [], "... clear options" );
122
123 lives_ok {
124     $stuff->add_options('tree');
125 } '... set the options okay';
126
127 lives_ok { 
128     $stuff->add_options_with_speed('compatible', 'safe');
129 } '... add options with speed okay';
130
131 is_deeply($stuff->options, [qw/tree funrolls funbuns compatible safe/]);
132
133 lives_ok {
134     $stuff->prepend_prerequisites_along_with();
135 } '... add prerequisite options okay';
136
137 ## check some errors
138
139 #dies_ok {
140 #    $stuff->insert_options(undef);
141 #} '... could not add an undef where a string is expected';
142 #
143 #dies_ok {
144 #    $stuff->set_option(5, {});
145 #} '... could not add a hash ref where a string is expected';
146
147 dies_ok {
148     Stuff->new(options => [ undef, 10, undef, 20 ]);
149 } '... bad constructor params';
150
151 ## test the meta
152
153 my $options = $stuff->meta->get_attribute('options');
154 isa_ok($options, 'MooseX::AttributeHelpers::Collection::Array');
155
156 is_deeply($options->provides, {
157     'push'    => 'add_options',
158     'pop'     => 'remove_last_option',    
159     'shift'   => 'remove_first_option',
160     'unshift' => 'insert_options',
161     'get'     => 'get_option_at',
162     'set'     => 'set_option_at',
163     'count'   => 'num_options',
164     'empty'   => 'has_options',    
165     'clear'   => 'clear_options',    
166 }, '... got the right provies mapping');
167
168 is($options->type_constraint->type_parameter, 'Str', '... got the right container type');