Fix error message (missing "a")
[gitmo/Moose.git] / t / 050_metaclasses / 012_moose_exporter.t
CommitLineData
4403da90 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
3d659f7f 6use Test::More;
b10dde3a 7use Test::Fatal;
b30e7781 8
4d438a84 9use Test::Requires {
10 'Test::Output' => '0.01', # skip all if not installed
11};
b30e7781 12
13{
14 package HasOwnImmutable;
15
16 use Moose;
17
18 no Moose;
19
8b23f9f8 20 ::stderr_is( sub { eval q[sub make_immutable { return 'foo' }] },
b30e7781 21 '',
22 'no warning when defining our own make_immutable sub' );
23}
24
25{
26 is( HasOwnImmutable->make_immutable(), 'foo',
27 'HasOwnImmutable->make_immutable does not get overwritten' );
28}
2c9c8797 29
4403da90 30{
31 package MooseX::Empty;
32
33 use Moose ();
aedcb7d9 34 Moose::Exporter->setup_import_methods( also => 'Moose' );
4403da90 35}
36
37{
38 package WantsMoose;
39
2c9c8797 40 MooseX::Empty->import();
4403da90 41
42 sub foo { 1 }
43
2c9c8797 44 ::can_ok( 'WantsMoose', 'has' );
45 ::can_ok( 'WantsMoose', 'with' );
46 ::can_ok( 'WantsMoose', 'foo' );
4403da90 47
2c9c8797 48 MooseX::Empty->unimport();
4403da90 49}
50
51{
2c9c8797 52 # Note: it's important that these methods be out of scope _now_,
53 # after unimport was called. We tried a
54 # namespace::clean(0.08)-based solution, but had to abandon it
55 # because it cleans the namespace _later_ (when the file scope
56 # ends).
4403da90 57 ok( ! WantsMoose->can('has'), 'WantsMoose::has() has been cleaned' );
58 ok( ! WantsMoose->can('with'), 'WantsMoose::with() has been cleaned' );
59 can_ok( 'WantsMoose', 'foo' );
42c391b1 60
61 # This makes sure that Moose->init_meta() happens properly
62 isa_ok( WantsMoose->meta(), 'Moose::Meta::Class' );
63 isa_ok( WantsMoose->new(), 'Moose::Object' );
64
4403da90 65}
66
67{
68 package MooseX::Sugar;
69
70 use Moose ();
71
72 sub wrapped1 {
0661fc1a 73 my $meta = shift;
74 return $meta->name . ' called wrapped1';
4403da90 75 }
76
aedcb7d9 77 Moose::Exporter->setup_import_methods(
0661fc1a 78 with_meta => ['wrapped1'],
79 also => 'Moose',
2c9c8797 80 );
4403da90 81}
82
83{
84 package WantsSugar;
85
2c9c8797 86 MooseX::Sugar->import();
4403da90 87
88 sub foo { 1 }
89
2c9c8797 90 ::can_ok( 'WantsSugar', 'has' );
91 ::can_ok( 'WantsSugar', 'with' );
92 ::can_ok( 'WantsSugar', 'wrapped1' );
93 ::can_ok( 'WantsSugar', 'foo' );
94 ::is( wrapped1(), 'WantsSugar called wrapped1',
95 'wrapped1 identifies the caller correctly' );
4403da90 96
2c9c8797 97 MooseX::Sugar->unimport();
4403da90 98}
99
100{
101 ok( ! WantsSugar->can('has'), 'WantsSugar::has() has been cleaned' );
102 ok( ! WantsSugar->can('with'), 'WantsSugar::with() has been cleaned' );
103 ok( ! WantsSugar->can('wrapped1'), 'WantsSugar::wrapped1() has been cleaned' );
104 can_ok( 'WantsSugar', 'foo' );
105}
106
107{
108 package MooseX::MoreSugar;
109
110 use Moose ();
111
112 sub wrapped2 {
3b400403 113 my $caller = shift->name;
4403da90 114 return $caller . ' called wrapped2';
115 }
116
117 sub as_is1 {
118 return 'as_is1';
119 }
120
aedcb7d9 121 Moose::Exporter->setup_import_methods(
3b400403 122 with_meta => ['wrapped2'],
123 as_is => ['as_is1'],
124 also => 'MooseX::Sugar',
2c9c8797 125 );
4403da90 126}
127
128{
129 package WantsMoreSugar;
130
2c9c8797 131 MooseX::MoreSugar->import();
4403da90 132
133 sub foo { 1 }
134
2c9c8797 135 ::can_ok( 'WantsMoreSugar', 'has' );
136 ::can_ok( 'WantsMoreSugar', 'with' );
137 ::can_ok( 'WantsMoreSugar', 'wrapped1' );
138 ::can_ok( 'WantsMoreSugar', 'wrapped2' );
139 ::can_ok( 'WantsMoreSugar', 'as_is1' );
140 ::can_ok( 'WantsMoreSugar', 'foo' );
141 ::is( wrapped1(), 'WantsMoreSugar called wrapped1',
142 'wrapped1 identifies the caller correctly' );
143 ::is( wrapped2(), 'WantsMoreSugar called wrapped2',
144 'wrapped2 identifies the caller correctly' );
145 ::is( as_is1(), 'as_is1',
146 'as_is1 works as expected' );
147
148 MooseX::MoreSugar->unimport();
4403da90 149}
150
151{
152 ok( ! WantsMoreSugar->can('has'), 'WantsMoreSugar::has() has been cleaned' );
153 ok( ! WantsMoreSugar->can('with'), 'WantsMoreSugar::with() has been cleaned' );
154 ok( ! WantsMoreSugar->can('wrapped1'), 'WantsMoreSugar::wrapped1() has been cleaned' );
155 ok( ! WantsMoreSugar->can('wrapped2'), 'WantsMoreSugar::wrapped2() has been cleaned' );
156 ok( ! WantsMoreSugar->can('as_is1'), 'WantsMoreSugar::as_is1() has been cleaned' );
157 can_ok( 'WantsMoreSugar', 'foo' );
158}
159
160{
085fba61 161 package My::Metaclass;
162 use Moose;
163 BEGIN { extends 'Moose::Meta::Class' }
164
165 package My::Object;
166 use Moose;
167 BEGIN { extends 'Moose::Object' }
168
169 package HasInitMeta;
170
171 use Moose ();
172
173 sub init_meta {
174 shift;
175 return Moose->init_meta( @_,
176 metaclass => 'My::Metaclass',
177 base_class => 'My::Object',
178 );
179 }
180
aedcb7d9 181 Moose::Exporter->setup_import_methods( also => 'Moose' );
085fba61 182}
183
184{
185 package NewMeta;
186
2c9c8797 187 HasInitMeta->import();
085fba61 188}
189
190{
191 isa_ok( NewMeta->meta(), 'My::Metaclass' );
192 isa_ok( NewMeta->new(), 'My::Object' );
193}
194
195{
4403da90 196 package MooseX::CircularAlso;
197
198 use Moose ();
199
b10dde3a 200 ::like(
201 ::exception{ Moose::Exporter->setup_import_methods(
4403da90 202 also => [ 'Moose', 'MooseX::CircularAlso' ],
203 );
b10dde3a 204 },
b822369d 205 qr/\QCircular reference in 'also' parameter to Moose::Exporter between MooseX::CircularAlso and MooseX::CircularAlso/,
b10dde3a 206 'a circular reference in also dies with an error'
4403da90 207 );
208}
209
210{
ba1a3c2f 211 package MooseX::NoAlso;
4403da90 212
213 use Moose ();
214
4403da90 215 ::like(
b10dde3a 216 ::exception{ Moose::Exporter->setup_import_methods(
217 also => ['NoSuchThing'],
218 );
219 },
ba1a3c2f 220 qr/\QPackage in also (NoSuchThing) does not seem to use Moose::Exporter (is it loaded?) at /,
b10dde3a 221 'a package which does not use Moose::Exporter in also dies with an error'
ba1a3c2f 222 );
223}
224
225{
226 package MooseX::NotExporter;
227
228 use Moose ();
229
ba1a3c2f 230 ::like(
b10dde3a 231 ::exception{ Moose::Exporter->setup_import_methods(
232 also => ['Moose::Meta::Method'],
233 );
234 },
ba1a3c2f 235 qr/\QPackage in also (Moose::Meta::Method) does not seem to use Moose::Exporter at /,
b10dde3a 236 'a package which does not use Moose::Exporter in also dies with an error'
4403da90 237 );
238}
ae8817b6 239
240{
241 package MooseX::OverridingSugar;
242
243 use Moose ();
244
245 sub has {
3b400403 246 my $caller = shift->name;
ae8817b6 247 return $caller . ' called has';
248 }
249
250 Moose::Exporter->setup_import_methods(
3b400403 251 with_meta => ['has'],
252 also => 'Moose',
ae8817b6 253 );
254}
255
256{
257 package WantsOverridingSugar;
258
259 MooseX::OverridingSugar->import();
260
261 ::can_ok( 'WantsOverridingSugar', 'has' );
262 ::can_ok( 'WantsOverridingSugar', 'with' );
263 ::is( has('foo'), 'WantsOverridingSugar called has',
264 'has from MooseX::OverridingSugar is called, not has from Moose' );
265
266 MooseX::OverridingSugar->unimport();
267}
268
269{
270 ok( ! WantsSugar->can('has'), 'WantsSugar::has() has been cleaned' );
271 ok( ! WantsSugar->can('with'), 'WantsSugar::with() has been cleaned' );
272}
273
e6a5040f 274{
275 package NonExistentExport;
276
277 use Moose ();
278
279 ::stderr_like {
280 Moose::Exporter->setup_import_methods(
281 also => ['Moose'],
3b400403 282 with_meta => ['does_not_exist'],
e6a5040f 283 );
284 } qr/^Trying to export undefined sub NonExistentExport::does_not_exist/,
285 "warns when a non-existent method is requested to be exported";
286}
287
288{
289 package WantsNonExistentExport;
290
291 NonExistentExport->import;
292
293 ::ok(!__PACKAGE__->can('does_not_exist'),
294 "undefined subs do not get exported");
a584a0c8 295}
addd05f6 296
a584a0c8 297{
0661fc1a 298 package AllOptions;
299 use Moose ();
3b400403 300 use Moose::Deprecated -api_version => '0.88';
0661fc1a 301 use Moose::Exporter;
302
303 Moose::Exporter->setup_import_methods(
304 also => ['Moose'],
305 with_meta => [ 'with_meta1', 'with_meta2' ],
306 with_caller => [ 'with_caller1', 'with_caller2' ],
307 as_is => ['as_is1'],
308 );
309
310 sub with_caller1 {
311 return @_;
312 }
313
314 sub with_caller2 (&) {
315 return @_;
316 }
317
318 sub as_is1 {2}
319
320 sub with_meta1 {
321 return @_;
322 }
323
324 sub with_meta2 (&) {
325 return @_;
326 }
327}
328
329{
330 package UseAllOptions;
331
332 AllOptions->import();
333}
334
335{
336 can_ok( 'UseAllOptions', $_ )
337 for qw( with_meta1 with_meta2 with_caller1 with_caller2 as_is1 );
338
339 {
340 my ( $caller, $arg1 ) = UseAllOptions::with_caller1(42);
341 is( $caller, 'UseAllOptions', 'with_caller wrapped sub gets the right caller' );
342 is( $arg1, 42, 'with_caller wrapped sub returns argument it was passed' );
343 }
344
345 {
346 my ( $meta, $arg1 ) = UseAllOptions::with_meta1(42);
347 isa_ok( $meta, 'Moose::Meta::Class', 'with_meta first argument' );
348 is( $arg1, 42, 'with_meta1 returns argument it was passed' );
349 }
350
351 is(
5a204c51 352 prototype( UseAllOptions->can('with_caller2') ),
353 prototype( AllOptions->can('with_caller2') ),
354 'using correct prototype on with_meta function'
355 );
356
357 is(
0661fc1a 358 prototype( UseAllOptions->can('with_meta2') ),
359 prototype( AllOptions->can('with_meta2') ),
360 'using correct prototype on with_meta function'
361 );
a584a0c8 362}
0661fc1a 363
a584a0c8 364{
365 package UseAllOptions;
366 AllOptions->unimport();
367}
0661fc1a 368
a584a0c8 369{
0661fc1a 370 ok( ! UseAllOptions->can($_), "UseAllOptions::$_ has been unimported" )
371 for qw( with_meta1 with_meta2 with_caller1 with_caller2 as_is1 );
e6a5040f 372}
a28e50e4 373
374done_testing;