More tests for native traits to exercise all code paths
[gitmo/Moose.git] / t / 070_native_traits / 060_trait_number.t
CommitLineData
e3c07b19 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
f1ae167f 6use Moose ();
2c963694 7use Moose::Util::TypeConstraints;
f1ae167f 8use Test::Exception;
a28e50e4 9use Test::More;
e3c07b19 10use Test::Moose;
11
e3c07b19 12{
f1ae167f 13 my %handles = (
14 abs => 'abs',
15 add => 'add',
16 inc => [ add => 1 ],
17 div => 'div',
18 cut_in_half => [ div => 2 ],
19 mod => 'mod',
20 odd => [ mod => 2 ],
21 mul => 'mul',
22 set => 'set',
23 sub => 'sub',
24 dec => [ sub => 1 ],
e3c07b19 25 );
f1ae167f 26
27 my $name = 'Foo1';
28
29 sub build_class {
30 my %attr = @_;
31
32 my $class = Moose::Meta::Class->create(
33 $name++,
34 superclasses => ['Moose::Object'],
35 );
36
37 $class->add_attribute(
38 integer => (
39 traits => ['Number'],
40 is => 'ro',
41 isa => 'Int',
42 default => 5,
43 handles => \%handles,
44 clearer => '_clear_integer',
45 %attr,
46 ),
47 );
48
49 return ( $class->name, \%handles );
50 }
e3c07b19 51}
52
f1ae167f 53{
54 run_tests(build_class);
55 run_tests( build_class( lazy => 1 ) );
2c963694 56
57 # Will force the inlining code to check the entire hashref when it is modified.
58 subtype 'MyInt', as 'Int', where { 1 };
59
60 run_tests( build_class( isa => 'MyInt' ) );
61
62 coerce 'MyInt', from 'Int', via { $_ };
63
64 run_tests( build_class( isa => 'MyInt', coerce => 1 ) );
f1ae167f 65}
e3c07b19 66
f1ae167f 67sub run_tests {
68 my ( $class, $handles ) = @_;
e3c07b19 69
f1ae167f 70 can_ok( $class, $_ ) for sort keys %{$handles};
e3c07b19 71
f1ae167f 72 with_immutable {
73 my $obj = $class->new;
e3c07b19 74
f1ae167f 75 is( $obj->integer, 5, 'Default to five' );
e3c07b19 76
f1ae167f 77 $obj->add(10);
e3c07b19 78
f1ae167f 79 is( $obj->integer, 15, 'Add ten for fithteen' );
e3c07b19 80
167ec185 81 throws_ok { $obj->add( 10, 2 ) }
82 qr/Cannot call add with more than 1 argument/,
83 'add throws an error when 2 arguments are passed';
84
f1ae167f 85 $obj->sub(3);
e3c07b19 86
f1ae167f 87 is( $obj->integer, 12, 'Subtract three for 12' );
e3c07b19 88
167ec185 89 throws_ok { $obj->sub( 10, 2 ) }
90 qr/Cannot call sub with more than 1 argument/,
91 'sub throws an error when 2 arguments are passed';
92
f1ae167f 93 $obj->set(10);
e3c07b19 94
f1ae167f 95 is( $obj->integer, 10, 'Set to ten' );
e3c07b19 96
167ec185 97 throws_ok { $obj->set( 10, 2 ) }
98 qr/Cannot call set with more than 1 argument/,
99 'set throws an error when 2 arguments are passed';
100
f1ae167f 101 $obj->div(2);
e3c07b19 102
f1ae167f 103 is( $obj->integer, 5, 'divide by 2' );
e3c07b19 104
167ec185 105 throws_ok { $obj->div( 10, 2 ) }
106 qr/Cannot call div with more than 1 argument/,
107 'div throws an error when 2 arguments are passed';
108
f1ae167f 109 $obj->mul(2);
e3c07b19 110
f1ae167f 111 is( $obj->integer, 10, 'multiplied by 2' );
e3c07b19 112
167ec185 113 throws_ok { $obj->mul( 10, 2 ) }
114 qr/Cannot call mul with more than 1 argument/,
115 'mul throws an error when 2 arguments are passed';
116
f1ae167f 117 $obj->mod(2);
e3c07b19 118
f1ae167f 119 is( $obj->integer, 0, 'Mod by 2' );
e3c07b19 120
167ec185 121 throws_ok { $obj->mod( 10, 2 ) }
122 qr/Cannot call mod with more than 1 argument/,
123 'mod throws an error when 2 arguments are passed';
124
f1ae167f 125 $obj->set(7);
e3c07b19 126
f1ae167f 127 $obj->mod(5);
e3c07b19 128
f1ae167f 129 is( $obj->integer, 2, 'Mod by 5' );
e3c07b19 130
f1ae167f 131 $obj->set(-1);
e3c07b19 132
f1ae167f 133 $obj->abs;
59de9de4 134
167ec185 135 throws_ok { $obj->abs(10) }
136 qr/Cannot call abs with any arguments/,
137 'abs throws an error when an argument is passed';
138
f1ae167f 139 is( $obj->integer, 1, 'abs 1' );
59de9de4 140
f1ae167f 141 $obj->set(12);
59de9de4 142
f1ae167f 143 $obj->inc;
59de9de4 144
f1ae167f 145 is( $obj->integer, 13, 'inc 12' );
59de9de4 146
f1ae167f 147 $obj->dec;
e3c07b19 148
f1ae167f 149 is( $obj->integer, 12, 'dec 13' );
d50fc84a 150
f1ae167f 151 if ( $class->meta->get_attribute('integer')->is_lazy ) {
152 my $obj = $class->new;
153
154 $obj->add(2);
155
156 is( $obj->integer, 7, 'add with lazy default' );
157
158 $obj->_clear_integer;
159
160 $obj->mod(2);
161
162 is( $obj->integer, 1, 'mod with lazy default' );
163 }
164 }
165 $class;
166}
e3c07b19 167
a28e50e4 168done_testing;