Cleanup failing tests
[gitmo/Mouse.git] / Moose-t-failing / 040_type_constraints / 020_class_type_constraint.t
1 #!/usr/bin/perl
2 # This is automatically generated by author/import-moose-test.pl.
3 # DO NOT EDIT THIS FILE. ANY CHANGES WILL BE LOST!!!
4 use t::lib::MooseCompat;
5
6 use strict;
7 use warnings;
8
9 use Test::More;
10 $TODO = q{Mouse is not yet completed};
11 use Test::Exception;
12
13 BEGIN {
14     use_ok('Mouse::Util::TypeConstraints');
15 }
16
17 {
18     package Gorch;
19     use Mouse;
20
21     package Bar;
22     use Mouse;
23
24     package Foo;
25     use Mouse;
26
27     extends qw(Bar Gorch);
28
29 }
30
31 lives_ok { class_type 'Beep' } 'class_type keywork works';
32 lives_ok { class_type('Boop', message { "${_} is not a Boop" }) }
33   'class_type keywork works with message';
34
35 my $type = find_type_constraint("Foo");
36
37 is( $type->class, "Foo", "class attribute" );
38
39 ok( !$type->is_subtype_of('Foo'), "Foo is not subtype of Foo" );
40 ok( !$type->is_subtype_of($type), '$foo_type is not subtype of $foo_type' );
41
42 ok( $type->is_subtype_of("Gorch"), "subtype of gorch" );
43
44 ok( $type->is_subtype_of("Bar"), "subtype of bar" );
45
46 ok( $type->is_subtype_of("Object"), "subtype of Object" );
47
48 ok( !$type->is_subtype_of("ThisTypeDoesNotExist"), "not subtype of undefined type" );
49 ok( !$type->is_a_type_of("ThisTypeDoesNotExist"), "not type of undefined type" );
50
51 ok( find_type_constraint("Bar")->check(Foo->new), "Foo passes Bar" );
52 ok( find_type_constraint("Bar")->check(Bar->new), "Bar passes Bar" );
53 ok( !find_type_constraint("Gorch")->check(Bar->new), "but Bar doesn't pass Gorch");
54
55 ok( find_type_constraint("Beep")->check( bless {} => 'Beep' ), "Beep passes Beep" );
56 my $boop = find_type_constraint("Boop");
57 ok( $boop->has_message, 'Boop has a message');
58 my $error = $boop->get_message(Foo->new);
59 like( $error, qr/is not a Boop/,  'boop gives correct error message');
60
61
62 ok( $type->equals($type), "equals self" );
63 ok( $type->equals(Mouse::Meta::TypeConstraint->new( name => "__ANON__", class => "Foo" )), "equals anon constraint of same value" );
64 ok( $type->equals(Mouse::Meta::TypeConstraint->new( name => "Oink", class => "Foo" )), "equals differently named constraint of same value" );
65 ok( !$type->equals(Mouse::Meta::TypeConstraint->new( name => "__ANON__", class => "Bar" )), "doesn't equal other anon constraint" );
66 ok( $type->is_subtype_of(Mouse::Meta::TypeConstraint->new( name => "__ANON__", class => "Bar" )), "subtype of other anon constraint" );
67
68 {
69     my $regexp_type = Mouse::Meta::TypeConstraint->new(name => 'Regexp', class => 'Regexp');
70     ok(!$regexp_type->check(qr//), 'a Regexp is not an instance of a class, even tho perl pretends it is');
71 }
72
73 done_testing;