Add assert_valid() to Meta::TypeConstraint
[gitmo/Mouse.git] / t / 040_type_constraints / failing / 011_container_type_constraint.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 24;
7 use Test::Exception;
8
9 BEGIN {
10     use_ok('Mouse::Util::TypeConstraints');
11     use_ok('Mouse::Meta::TypeConstraint::Parameterized');
12 }
13
14 # Array of Ints
15
16 my $array_of_ints = Mouse::Meta::TypeConstraint::Parameterized->new(
17     name           => 'ArrayRef[Int]',
18     parent         => find_type_constraint('ArrayRef'),
19     type_parameter => find_type_constraint('Int'),
20 );
21 isa_ok($array_of_ints, 'Mouse::Meta::TypeConstraint::Parameterized');
22 isa_ok($array_of_ints, 'Mouse::Meta::TypeConstraint');
23
24 ok($array_of_ints->check([ 1, 2, 3, 4 ]), '... [ 1, 2, 3, 4 ] passed successfully');
25 ok(!$array_of_ints->check([qw/foo bar baz/]), '... [qw/foo bar baz/] failed successfully');
26 ok(!$array_of_ints->check([ 1, 2, 3, qw/foo bar/]), '... [ 1, 2, 3, qw/foo bar/] failed successfully');
27
28 ok(!$array_of_ints->check(1), '... 1 failed successfully');
29 ok(!$array_of_ints->check({}), '... {} failed successfully');
30 ok(!$array_of_ints->check(sub { () }), '... sub { () } failed successfully');
31
32 # Hash of Ints
33
34 my $hash_of_ints = Mouse::Meta::TypeConstraint::Parameterized->new(
35     name           => 'HashRef[Int]',
36     parent         => find_type_constraint('HashRef'),
37     type_parameter => find_type_constraint('Int'),
38 );
39 isa_ok($hash_of_ints, 'Mouse::Meta::TypeConstraint::Parameterized');
40 isa_ok($hash_of_ints, 'Mouse::Meta::TypeConstraint');
41
42 ok($hash_of_ints->check({ one => 1, two => 2, three => 3 }), '... { one => 1, two => 2, three => 3 } passed successfully');
43 ok(!$hash_of_ints->check({ 1 => 'one', 2 => 'two', 3 => 'three' }), '... { 1 => one, 2 => two, 3 => three } failed successfully');
44 ok(!$hash_of_ints->check({ 1 => 'one', 2 => 'two', three => 3 }), '... { 1 => one, 2 => two, three => 3 } failed successfully');
45
46 ok(!$hash_of_ints->check(1), '... 1 failed successfully');
47 ok(!$hash_of_ints->check([]), '... [] failed successfully');
48 ok(!$hash_of_ints->check(sub { () }), '... sub { () } failed successfully');
49
50 # Array of Array of Ints
51
52 my $array_of_array_of_ints = Mouse::Meta::TypeConstraint::Parameterized->new(
53     name           => 'ArrayRef[ArrayRef[Int]]',
54     parent         => find_type_constraint('ArrayRef'),
55     type_parameter => $array_of_ints,
56 );
57 isa_ok($array_of_array_of_ints, 'Mouse::Meta::TypeConstraint::Parameterized');
58 isa_ok($array_of_array_of_ints, 'Mouse::Meta::TypeConstraint');
59
60 ok($array_of_array_of_ints->check(
61     [[ 1, 2, 3 ], [ 4, 5, 6 ]]
62 ), '... [[ 1, 2, 3 ], [ 4, 5, 6 ]] passed successfully');
63 ok(!$array_of_array_of_ints->check(
64     [[ 1, 2, 3 ], [ qw/foo bar/ ]]
65 ), '... [[ 1, 2, 3 ], [ qw/foo bar/ ]] failed successfully');
66
67 {
68     my $anon_type = Mouse::Util::TypeConstraints::find_or_parse_type_constraint('ArrayRef[Foo]');
69     isa_ok( $anon_type, 'Mouse::Meta::TypeConstraint::Parameterized' );
70
71     my $param_type = $anon_type->type_parameter;
72     isa_ok( $param_type, 'Mouse::Meta::TypeConstraint::Class' );
73 }