112b9c0810258c800d2d19f9e5fbd31834765145
[gitmo/Class-MOP.git] / t / 014_attribute_introspection.t
1 use strict;
2 use warnings;
3
4 use Test::More;
5 use Test::Fatal;
6
7 use Class::MOP;
8
9 {
10     my $attr = Class::MOP::Attribute->new('$test');
11     is( $attr->meta, Class::MOP::Attribute->meta,
12         '... instance and class both lead to the same meta' );
13 }
14
15 {
16     my $meta = Class::MOP::Attribute->meta();
17     isa_ok( $meta, 'Class::MOP::Class' );
18
19     my @methods = qw(
20         new
21         clone
22
23         initialize_instance_slot
24         _set_initial_slot_value
25
26         name
27         has_accessor      accessor
28         has_writer        writer
29         has_write_method  get_write_method  get_write_method_ref
30         has_reader        reader
31         has_read_method   get_read_method   get_read_method_ref
32         has_predicate     predicate
33         has_clearer       clearer
34         has_builder       builder
35         has_init_arg      init_arg
36         has_default       default           is_default_a_coderef
37         has_initializer   initializer
38         has_insertion_order insertion_order _set_insertion_order
39
40         definition_context
41
42         slots
43         get_value
44         set_value
45         get_raw_value
46         set_raw_value
47         set_initial_value
48         has_value
49         clear_value
50
51         associated_class
52         attach_to_class
53         detach_from_class
54
55         accessor_metaclass
56
57         associated_methods
58         associate_method
59
60         process_accessors
61         _process_accessors
62         install_accessors
63         remove_accessors
64
65         inline_get
66         inline_set
67         inline_has
68         inline_clear
69
70         _new
71     );
72
73     is_deeply(
74         [
75             sort Class::MOP::Mixin::AttributeCore->meta->get_method_list,
76             $meta->get_method_list
77         ],
78         [ sort @methods ],
79         '... our method list matches'
80     );
81
82     foreach my $method_name (@methods) {
83         ok( $meta->find_method_by_name($method_name),
84             '... Class::MOP::Attribute->find_method_by_name(' . $method_name . ')' );
85     }
86
87     my @attributes = (
88         'name',
89         'accessor',
90         'reader',
91         'writer',
92         'predicate',
93         'clearer',
94         'builder',
95         'init_arg',
96         'initializer',
97         'definition_context',
98         'default',
99         'associated_class',
100         'associated_methods',
101         'insertion_order',
102     );
103
104     is_deeply(
105         [
106             sort Class::MOP::Mixin::AttributeCore->meta->get_attribute_list,
107             $meta->get_attribute_list
108         ],
109         [ sort @attributes ],
110         '... our attribute list matches'
111     );
112
113     foreach my $attribute_name (@attributes) {
114         ok( $meta->find_attribute_by_name($attribute_name),
115                   '... Class::MOP::Attribute->find_attribute_by_name('
116                 . $attribute_name
117                 . ')' );
118     }
119
120     # We could add some tests here to make sure that
121     # the attribute have the appropriate
122     # accessor/reader/writer/predicate combinations,
123     # but that is getting a little excessive so I
124     # wont worry about it for now. Maybe if I get
125     # bored I will do it.
126 }
127
128 done_testing;