Add assert_valid() to Meta::TypeConstraint
[gitmo/Mouse.git] / t / 040_type_constraints / failing / 024_role_type_constraint.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 18;
7 use Test::Exception;
8
9 BEGIN {
10     use_ok('Mouse::Util::TypeConstraints');
11 }
12
13 {
14     package Gorch;
15     use Mouse::Role;
16
17     package Bar;
18     use Mouse::Role;
19
20     package Foo;
21     use Mouse::Role;
22
23     with qw(Bar Gorch);
24
25     package FooC;
26     use Mouse;
27     with qw(Foo);
28
29     package BarC;
30     use Mouse;
31     with qw(Bar);
32
33 }
34
35 lives_ok { role_type('Boop', message { "${_} is not a Boop" }) }
36   'role_type keywork works with message';
37
38 my $type = find_type_constraint("Foo");
39
40 is( $type->role, "Foo", "role attribute" );
41
42 ok( $type->is_subtype_of("Gorch"), "subtype of gorch" );
43
44 ok( $type->is_subtype_of("Bar"), "subtype of bar" );
45
46 ok( $type->is_subtype_of("Object"), "subtype of Object" );
47
48 ok( !$type->is_subtype_of("ThisTypeDoesNotExist"), "not subtype of unknown type name" );
49 ok( !$type->is_a_type_of("ThisTypeDoesNotExist"), "not type of unknown type name" );
50
51 ok( find_type_constraint("Bar")->check(FooC->new), "Foo passes Bar" );
52 ok( find_type_constraint("Bar")->check(BarC->new), "Bar passes Bar" );
53 ok( !find_type_constraint("Gorch")->check(BarC->new), "but Bar doesn't pass Gorch");
54
55 my $boop = find_type_constraint("Boop");
56 ok( $boop->has_message, 'Boop has a message');
57 my $error = $boop->get_message(FooC->new);
58 like( $error, qr/is not a Boop/,  'boop gives correct error message');
59
60
61 ok( $type->equals($type), "equals self" );
62 ok( $type->equals(Mouse::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Foo" )), "equals anon constraint of same value" );
63 ok( $type->equals(Mouse::Meta::TypeConstraint::Role->new( name => "Oink", role => "Foo" )), "equals differently named constraint of same value" );
64 ok( !$type->equals(Mouse::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Bar" )), "doesn't equal other anon constraint" );
65 ok( $type->is_subtype_of(Mouse::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Bar" )), "subtype of other anon constraint" );
66