One last tweak to make sure our Sub::Name-using tests _do_ run when we
[gitmo/Class-MOP.git] / t / 014_attribute_introspection.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 62;
7 use Test::Exception;
8
9 BEGIN {
10     use_ok('Class::MOP');
11 }
12
13 {
14     my $attr = Class::MOP::Attribute->new('$test');
15     is($attr->meta, Class::MOP::Attribute->meta, '... instance and class both lead to the same meta');
16 }
17
18 {
19     my $meta = Class::MOP::Attribute->meta();
20     isa_ok($meta, 'Class::MOP::Class');
21
22     my @methods = qw(
23         new
24         clone
25
26         initialize_instance_slot
27         _set_initial_slot_value
28
29         name
30         has_accessor      accessor
31         has_writer        writer
32         has_write_method  get_write_method  get_write_method_ref
33         has_reader        reader
34         has_read_method   get_read_method   get_read_method_ref
35         has_predicate     predicate
36         has_clearer       clearer
37         has_builder       builder
38         has_init_arg      init_arg
39         has_default       default           is_default_a_coderef
40         has_initializer   initializer
41
42         slots
43         get_value
44         set_value
45         set_initial_value
46         has_value
47         clear_value
48
49         associated_class
50         attach_to_class
51         detach_from_class
52
53         accessor_metaclass
54
55         associated_methods
56         associate_method
57
58         process_accessors
59         install_accessors
60         remove_accessors
61         );
62
63     is_deeply(
64         [ sort $meta->get_method_list ],
65         [ sort @methods ],
66         '... our method list matches');
67
68     foreach my $method_name (@methods) {
69         ok($meta->has_method($method_name), '... Class::MOP::Attribute->has_method(' . $method_name . ')');
70     }
71
72     my @attributes = (
73         '$!name',
74         '$!accessor',
75         '$!reader',
76         '$!writer',
77         '$!predicate',
78         '$!clearer',
79         '$!builder',
80         '$!init_arg',
81         '$!initializer',
82         '$!default',
83         '$!associated_class',
84         '@!associated_methods',
85     );
86
87     is_deeply(
88         [ sort $meta->get_attribute_list ],
89         [ sort @attributes ],
90         '... our attribute list matches');
91
92     foreach my $attribute_name (@attributes) {
93         ok($meta->has_attribute($attribute_name), '... Class::MOP::Attribute->has_attribute(' . $attribute_name . ')');
94     }
95
96     # We could add some tests here to make sure that
97     # the attribute have the appropriate
98     # accessor/reader/writer/predicate combinations,
99     # but that is getting a little excessive so I
100     # wont worry about it for now. Maybe if I get
101     # bored I will do it.
102 }