Remove MooseX::AbstractFactory - it's currently broken and seems unmaintained
[gitmo/Moose.git] / t / type_constraints / role_type_constraint.t
CommitLineData
620db045 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
a28e50e4 6use Test::More;
b10dde3a 7use Test::Fatal;
620db045 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
b10dde3a 35is( exception { role_type('Boop', message { "${_} is not a Boop" }) }, undef, 'role_type keywork works with message' );
620db045 36
37my $type = find_type_constraint("Foo");
38
39is( $type->role, "Foo", "role attribute" );
40
41ok( $type->is_subtype_of("Gorch"), "subtype of gorch" );
42
43ok( $type->is_subtype_of("Bar"), "subtype of bar" );
44
45ok( $type->is_subtype_of("Object"), "subtype of Object" );
46
4c015454 47ok( !$type->is_subtype_of("ThisTypeDoesNotExist"), "not subtype of unknown type name" );
48ok( !$type->is_a_type_of("ThisTypeDoesNotExist"), "not type of unknown type name" );
49
6df3a27e 50ok( find_type_constraint("Bar")->check(FooC->new), "Foo passes Bar" );
51ok( find_type_constraint("Bar")->check(BarC->new), "Bar passes Bar" );
52ok( !find_type_constraint("Gorch")->check(BarC->new), "but Bar doesn't pass Gorch");
620db045 53
620db045 54my $boop = find_type_constraint("Boop");
55ok( $boop->has_message, 'Boop has a message');
6df3a27e 56my $error = $boop->get_message(FooC->new);
620db045 57like( $error, qr/is not a Boop/, 'boop gives correct error message');
58
59
60ok( $type->equals($type), "equals self" );
61ok( $type->equals(Moose::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Foo" )), "equals anon constraint of same value" );
62ok( $type->equals(Moose::Meta::TypeConstraint::Role->new( name => "Oink", role => "Foo" )), "equals differently named constraint of same value" );
63ok( !$type->equals(Moose::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Bar" )), "doesn't equal other anon constraint" );
64ok( $type->is_subtype_of(Moose::Meta::TypeConstraint::Role->new( name => "__ANON__", role => "Bar" )), "subtype of other anon constraint" );
65
a28e50e4 66done_testing;