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