Revert "convert all uses of Test::Exception to Test::Fatal."
[gitmo/Class-MOP.git] / t / 083_load_class.t
1 use strict;
2 use warnings;
3 use Test::More;
4 use Test::Exception;
5
6 require Class::MOP;
7 use lib 't/lib';
8
9 dies_ok {
10     Class::MOP::is_class_loaded()
11 } "is_class_loaded with no argument dies";
12
13 ok(!Class::MOP::is_class_loaded(''), "can't load the empty class");
14 ok(!Class::MOP::is_class_loaded(\"foo"), "can't load a class name reference??");
15
16 ok(!Class::MOP::_is_valid_class_name(undef), 'undef is not a valid class name');
17 ok(!Class::MOP::_is_valid_class_name(''), 'empty string is not a valid class name');
18 ok(!Class::MOP::_is_valid_class_name(\"foo"), 'a reference is not a valid class name');
19 ok(!Class::MOP::_is_valid_class_name('bogus name'), q{'bogus name' is not a valid class name});
20 ok(Class::MOP::_is_valid_class_name('Foo'), q{'Foo' is a valid class name});
21 ok(Class::MOP::_is_valid_class_name('Foo::Bar'), q{'Foo::Bar' is a valid class name});
22 ok(Class::MOP::_is_valid_class_name('Foo_::Bar2'), q{'Foo_::Bar2' is a valid class name});
23 throws_ok { Class::MOP::load_class('bogus name') } qr/Invalid class name \(bogus name\)/;
24
25 throws_ok {
26     Class::MOP::load_class('__PACKAGE__')
27 } qr/__PACKAGE__\.pm.*\@INC/, 'errors sanely on __PACKAGE__.pm';
28
29 Class::MOP::load_class('BinaryTree');
30 can_ok('BinaryTree' => 'traverse');
31
32 do {
33     package Class;
34     sub method {}
35 };
36
37
38 {
39     local $@;
40     eval { Class::MOP::load_class('Class') };
41     ok( ! $@, 'load_class does not die if the package is already defined' );
42 }
43
44 ok( !Class::MOP::does_metaclass_exist("Class"), "no metaclass for non MOP class" );
45
46 throws_ok {
47     Class::MOP::load_class('FakeClassOhNo');
48 }
49 qr/Can't locate /;
50
51 throws_ok {
52     Class::MOP::load_class('SyntaxError');
53 }
54 qr/Missing right curly/;
55
56 throws_ok {
57     delete $INC{'SyntaxError.pm'};
58     Class::MOP::load_first_existing_class(
59         'FakeClassOhNo', 'SyntaxError', 'Class'
60     );
61 }
62 qr/Missing right curly/,
63     'load_first_existing_class does not pass over an existing (bad) module';
64
65 throws_ok {
66     Class::MOP::load_class('This::Does::Not::Exist');
67 }
68 qr{Can't locate This/Does/Not/Exist\.pm in \@INC},
69     'load_first_existing_class throws a familiar error for a single module';
70
71 {
72     package Other;
73     use constant foo => "bar";
74 }
75
76 lives_ok {
77     ok(Class::MOP::is_class_loaded("Other"), 'is_class_loaded(Other)');
78 }
79 "a class with just constants is still a class";
80
81 {
82     package Lala;
83     use metaclass;
84 }
85
86 lives_ok {
87     is(Class::MOP::load_first_existing_class("Lala", "Does::Not::Exist"), "Lala", 'load_first_existing_class 1/2 params ok, class name returned');
88     is(Class::MOP::load_first_existing_class("Does::Not::Exist", "Lala"), "Lala", 'load_first_existing_class 2/2 params ok, class name returned');
89 } 'load_classes works';
90
91 throws_ok {
92     Class::MOP::load_first_existing_class("Does::Not::Exist", "Also::Does::Not::Exist")
93 } qr/Does::Not::Exist.*Also::Does::Not::Exist/s, 'Multiple non-existant classes cause exception';
94
95 {
96     sub whatever {
97         TestClassLoaded::this_method_does_not_even_exist();
98     }
99
100     ok( ! Class::MOP::is_class_loaded('TestClassLoaded'),
101         'the mere mention of TestClassLoaded in the whatever sub does not make us think it has been loaded' );
102 }
103
104 {
105     require TestClassLoaded::Sub;
106     ok( ! Class::MOP::is_class_loaded('TestClassLoaded'),
107         'requiring TestClassLoaded::Sub does not make us think TestClassLoaded is loaded' );
108 }
109
110 {
111     require TestClassLoaded;
112     ok( Class::MOP::is_class_loaded('TestClassLoaded'),
113         'We see that TestClassLoaded is loaded after requiring it (it has methods but no $VERSION or @ISA)' );
114 }
115
116 {
117     require TestClassLoaded2;
118     ok( Class::MOP::is_class_loaded('TestClassLoaded2'),
119         'We see that TestClassLoaded2 is loaded after requiring it (it has a $VERSION but no methods or @ISA)' );
120 }
121
122 {
123     require TestClassLoaded3;
124     ok( Class::MOP::is_class_loaded('TestClassLoaded3'),
125         'We see that TestClassLoaded3 is loaded after requiring it (it has an @ISA but no methods or $VERSION)' );
126 }
127
128 {
129     {
130         package Not::Loaded;
131         our @ISA;
132     }
133
134     ok( ! Class::MOP::is_class_loaded('Not::Loaded'),
135         'the mere existence of an @ISA for a package does not mean a class is loaded' );
136 }
137
138 {
139     {
140         package Loaded::Ish;
141         our @ISA = 'Foo';
142     }
143
144     ok( Class::MOP::is_class_loaded('Loaded::Ish'),
145         'an @ISA with members does mean a class is loaded' );
146 }
147
148 {
149     {
150         package Class::WithVersion;
151         our $VERSION = 23;
152     };
153
154     ok( Class::MOP::is_class_loaded('Class::WithVersion', { -version => 13 }),
155         'version 23 satisfies version requirement 13' );
156
157     ok( !Class::MOP::is_class_loaded('Class::WithVersion', { -version => 42 }),
158         'version 23 does not satisfy version requirement 42' );
159
160     throws_ok {
161         Class::MOP::load_first_existing_class('Affe', 'Tiger', 'Class::WithVersion' => { -version => 42 });
162     } qr/Class::WithVersion version 42 required--this is only version 23/,
163     'load_first_existing_class gives correct exception on old version';
164
165     lives_ok {
166         Class::MOP::load_first_existing_class('Affe', 'Tiger', 'Class::WithVersion' => { -version => 13 });
167     } 'loading class with required version with load_first_existing_class';
168
169     throws_ok {
170         Class::MOP::load_class('Class::WithVersion' => { -version => 42 });
171     } qr/Class::WithVersion version 42 required--this is only version 23/,
172     'load_class gives correct exception on old version';
173
174     lives_ok {
175         Class::MOP::load_class('Class::WithVersion' => { -version => 13 });
176     } 'loading class with required version with load_class';
177
178 }
179
180 done_testing;