Add assert_valid() to Meta::TypeConstraint
[gitmo/Mouse.git] / t / 040_type_constraints / failing / 011_container_type_constraint.t
CommitLineData
b2b106d7 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More tests => 24;
7use Test::Exception;
8
9BEGIN {
10 use_ok('Mouse::Util::TypeConstraints');
11 use_ok('Mouse::Meta::TypeConstraint::Parameterized');
12}
13
14# Array of Ints
15
16my $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);
21isa_ok($array_of_ints, 'Mouse::Meta::TypeConstraint::Parameterized');
22isa_ok($array_of_ints, 'Mouse::Meta::TypeConstraint');
23
24ok($array_of_ints->check([ 1, 2, 3, 4 ]), '... [ 1, 2, 3, 4 ] passed successfully');
25ok(!$array_of_ints->check([qw/foo bar baz/]), '... [qw/foo bar baz/] failed successfully');
26ok(!$array_of_ints->check([ 1, 2, 3, qw/foo bar/]), '... [ 1, 2, 3, qw/foo bar/] failed successfully');
27
28ok(!$array_of_ints->check(1), '... 1 failed successfully');
29ok(!$array_of_ints->check({}), '... {} failed successfully');
30ok(!$array_of_ints->check(sub { () }), '... sub { () } failed successfully');
31
32# Hash of Ints
33
34my $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);
39isa_ok($hash_of_ints, 'Mouse::Meta::TypeConstraint::Parameterized');
40isa_ok($hash_of_ints, 'Mouse::Meta::TypeConstraint');
41
42ok($hash_of_ints->check({ one => 1, two => 2, three => 3 }), '... { one => 1, two => 2, three => 3 } passed successfully');
43ok(!$hash_of_ints->check({ 1 => 'one', 2 => 'two', 3 => 'three' }), '... { 1 => one, 2 => two, 3 => three } failed successfully');
44ok(!$hash_of_ints->check({ 1 => 'one', 2 => 'two', three => 3 }), '... { 1 => one, 2 => two, three => 3 } failed successfully');
45
46ok(!$hash_of_ints->check(1), '... 1 failed successfully');
47ok(!$hash_of_ints->check([]), '... [] failed successfully');
48ok(!$hash_of_ints->check(sub { () }), '... sub { () } failed successfully');
49
50# Array of Array of Ints
51
52my $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);
57isa_ok($array_of_array_of_ints, 'Mouse::Meta::TypeConstraint::Parameterized');
58isa_ok($array_of_array_of_ints, 'Mouse::Meta::TypeConstraint');
59
60ok($array_of_array_of_ints->check(
61 [[ 1, 2, 3 ], [ 4, 5, 6 ]]
62), '... [[ 1, 2, 3 ], [ 4, 5, 6 ]] passed successfully');
63ok(!$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}