tests and changelog
[gitmo/Moose.git] / t / metaclasses / moose_exporter.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More;
7 use Test::Fatal;
8
9 use Test::Requires {
10     'Test::Output' => '0.01', # skip all if not installed
11 };
12
13 {
14     package HasOwnImmutable;
15
16     use Moose;
17
18     no Moose;
19
20     ::stderr_is( sub { eval q[sub make_immutable { return 'foo' }] },
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 }
29
30 {
31     package MooseX::Empty;
32
33     use Moose ();
34     Moose::Exporter->setup_import_methods( also => 'Moose' );
35 }
36
37 {
38     package WantsMoose;
39
40     MooseX::Empty->import();
41
42     sub foo { 1 }
43
44     ::can_ok( 'WantsMoose', 'has' );
45     ::can_ok( 'WantsMoose', 'with' );
46     ::can_ok( 'WantsMoose', 'foo' );
47
48     MooseX::Empty->unimport();
49 }
50
51 {
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).
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' );
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
65 }
66
67 {
68     package MooseX::Sugar;
69
70     use Moose ();
71
72     sub wrapped1 {
73         my $meta = shift;
74         return $meta->name . ' called wrapped1';
75     }
76
77     Moose::Exporter->setup_import_methods(
78         with_meta => ['wrapped1'],
79         also      => 'Moose',
80     );
81 }
82
83 {
84     package WantsSugar;
85
86     MooseX::Sugar->import();
87
88     sub foo { 1 }
89
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' );
96
97     MooseX::Sugar->unimport();
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 {
113         my $caller = shift->name;
114         return $caller . ' called wrapped2';
115     }
116
117     sub as_is1 {
118         return 'as_is1';
119     }
120
121     Moose::Exporter->setup_import_methods(
122         with_meta => ['wrapped2'],
123         as_is     => ['as_is1'],
124         also      => 'MooseX::Sugar',
125     );
126 }
127
128 {
129     package WantsMoreSugar;
130
131     MooseX::MoreSugar->import();
132
133     sub foo { 1 }
134
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();
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 {
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
181     Moose::Exporter->setup_import_methods( also => 'Moose' );
182 }
183
184 {
185     package NewMeta;
186
187     HasInitMeta->import();
188 }
189
190 {
191     isa_ok( NewMeta->meta(), 'My::Metaclass' );
192     isa_ok( NewMeta->new(), 'My::Object' );
193 }
194
195 {
196     package MooseX::CircularAlso;
197
198     use Moose ();
199
200     ::like(
201         ::exception{ Moose::Exporter->setup_import_methods(
202                 also => [ 'Moose', 'MooseX::CircularAlso' ],
203             );
204             },
205         qr/\QCircular reference in 'also' parameter to Moose::Exporter between MooseX::CircularAlso and MooseX::CircularAlso/,
206         'a circular reference in also dies with an error'
207     );
208 }
209
210 {
211     package MooseX::NoAlso;
212
213     use Moose ();
214
215     ::like(
216         ::exception{ Moose::Exporter->setup_import_methods(
217                 also => ['NoSuchThing'],
218             );
219             },
220         qr/\QPackage in also (NoSuchThing) does not seem to use Moose::Exporter (is it loaded?) at /,
221         'a package which does not use Moose::Exporter in also dies with an error'
222     );
223 }
224
225 {
226     package MooseX::NotExporter;
227
228     use Moose ();
229
230     ::like(
231         ::exception{ Moose::Exporter->setup_import_methods(
232                 also => ['Moose::Meta::Method'],
233             );
234             },
235         qr/\QPackage in also (Moose::Meta::Method) does not seem to use Moose::Exporter at /,
236         'a package which does not use Moose::Exporter in also dies with an error'
237     );
238 }
239
240 {
241     package MooseX::OverridingSugar;
242
243     use Moose ();
244
245     sub has {
246         my $caller = shift->name;
247         return $caller . ' called has';
248     }
249
250     Moose::Exporter->setup_import_methods(
251         with_meta => ['has'],
252         also      => 'Moose',
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( ! WantsOverridingSugar->can('has'),  'WantsSugar::has() has been cleaned' );
271     ok( ! WantsOverridingSugar->can('with'), 'WantsSugar::with() has been cleaned' );
272 }
273
274 {
275     package MooseX::OverridingSugar::PassThru;
276     
277     sub with {
278         my $caller = shift->name;
279         return $caller . ' called with';
280     }
281     
282     Moose::Exporter->setup_import_methods(
283         with_meta => ['with'],
284         also      => 'MooseX::OverridingSugar',
285     );
286     
287 }
288
289 {
290
291     package WantsOverridingSugar::PassThru;
292
293     MooseX::OverridingSugar::PassThru->import();
294
295     ::can_ok( 'WantsOverridingSugar::PassThru', 'has' );
296     ::can_ok( 'WantsOverridingSugar::PassThru', 'with' );
297     ::is(
298         has('foo'),
299         'WantsOverridingSugar::PassThru called has',
300         'has from MooseX::OverridingSugar is called, not has from Moose'
301     );
302
303     ::is(
304         with('foo'),
305         'WantsOverridingSugar::PassThru called with',
306         'with from MooseX::OverridingSugar::PassThru is called, not has from Moose'
307     );
308
309
310     MooseX::OverridingSugar::PassThru->unimport();
311 }
312
313 {
314     ok( ! WantsOverridingSugar::PassThru->can('has'),  'WantsOverridingSugar::PassThru::has() has been cleaned' );
315     ok( ! WantsOverridingSugar::PassThru->can('with'), 'WantsOverridingSugar::PassThru::with() has been cleaned' );
316 }
317
318 {
319
320     package NonExistentExport;
321
322     use Moose ();
323
324     ::stderr_like {
325         Moose::Exporter->setup_import_methods(
326             also => ['Moose'],
327             with_meta => ['does_not_exist'],
328         );
329     } qr/^Trying to export undefined sub NonExistentExport::does_not_exist/,
330       "warns when a non-existent method is requested to be exported";
331 }
332
333 {
334     package WantsNonExistentExport;
335
336     NonExistentExport->import;
337
338     ::ok(!__PACKAGE__->can('does_not_exist'),
339          "undefined subs do not get exported");
340 }
341
342 {
343     package AllOptions;
344     use Moose ();
345     use Moose::Deprecated -api_version => '0.88';
346     use Moose::Exporter;
347
348     Moose::Exporter->setup_import_methods(
349         also        => ['Moose'],
350         with_meta   => [ 'with_meta1', 'with_meta2' ],
351         with_caller => [ 'with_caller1', 'with_caller2' ],
352         as_is       => ['as_is1'],
353     );
354
355     sub with_caller1 {
356         return @_;
357     }
358
359     sub with_caller2 (&) {
360         return @_;
361     }
362
363     sub as_is1 {2}
364
365     sub with_meta1 {
366         return @_;
367     }
368
369     sub with_meta2 (&) {
370         return @_;
371     }
372 }
373
374 {
375     package UseAllOptions;
376
377     AllOptions->import();
378 }
379
380 {
381     can_ok( 'UseAllOptions', $_ )
382         for qw( with_meta1 with_meta2 with_caller1 with_caller2 as_is1 );
383
384     {
385         my ( $caller, $arg1 ) = UseAllOptions::with_caller1(42);
386         is( $caller, 'UseAllOptions', 'with_caller wrapped sub gets the right caller' );
387         is( $arg1, 42, 'with_caller wrapped sub returns argument it was passed' );
388     }
389
390     {
391         my ( $meta, $arg1 ) = UseAllOptions::with_meta1(42);
392         isa_ok( $meta, 'Moose::Meta::Class', 'with_meta first argument' );
393         is( $arg1, 42, 'with_meta1 returns argument it was passed' );
394     }
395
396     is(
397         prototype( UseAllOptions->can('with_caller2') ),
398         prototype( AllOptions->can('with_caller2') ),
399         'using correct prototype on with_meta function'
400     );
401
402     is(
403         prototype( UseAllOptions->can('with_meta2') ),
404         prototype( AllOptions->can('with_meta2') ),
405         'using correct prototype on with_meta function'
406     );
407 }
408
409 {
410     package UseAllOptions;
411     AllOptions->unimport();
412 }
413
414 {
415     ok( ! UseAllOptions->can($_), "UseAllOptions::$_ has been unimported" )
416         for qw( with_meta1 with_meta2 with_caller1 with_caller2 as_is1 );
417 }
418
419 {
420     package InitMetaError;
421     use Moose::Exporter;
422     use Moose ();
423     Moose::Exporter->setup_import_methods(also => ['Moose']);
424     sub init_meta {
425         my $package = shift;
426         my %options = @_;
427         Moose->init_meta(%options, metaclass => 'Not::Loaded');
428     }
429 }
430
431 {
432     package InitMetaError::Role;
433     use Moose::Exporter;
434     use Moose::Role ();
435     Moose::Exporter->setup_import_methods(also => ['Moose::Role']);
436     sub init_meta {
437         my $package = shift;
438         my %options = @_;
439         Moose::Role->init_meta(%options, metaclass => 'Not::Loaded');
440     }
441 }
442
443 {
444     package WantsInvalidMetaclass;
445     ::like(
446         ::exception { InitMetaError->import },
447         qr/The Metaclass Not::Loaded must be loaded\. \(Perhaps you forgot to 'use Not::Loaded'\?\)/,
448         "error when wanting a nonexistent metaclass"
449     );
450 }
451
452 {
453     package WantsInvalidMetaclass::Role;
454     ::like(
455         ::exception { InitMetaError::Role->import },
456         qr/The Metaclass Not::Loaded must be loaded\. \(Perhaps you forgot to 'use Not::Loaded'\?\)/,
457         "error when wanting a nonexistent metaclass"
458     );
459 }
460
461 done_testing;