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