Import tests for attribute from Mouse's tests
[gitmo/Mouse.git] / t / 020_attributes / 016_attribute_traits_registered.t
CommitLineData
a72478f2 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
6use Test::More tests => 23;
7use Test::Exception;
ad087d11 8use Test::Mouse;
a72478f2 9
4060c871 10
11
a72478f2 12{
13 package My::Attribute::Trait;
ad087d11 14 use Mouse::Role;
a72478f2 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
ad087d11 28 package Mouse::Meta::Attribute::Custom::Trait::Aliased;
a72478f2 29 sub register_implementation { 'My::Attribute::Trait' }
30}
31
32{
33 package My::Other::Attribute::Trait;
ad087d11 34 use Mouse::Role;
a72478f2 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
ad087d11 50 package Mouse::Meta::Attribute::Custom::Trait::Other;
a72478f2 51 sub register_implementation { 'My::Other::Attribute::Trait' }
52}
53
54{
55 package My::Class;
ad087d11 56 use Mouse;
a72478f2 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;
ad087d11 68 use Mouse;
a72478f2 69
70 extends 'My::Class';
71
72 has '+bar' => (
73 traits => [qw/Other/],
74 );
75}
76
77my $c = My::Class->new(bar => 100);
78isa_ok($c, 'My::Class');
79
80is($c->bar, 100, '... got the right value for bar');
81
82can_ok($c, 'baz') and
83is($c->baz, 100, '... got the right value for baz');
84
85my $bar_attr = $c->meta->get_attribute('bar');
86does_ok($bar_attr, 'My::Attribute::Trait');
87is($bar_attr->foo, "blah", "attr initialized");
88
89ok(!$bar_attr->meta->does_role('Aliased'), "does_role ignores aliases for sanity");
4060c871 90ok($bar_attr->does('Aliased'), "attr->does uses aliases");
a72478f2 91ok(!$bar_attr->meta->does_role('Fictional'), "does_role returns false for nonexistent roles");
92ok(!$bar_attr->does('Fictional'), "attr->does returns false for nonexistent roles");
93
94my $quux = My::Derived::Class->new(bar => 1000);
95
96is($quux->bar, 1000, '... got the right value for bar');
97
98can_ok($quux, 'baz');
99is($quux->baz, 1000, '... got the right value for baz');
100
101my $derived_bar_attr = $quux->meta->get_attribute("bar");
102does_ok($derived_bar_attr, 'My::Attribute::Trait' );
103
104is( $derived_bar_attr->foo, "blah", "attr initialized" );
105
106does_ok($derived_bar_attr, 'My::Other::Attribute::Trait' );
107
108is($derived_bar_attr->the_other_attr, "oink", "attr initialized" );
109
110ok(!$derived_bar_attr->meta->does_role('Aliased'), "does_role ignores aliases for sanity");
4060c871 111ok($derived_bar_attr->does('Aliased'), "attr->does uses aliases");
a72478f2 112ok(!$derived_bar_attr->meta->does_role('Fictional'), "does_role returns false for nonexistent roles");
113ok(!$derived_bar_attr->does('Fictional'), "attr->does returns false for nonexistent roles");
114
115can_ok($quux, 'additional_method');
116is(eval { $quux->additional_method }, 42, '... got the right value for additional_method');
117