Import tests for attribute from Mouse's tests
[gitmo/Mouse.git] / t / 020_attributes / 016_attribute_traits_registered.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 23;
7 use Test::Exception;
8 use Test::Mouse;
9
10
11
12 {
13     package My::Attribute::Trait;
14     use Mouse::Role;
15
16     has 'alias_to' => (is => 'ro', isa => 'Str');
17
18     has foo => ( is => "ro", default => "blah" );
19
20     after 'install_accessors' => sub {
21         my $self = shift;
22         $self->associated_class->add_method(
23             $self->alias_to,
24             $self->get_read_method_ref
25         );
26     };
27
28     package Mouse::Meta::Attribute::Custom::Trait::Aliased;
29     sub register_implementation { 'My::Attribute::Trait' }
30 }
31
32 {
33     package My::Other::Attribute::Trait;
34     use Mouse::Role;
35
36     my $method = sub {
37         42;
38     };
39
40     has the_other_attr => ( isa => "Str", is => "rw", default => "oink" );
41
42     after 'install_accessors' => sub {
43         my $self = shift;
44         $self->associated_class->add_method(
45             'additional_method',
46             $method
47         );
48     };
49
50     package Mouse::Meta::Attribute::Custom::Trait::Other;
51     sub register_implementation { 'My::Other::Attribute::Trait' }
52 }
53
54 {
55     package My::Class;
56     use Mouse;
57
58     has 'bar' => (
59         traits   => [qw/Aliased/],
60         is       => 'ro',
61         isa      => 'Int',
62         alias_to => 'baz',
63     );
64 }
65
66 {
67     package My::Derived::Class;
68     use Mouse;
69
70     extends 'My::Class';
71
72     has '+bar' => (
73         traits   => [qw/Other/],
74     );
75 }
76
77 my $c = My::Class->new(bar => 100);
78 isa_ok($c, 'My::Class');
79
80 is($c->bar, 100, '... got the right value for bar');
81
82 can_ok($c, 'baz') and
83 is($c->baz, 100, '... got the right value for baz');
84
85 my $bar_attr = $c->meta->get_attribute('bar');
86 does_ok($bar_attr, 'My::Attribute::Trait');
87 is($bar_attr->foo, "blah", "attr initialized");
88
89 ok(!$bar_attr->meta->does_role('Aliased'), "does_role ignores aliases for sanity");
90 ok($bar_attr->does('Aliased'), "attr->does uses aliases");
91 ok(!$bar_attr->meta->does_role('Fictional'), "does_role returns false for nonexistent roles");
92 ok(!$bar_attr->does('Fictional'), "attr->does returns false for nonexistent roles");
93
94 my $quux = My::Derived::Class->new(bar => 1000);
95
96 is($quux->bar, 1000, '... got the right value for bar');
97
98 can_ok($quux, 'baz');
99 is($quux->baz, 1000, '... got the right value for baz');
100
101 my $derived_bar_attr = $quux->meta->get_attribute("bar");
102 does_ok($derived_bar_attr, 'My::Attribute::Trait' );
103
104 is( $derived_bar_attr->foo, "blah", "attr initialized" );
105
106 does_ok($derived_bar_attr, 'My::Other::Attribute::Trait' );
107
108 is($derived_bar_attr->the_other_attr, "oink", "attr initialized" );
109
110 ok(!$derived_bar_attr->meta->does_role('Aliased'), "does_role ignores aliases for sanity");
111 ok($derived_bar_attr->does('Aliased'), "attr->does uses aliases");
112 ok(!$derived_bar_attr->meta->does_role('Fictional'), "does_role returns false for nonexistent roles");
113 ok(!$derived_bar_attr->does('Fictional'), "attr->does returns false for nonexistent roles");
114
115 can_ok($quux, 'additional_method');
116 is(eval { $quux->additional_method }, 42, '... got the right value for additional_method');
117