use $_ rather than $_[0] for helpers that use callbacks
[gitmo/Moose.git] / t / 070_native_traits / 205_trait_list.t
CommitLineData
e3c07b19 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
391c761c 6use Test::More tests => 34;
e3c07b19 7use Test::Exception;
8use Test::Moose 'does_ok';
9
18281451 10my $sort;
11my $less;
12my $up;
e3c07b19 13{
14 package Stuff;
15 use Moose;
16
17 has '_options' => (
e11fb12c 18 traits => ['Array'],
d50fc84a 19 is => 'ro',
20 isa => 'ArrayRef[Int]',
21 init_arg => 'options',
22 default => sub { [] },
0d103ac9 23 handles => {
391c761c 24 'num_options' => 'count',
25 'has_no_options' => 'empty',
26 'map_options', => 'map',
27 'filter_options' => 'grep',
28 'find_option' => 'first',
29 'options' => 'elements',
30 'join_options' => 'join',
31 'get_option_at' => 'get',
32 'get_first_option' => 'head',
33 'all_but_first_option' => 'tail',
34 'get_last_option' => 'last',
35 'sorted_options' => 'sort',
36 'less_than_five' => [ grep => [ $less = sub { $_ < 5 } ] ],
37 'up_by_one' => [ map => [ $up = sub { $_ + 1 } ] ],
d50fc84a 38 'dashify' => [ join => ['-'] ],
39 'descending' => [ sort => [ $sort = sub { $_[1] <=> $_[0] } ] ],
59de9de4 40 },
e3c07b19 41 );
59de9de4 42
e3c07b19 43}
44
d50fc84a 45my $stuff = Stuff->new( options => [ 1 .. 10 ] );
46isa_ok( $stuff, 'Stuff' );
e3c07b19 47
d50fc84a 48can_ok( $stuff, $_ ) for qw[
e3c07b19 49 _options
50 num_options
af44c00c 51 has_no_options
e3c07b19 52 map_options
53 filter_options
54 find_option
55 options
56 join_options
59de9de4 57 get_option_at
58 sorted_options
e3c07b19 59];
60
d50fc84a 61is_deeply( $stuff->_options, [ 1 .. 10 ], '... got options' );
e3c07b19 62
af44c00c 63ok( !$stuff->has_no_options, '... we have options' );
d50fc84a 64is( $stuff->num_options, 10, '... got 2 options' );
65cmp_ok( $stuff->get_option_at(0), '==', 1, '... get option 0' );
391c761c 66cmp_ok( $stuff->get_first_option, '==', 1, '... get head' );
67is_deeply( [ $stuff->all_but_first_option ], [ 2 .. 10 ], '... get tail' );
d50fc84a 68cmp_ok( $stuff->get_last_option, '==', 10, '... get last' );
e3c07b19 69
70is_deeply(
c9edbf05 71 [ $stuff->filter_options( sub { $_ % 2 == 0 } ) ],
d50fc84a 72 [ 2, 4, 6, 8, 10 ],
73 '... got the right filtered values'
e3c07b19 74);
75
76is_deeply(
c9edbf05 77 [ $stuff->map_options( sub { $_ * 2 } ) ],
d50fc84a 78 [ 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 ],
79 '... got the right mapped values'
e3c07b19 80);
81
c9edbf05 82is( $stuff->find_option( sub { $_ % 2 == 0 } ), 2,
d50fc84a 83 '.. found the right option' );
e3c07b19 84
d50fc84a 85is_deeply( [ $stuff->options ], [ 1 .. 10 ], '... got the list of options' );
e3c07b19 86
d50fc84a 87is( $stuff->join_options(':'), '1:2:3:4:5:6:7:8:9:10',
88 '... joined the list of options by :' );
e3c07b19 89
d50fc84a 90is_deeply(
91 [ $stuff->sorted_options ], [ sort ( 1 .. 10 ) ],
92 '... got sorted options (default sort order)'
93);
94is_deeply(
95 [ $stuff->sorted_options( sub { $_[1] <=> $_[0] } ) ],
96 [ sort { $b <=> $a } ( 1 .. 10 ) ],
97 '... got sorted options (descending sort order) '
98);
59de9de4 99
d50fc84a 100throws_ok { $stuff->sorted_options('foo') }
101qr/Argument must be a code reference/,
59de9de4 102 'error when sort receives a non-coderef argument';
103
104# test the currying
d50fc84a 105is_deeply( [ $stuff->less_than_five() ], [ 1 .. 4 ] );
59de9de4 106
d50fc84a 107is_deeply( [ $stuff->up_by_one() ], [ 2 .. 11 ] );
59de9de4 108
d50fc84a 109is( $stuff->dashify, '1-2-3-4-5-6-7-8-9-10' );
59de9de4 110
d50fc84a 111is_deeply( [ $stuff->descending ], [ reverse 1 .. 10 ] );
59de9de4 112
e3c07b19 113## test the meta
114
115my $options = $stuff->meta->get_attribute('_options');
c466e58f 116does_ok( $options, 'Moose::Meta::Attribute::Native::Trait::Array' );
d50fc84a 117
118is_deeply(
119 $options->handles,
120 {
391c761c 121 'num_options' => 'count',
122 'has_no_options' => 'empty',
123 'map_options', => 'map',
124 'filter_options' => 'grep',
125 'find_option' => 'first',
126 'options' => 'elements',
127 'join_options' => 'join',
128 'get_option_at' => 'get',
129 'get_first_option' => 'head',
130 'all_but_first_option' => 'tail',
131 'get_last_option' => 'last',
132 'sorted_options' => 'sort',
133 'less_than_five' => [ grep => [$less] ],
134 'up_by_one' => [ map => [$up] ],
135 'dashify' => [ join => ['-'] ],
136 'descending' => [ sort => [$sort] ],
d50fc84a 137 },
138 '... got the right handles mapping'
139);
140
141is( $options->type_constraint->type_parameter, 'Int',
142 '... got the right container type' );
59de9de4 143
144dies_ok {
d50fc84a 145 $stuff->sort_in_place_options(undef);
146}
147'... sort rejects arg of invalid type';
59de9de4 148