make inlining a bit more easily extensible
[gitmo/Class-MOP.git] / t / 014_attribute_introspection.t
CommitLineData
5659d76e 1use strict;
2use warnings;
3
86a4d873 4use Test::More;
871e9eb5 5use Test::Fatal;
5659d76e 6
efd3d14c 7use Class::MOP;
5659d76e 8
9{
013b1897 10 my $attr = Class::MOP::Attribute->new('$test');
9b871d79 11 is( $attr->meta, Class::MOP::Attribute->meta,
12 '... instance and class both lead to the same meta' );
013b1897 13}
14
15{
5659d76e 16 my $meta = Class::MOP::Attribute->meta();
9b871d79 17 isa_ok( $meta, 'Class::MOP::Class' );
1d68af04 18
5659d76e 19 my @methods = qw(
89871ad6 20 new
21 clone
1d68af04 22
bd4e03f9 23 initialize_instance_slot
8ee74136 24 _set_initial_slot_value
1d68af04 25
5659d76e 26 name
89871ad6 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
df3ea00c 38 has_insertion_order insertion_order _set_insertion_order
1d68af04 39
d9d99689 40 definition_context
41
c57c8b10 42 slots
16e960bd 43 get_value
44 set_value
7e5efe15 45 get_raw_value
46 set_raw_value
ef91a0e2 47 set_initial_value
3545c727 48 has_value
49 clear_value
1d68af04 50
5659d76e 51 associated_class
89871ad6 52 attach_to_class
53 detach_from_class
1d68af04 54
ba38bf08 55 accessor_metaclass
1d68af04 56
3545c727 57 associated_methods
58 associate_method
1d68af04 59
5659d76e 60 process_accessors
45a183fb 61 _process_accessors
5659d76e 62 install_accessors
63 remove_accessors
4b698b1a 64
5e5102f1 65 _inline_get_value
66 _inline_set_value
67 _inline_has_value
68 _inline_clear_value
69 _inline_instance_get
70 _inline_instance_set
71 _inline_instance_has
72 _inline_instance_clear
03a3092d 73
4b698b1a 74 _new
9b871d79 75 );
1d68af04 76
5659d76e 77 is_deeply(
9b871d79 78 [
79 sort Class::MOP::Mixin::AttributeCore->meta->get_method_list,
80 $meta->get_method_list
81 ],
7d28758b 82 [ sort @methods ],
9b871d79 83 '... our method list matches'
84 );
1d68af04 85
5659d76e 86 foreach my $method_name (@methods) {
9b871d79 87 ok( $meta->find_method_by_name($method_name),
88 '... Class::MOP::Attribute->find_method_by_name(' . $method_name . ')' );
5659d76e 89 }
1d68af04 90
c23184fc 91 my @attributes = (
8683db0e 92 'name',
93 'accessor',
94 'reader',
95 'writer',
96 'predicate',
97 'clearer',
98 'builder',
99 'init_arg',
100 'initializer',
d9d99689 101 'definition_context',
8683db0e 102 'default',
103 'associated_class',
104 'associated_methods',
223ec6f9 105 'insertion_order',
1bd2739a 106 );
5659d76e 107
108 is_deeply(
9b871d79 109 [
110 sort Class::MOP::Mixin::AttributeCore->meta->get_attribute_list,
111 $meta->get_attribute_list
112 ],
7d28758b 113 [ sort @attributes ],
9b871d79 114 '... our attribute list matches'
115 );
1d68af04 116
5659d76e 117 foreach my $attribute_name (@attributes) {
9b871d79 118 ok( $meta->find_attribute_by_name($attribute_name),
119 '... Class::MOP::Attribute->find_attribute_by_name('
120 . $attribute_name
121 . ')' );
5659d76e 122 }
1d68af04 123
124 # We could add some tests here to make sure that
125 # the attribute have the appropriate
126 # accessor/reader/writer/predicate combinations,
127 # but that is getting a little excessive so I
128 # wont worry about it for now. Maybe if I get
5659d76e 129 # bored I will do it.
2d711cc8 130}
86a4d873 131
132done_testing;