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