Require Dist::Zilla 4.200016+
[gitmo/Moose.git] / t / type_constraints / custom_type_errors.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7 use Test::Fatal;
8
9 {
10     package Animal;
11     use Moose;
12     use Moose::Util::TypeConstraints;
13
14     subtype 'Natural' => as 'Int' => where { $_ > 0 } =>
15         message {"This number ($_) is not a positive integer!"};
16
17     subtype 'NaturalLessThanTen' => as 'Natural' => where { $_ < 10 } =>
18         message {"This number ($_) is not less than ten!"};
19
20     has leg_count => (
21         is      => 'rw',
22         isa     => 'NaturalLessThanTen',
23         lazy    => 1,
24         default => 0,
25     );
26 }
27
28 is( exception { my $goat = Animal->new( leg_count => 4 ) }, undef, '... no errors thrown, value is good' );
29 is( exception { my $spider = Animal->new( leg_count => 8 ) }, undef, '... no errors thrown, value is good' );
30
31 like( exception { my $fern = Animal->new( leg_count => 0 ) }, qr/This number \(0\) is not less than ten!/, 'gave custom supertype error message on new' );
32
33 like( exception { my $centipede = Animal->new( leg_count => 30 ) }, qr/This number \(30\) is not less than ten!/, 'gave custom subtype error message on new' );
34
35 my $chimera;
36 is( exception { $chimera = Animal->new( leg_count => 4 ) }, undef, '... no errors thrown, value is good' );
37
38 like( exception { $chimera->leg_count(0) }, qr/This number \(0\) is not less than ten!/, 'gave custom supertype error message on set to 0' );
39
40 like( exception { $chimera->leg_count(16) }, qr/This number \(16\) is not less than ten!/, 'gave custom subtype error message on set to 16' );
41
42 my $gimp = eval { Animal->new() };
43 is( $@, '', '... no errors thrown, value is good' );
44
45 like( exception { $gimp->leg_count }, qr/This number \(0\) is not less than ten!/, 'gave custom supertype error message on lazy set to 0' );
46
47 done_testing;