finish role tc test
[gitmo/Moose.git] / t / 040_type_constraints / 024_role_type_constraint.t
CommitLineData
620db045 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6df3a27e 6use Test::More tests => 17;
620db045 7use Test::Exception;
8
9BEGIN {
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
6df3a27e 25 package FooC;
26 use Moose;
27 with qw(Foo);
28
29 package BarC;
30 use Moose;
31 with qw(Bar);
32
620db045 33}
34
620db045 35lives_ok { role_type('Boop', message { "${_} is not a Boop" }) }
36 'role_type keywork works with message';
37
38my $type = find_type_constraint("Foo");
39
40is( $type->role, "Foo", "role attribute" );
41
42ok( $type->is_subtype_of("Gorch"), "subtype of gorch" );
43
44ok( $type->is_subtype_of("Bar"), "subtype of bar" );
45
46ok( $type->is_subtype_of("Object"), "subtype of Object" );
6df3a27e 47ok( $type->is_subtype_of("Role"), "subtype of Role" );
620db045 48
6df3a27e 49ok( find_type_constraint("Bar")->check(FooC->new), "Foo passes Bar" );
50ok( find_type_constraint("Bar")->check(BarC->new), "Bar passes Bar" );
51ok( !find_type_constraint("Gorch")->check(BarC->new), "but Bar doesn't pass Gorch");
620db045 52
620db045 53my $boop = find_type_constraint("Boop");
54ok( $boop->has_message, 'Boop has a message');
6df3a27e 55my $error = $boop->get_message(FooC->new);
620db045 56like( $error, qr/is not a Boop/, 'boop gives correct error message');
57
58
59ok( $type->equals($type), "equals self" );
60ok( $type->equals(Moose::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Foo" )), "equals anon constraint of same value" );
61ok( $type->equals(Moose::Meta::TypeConstraint::Role->new( name => "Oink", role => "Foo" )), "equals differently named constraint of same value" );
62ok( !$type->equals(Moose::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Bar" )), "doesn't equal other anon constraint" );
63ok( $type->is_subtype_of(Moose::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Bar" )), "subtype of other anon constraint" );
64