09e828fb4aeb2d53ec4df39a2e525991471e27c0
[gitmo/Class-MOP.git] / t / 010_self_introspection.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 146;
7 use Test::Exception;
8
9 BEGIN {
10     use_ok('Class::MOP');
11     use_ok('Class::MOP::Class');        
12 }
13
14 {
15     my $class = Class::MOP::Class->initialize('Foo');
16     is($class->meta, Class::MOP::Class->meta, '... instance and class both lead to the same meta');
17 }
18
19 my $meta = Class::MOP::Class->meta();
20 isa_ok($meta, 'Class::MOP::Class');
21
22 my @methods = qw(
23     meta
24     
25     get_all_metaclasses get_all_metaclass_names get_all_metaclass_instances 
26     
27     initialize reinitialize create create_anon_class
28     
29     instance_metaclass get_meta_instance
30     new_object clone_object
31     construct_instance construct_class_instance clone_instance
32     check_metaclass_compatability
33     
34     name version
35     
36     attribute_metaclass method_metaclass
37     
38     superclasses class_precedence_list
39     
40     has_method get_method add_method remove_method alias_method
41     get_method_list compute_all_applicable_methods 
42         find_all_methods_by_name find_next_method_by_name
43     
44         add_before_method_modifier add_after_method_modifier add_around_method_modifier
45
46     has_attribute get_attribute add_attribute remove_attribute
47     get_attribute_list get_attribute_map compute_all_applicable_attributes find_attribute_by_name
48     
49     add_package_variable get_package_variable has_package_variable remove_package_variable
50     
51     DESTROY
52     );
53     
54 is_deeply([ sort @methods ], [ sort $meta->get_method_list ], '... got the correct method list');
55
56 foreach my $method_name (@methods) {
57     ok($meta->has_method($method_name), '... Class::MOP::Class->has_method(' . $method_name . ')');
58     {
59         no strict 'refs';
60         is($meta->get_method($method_name), 
61            \&{'Class::MOP::Class::' . $method_name},
62            '... Class::MOP::Class->get_method(' . $method_name . ') == &Class::MOP::Class::' . $method_name);        
63     }
64 }
65
66 # check for imported functions which are not methods
67
68 foreach my $non_method_name (qw(
69     confess
70     blessed reftype
71     subname
72     svref_2object
73     )) {
74     ok(!$meta->has_method($non_method_name), '... NOT Class::MOP::Class->has_method(' . $non_method_name . ')');        
75 }
76
77 # check for the right attributes
78
79 my @attributes = (
80     '$:package', 
81     '%:attributes', 
82     '$:attribute_metaclass', 
83     '$:method_metaclass', 
84     '$:instance_metaclass'
85 );
86
87 is_deeply(
88     [ sort @attributes ],
89     [ sort $meta->get_attribute_list ],
90     '... got the right list of attributes');
91     
92 is_deeply(
93     [ sort @attributes ],
94     [ sort keys %{$meta->get_attribute_map} ],
95     '... got the right list of attributes');    
96
97 foreach my $attribute_name (@attributes) {
98     ok($meta->has_attribute($attribute_name), '... Class::MOP::Class->has_attribute(' . $attribute_name . ')');        
99     isa_ok($meta->get_attribute($attribute_name), 'Class::MOP::Attribute');            
100 }
101
102 ## check the attributes themselves
103
104 ok($meta->get_attribute('$:package')->has_reader, '... Class::MOP::Class $:package has a reader');
105 is(ref($meta->get_attribute('$:package')->reader), 'HASH', '... Class::MOP::Class $:package\'s a reader is { name => sub { ... } }');
106
107 ok($meta->get_attribute('$:package')->has_init_arg, '... Class::MOP::Class $:package has a init_arg');
108 is($meta->get_attribute('$:package')->init_arg, ':package', '... Class::MOP::Class $:package\'s a init_arg is :package');
109
110 ok($meta->get_attribute('%:attributes')->has_reader, '... Class::MOP::Class %:attributes has a reader');
111 is(ref($meta->get_attribute('%:attributes')->reader), 
112    'HASH', 
113    '... Class::MOP::Class %:attributes\'s a reader is &get_attribute_map');
114    
115 ok($meta->get_attribute('%:attributes')->has_init_arg, '... Class::MOP::Class %:attributes has a init_arg');
116 is($meta->get_attribute('%:attributes')->init_arg, 
117   ':attributes', 
118   '... Class::MOP::Class %:attributes\'s a init_arg is :attributes');   
119   
120 ok($meta->get_attribute('%:attributes')->has_default, '... Class::MOP::Class %:attributes has a default');
121 is_deeply($meta->get_attribute('%:attributes')->default, 
122          {}, 
123          '... Class::MOP::Class %:attributes\'s a default of {}');  
124
125 ok($meta->get_attribute('$:attribute_metaclass')->has_reader, '... Class::MOP::Class $:attribute_metaclass has a reader');
126 is($meta->get_attribute('$:attribute_metaclass')->reader, 
127   'attribute_metaclass', 
128   '... Class::MOP::Class $:attribute_metaclass\'s a reader is &attribute_metaclass');
129   
130 ok($meta->get_attribute('$:attribute_metaclass')->has_init_arg, '... Class::MOP::Class $:attribute_metaclass has a init_arg');
131 is($meta->get_attribute('$:attribute_metaclass')->init_arg, 
132    ':attribute_metaclass', 
133    '... Class::MOP::Class $:attribute_metaclass\'s a init_arg is :attribute_metaclass');  
134    
135 ok($meta->get_attribute('$:attribute_metaclass')->has_default, '... Class::MOP::Class $:attribute_metaclass has a default');
136 is($meta->get_attribute('$:attribute_metaclass')->default, 
137   'Class::MOP::Attribute', 
138   '... Class::MOP::Class $:attribute_metaclass\'s a default is Class::MOP:::Attribute');   
139   
140 ok($meta->get_attribute('$:method_metaclass')->has_reader, '... Class::MOP::Class $:method_metaclass has a reader');
141 is($meta->get_attribute('$:method_metaclass')->reader, 
142    'method_metaclass', 
143    '... Class::MOP::Class $:method_metaclass\'s a reader is &method_metaclass');  
144    
145 ok($meta->get_attribute('$:method_metaclass')->has_init_arg, '... Class::MOP::Class $:method_metaclass has a init_arg');
146 is($meta->get_attribute('$:method_metaclass')->init_arg, 
147   ':method_metaclass', 
148   '... Class::MOP::Class $:method_metaclass\'s init_arg is :method_metaclass');   
149   
150 ok($meta->get_attribute('$:method_metaclass')->has_default, '... Class::MOP::Class $:method_metaclass has a default');
151 is($meta->get_attribute('$:method_metaclass')->default, 
152    'Class::MOP::Method', 
153   '... Class::MOP::Class $:method_metaclass\'s a default is Class::MOP:::Method');  
154
155 # check the values of some of the methods
156
157 is($meta->name, 'Class::MOP::Class', '... Class::MOP::Class->name');
158 is($meta->version, $Class::MOP::Class::VERSION, '... Class::MOP::Class->version');
159
160 ok($meta->has_package_variable('$VERSION'), '... Class::MOP::Class->has_package_variable($VERSION)');
161 is(${$meta->get_package_variable('$VERSION')}, 
162    $Class::MOP::Class::VERSION, 
163    '... Class::MOP::Class->get_package_variable($VERSION)');
164
165 is_deeply(
166     [ $meta->superclasses ], 
167     [], 
168     '... Class::MOP::Class->superclasses == []');
169     
170 is_deeply(
171     [ $meta->class_precedence_list ], 
172     [ 'Class::MOP::Class' ], 
173     '... Class::MOP::Class->class_precedence_list == []');
174
175 is($meta->attribute_metaclass, 'Class::MOP::Attribute', '... got the right value for attribute_metaclass');
176 is($meta->method_metaclass, 'Class::MOP::Method', '... got the right value for method_metaclass');
177