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