Remove MooseX::AbstractFactory - it's currently broken and seems unmaintained
[gitmo/Moose.git] / t / type_constraints / class_type_constraint.t
CommitLineData
3fef8ce8 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
a28e50e4 6use Test::More;
b10dde3a 7use Test::Fatal;
3fef8ce8 8
9BEGIN {
4ab662d6 10 use_ok('Moose::Util::TypeConstraints');
3fef8ce8 11}
12
13{
14 package Gorch;
15 use Moose;
16
17 package Bar;
18 use Moose;
19
20 package Foo;
21 use Moose;
22
23 extends qw(Bar Gorch);
4ab662d6 24
3fef8ce8 25}
26
b10dde3a 27is( exception { class_type 'Beep' }, undef, 'class_type keywork works' );
28is( exception { class_type('Boop', message { "${_} is not a Boop" }) }, undef, 'class_type keywork works with message' );
4ab662d6 29
3fef8ce8 30my $type = find_type_constraint("Foo");
31
8eb4d82b 32is( $type->class, "Foo", "class attribute" );
33
8ff79890 34ok( !$type->is_subtype_of('Foo'), "Foo is not subtype of Foo" );
35ok( !$type->is_subtype_of($type), '$foo_type is not subtype of $foo_type' );
36
3fef8ce8 37ok( $type->is_subtype_of("Gorch"), "subtype of gorch" );
38
39ok( $type->is_subtype_of("Bar"), "subtype of bar" );
40
41ok( $type->is_subtype_of("Object"), "subtype of Object" );
42
4c015454 43ok( !$type->is_subtype_of("ThisTypeDoesNotExist"), "not subtype of undefined type" );
44ok( !$type->is_a_type_of("ThisTypeDoesNotExist"), "not type of undefined type" );
45
3fef8ce8 46ok( find_type_constraint("Bar")->check(Foo->new), "Foo passes Bar" );
47ok( find_type_constraint("Bar")->check(Bar->new), "Bar passes Bar" );
48ok( !find_type_constraint("Gorch")->check(Bar->new), "but Bar doesn't pass Gorch");
49
4ab662d6 50ok( find_type_constraint("Beep")->check( bless {} => 'Beep' ), "Beep passes Beep" );
51my $boop = find_type_constraint("Boop");
52ok( $boop->has_message, 'Boop has a message');
53my $error = $boop->get_message(Foo->new);
54like( $error, qr/is not a Boop/, 'boop gives correct error message');
2ba16c26 55
56
57ok( $type->equals($type), "equals self" );
58ok( $type->equals(Moose::Meta::TypeConstraint::Class->new( name => "__ANON__", class => "Foo" )), "equals anon constraint of same value" );
59ok( $type->equals(Moose::Meta::TypeConstraint::Class->new( name => "Oink", class => "Foo" )), "equals differently named constraint of same value" );
60ok( !$type->equals(Moose::Meta::TypeConstraint::Class->new( name => "__ANON__", class => "Bar" )), "doesn't equal other anon constraint" );
61ok( $type->is_subtype_of(Moose::Meta::TypeConstraint::Class->new( name => "__ANON__", class => "Bar" )), "subtype of other anon constraint" );
62
a28e50e4 63done_testing;