Remove references to jules git repo
[gitmo/Moose.git] / t / 070_native_traits / 203_trait_hash.t
CommitLineData
e3c07b19 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
9d010f57 6use Test::More tests => 46;
e3c07b19 7use Test::Exception;
8use Test::Moose 'does_ok';
9
e3c07b19 10{
11 package Stuff;
12 use Moose;
e3c07b19 13
14 has 'options' => (
a40b446a 15 traits => ['Hash'],
d50fc84a 16 is => 'ro',
17 isa => 'HashRef[Str]',
18 default => sub { {} },
19 handles => {
0d103ac9 20 'set_option' => 'set',
21 'get_option' => 'get',
bb023e15 22 'has_no_options' => 'is_empty',
0d103ac9 23 'num_options' => 'count',
24 'clear_options' => 'clear',
25 'delete_option' => 'delete',
26 'has_option' => 'exists',
27 'is_defined' => 'defined',
28 'option_accessor' => 'accessor',
29 'key_value' => 'kv',
30 'options_elements' => 'elements',
3c573ca4 31 'quantity' => [ accessor => 'quantity' ],
59de9de4 32 },
e3c07b19 33 );
34}
35
36my $stuff = Stuff->new();
d50fc84a 37isa_ok( $stuff, 'Stuff' );
e3c07b19 38
d50fc84a 39can_ok( $stuff, $_ ) for qw[
e3c07b19 40 set_option
41 get_option
af44c00c 42 has_no_options
e3c07b19 43 num_options
44 delete_option
45 clear_options
59de9de4 46 is_defined
47 has_option
48 quantity
49 option_accessor
e3c07b19 50];
51
af44c00c 52ok( $stuff->has_no_options, '... we have no options' );
d50fc84a 53is( $stuff->num_options, 0, '... we have no options' );
e3c07b19 54
d50fc84a 55is_deeply( $stuff->options, {}, '... no options yet' );
56ok( !$stuff->has_option('foo'), '... we have no foo option' );
e3c07b19 57
58lives_ok {
d50fc84a 59 $stuff->set_option( foo => 'bar' );
60}
61'... set the option okay';
e3c07b19 62
d50fc84a 63ok( $stuff->is_defined('foo'), '... foo is defined' );
59de9de4 64
af44c00c 65ok( !$stuff->has_no_options, '... we have options' );
d50fc84a 66is( $stuff->num_options, 1, '... we have 1 option(s)' );
67ok( $stuff->has_option('foo'), '... we have a foo option' );
68is_deeply( $stuff->options, { foo => 'bar' }, '... got options now' );
e3c07b19 69
70lives_ok {
d50fc84a 71 $stuff->set_option( bar => 'baz' );
72}
73'... set the option okay';
e3c07b19 74
d50fc84a 75is( $stuff->num_options, 2, '... we have 2 option(s)' );
76is_deeply( $stuff->options, { foo => 'bar', bar => 'baz' },
77 '... got more options now' );
e3c07b19 78
d50fc84a 79is( $stuff->get_option('foo'), 'bar', '... got the right option' );
e3c07b19 80
d50fc84a 81is_deeply( [ $stuff->get_option(qw(foo bar)) ], [qw(bar baz)],
82 "get multiple options at once" );
e3c07b19 83
85592815 84is( scalar($stuff->get_option(qw( foo bar) )), "baz",
85 '... got last option in scalar context');
86
e3c07b19 87lives_ok {
d50fc84a 88 $stuff->set_option( oink => "blah", xxy => "flop" );
89}
90'... set the option okay';
e3c07b19 91
d50fc84a 92is( $stuff->num_options, 4, "4 options" );
93is_deeply( [ $stuff->get_option(qw(foo bar oink xxy)) ],
94 [qw(bar baz blah flop)], "get multiple options at once" );
e3c07b19 95
96lives_ok {
97 $stuff->delete_option('bar');
d50fc84a 98}
99'... deleted the option okay';
e3c07b19 100
101lives_ok {
9d010f57 102 $stuff->delete_option('oink','xxy');
d50fc84a 103}
9d010f57 104'... deleted multiple option okay';
e3c07b19 105
d50fc84a 106is( $stuff->num_options, 1, '... we have 1 option(s)' );
107is_deeply( $stuff->options, { foo => 'bar' }, '... got more options now' );
e3c07b19 108
109$stuff->clear_options;
110
d50fc84a 111is_deeply( $stuff->options, {}, "... cleared options" );
e3c07b19 112
113lives_ok {
59de9de4 114 $stuff->quantity(4);
d50fc84a 115}
116'... options added okay with defaults';
59de9de4 117
d50fc84a 118is( $stuff->quantity, 4, 'reader part of curried accessor works' );
59de9de4 119
d50fc84a 120is_deeply( $stuff->options, { quantity => 4 }, '... returns what we expect' );
59de9de4 121
122lives_ok {
d50fc84a 123 Stuff->new( options => { foo => 'BAR' } );
124}
125'... good constructor params';
e3c07b19 126
127## check some errors
128
129dies_ok {
d50fc84a 130 $stuff->set_option( bar => {} );
131}
132'... could not add a hash ref where an string is expected';
e3c07b19 133
134dies_ok {
d50fc84a 135 Stuff->new( options => { foo => [] } );
136}
137'... bad constructor params';
e3c07b19 138
139## test the meta
140
141my $options = $stuff->meta->get_attribute('options');
c466e58f 142does_ok( $options, 'Moose::Meta::Attribute::Native::Trait::Hash' );
d50fc84a 143
144is_deeply(
145 $options->handles,
146 {
147 'set_option' => 'set',
148 'get_option' => 'get',
bb023e15 149 'has_no_options' => 'is_empty',
d50fc84a 150 'num_options' => 'count',
151 'clear_options' => 'clear',
152 'delete_option' => 'delete',
153 'has_option' => 'exists',
154 'is_defined' => 'defined',
155 'option_accessor' => 'accessor',
156 'key_value' => 'kv',
157 'options_elements' => 'elements',
3c573ca4 158 'quantity' => [ accessor => 'quantity' ],
d50fc84a 159 },
160 '... got the right handles mapping'
161);
162
163is( $options->type_constraint->type_parameter, 'Str',
164 '... got the right container type' );
59de9de4 165
166$stuff->set_option( oink => "blah", xxy => "flop" );
caa615b3 167my @key_value = sort{ $a->[0] cmp $b->[0] } $stuff->key_value;
59de9de4 168is_deeply(
169 \@key_value,
caa615b3 170 [ sort{ $a->[0] cmp $b->[0] } [ 'xxy', 'flop' ], [ 'quantity', 4 ], [ 'oink', 'blah' ] ],
59de9de4 171 '... got the right key value pairs'
caa615b3 172) or do{ require Data::Dumper; diag(Data::Dumper::Dumper(\@key_value)) };
59de9de4 173
174my %options_elements = $stuff->options_elements;
175is_deeply(
176 \%options_elements,
177 {
178 'oink' => 'blah',
179 'quantity' => 4,
180 'xxy' => 'flop'
181 },
182 '... got the right hash elements'
183);