File: exporter.t

package info (click to toggle)
libbadger-perl 0.16-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,400 kB
  • sloc: perl: 11,004; makefile: 9
file content (326 lines) | stat: -rw-r--r-- 10,155 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
#============================================================= -*-perl-*-
#
# t/exporter.t
#
# Test the Badger::Exporter.pm module.
#
# Written by Andy Wardley <abw@wardley.org>
#
# This is free software; you can redistribute it and/or modify it
# under the same terms as Perl itself.
#
#========================================================================

use strict;
use warnings;
use lib qw( t/core/lib ../t/core/lib ./lib ../lib ../../lib );
use Badger::Exporter;
use Badger::Test 
    tests => 89,
    debug => 'Badger::Exporter',
    args  => \@ARGV;

#------------------------------------------------------------------------
# test default import args
#------------------------------------------------------------------------

package test_base1;
use My::Exporter::Base1;
use Badger::Test;

is( $FOO, 1, '$FOO is 10' );
is( $FOO[0], 10, '$FOO[0] is 10' );
is( $FOO[1], 100, '$FOO[1] is 100' );
is( $FOO[2], 1000, '$FOO[2] is 1000' );
is( $FOO{ten}, 10, '$FOO{ten} is 10' );
is( $FOO{hundred}, 100, '$FOO{hundred} is 100' );
is( $FOO{thousand}, 1000, '$FOO{thousand} is 1000' );
is( foo(), 'this is foo', 'foo() sub is defined' );
{
    no strict;
    no warnings;
    ok( ! defined $BAR, '$BAR is not defined' );
    ok( ! defined $BAR[0], '$BAR[0] is not defined' );
    ok( ! defined $BAR{twenty}, '$BAR{twenty} is not defined' );
}


#------------------------------------------------------------------------
# test specific import args
#------------------------------------------------------------------------

package test_base2;
use My::Exporter::Base1 qw( $FOO $BAR );
use Badger::Test;

is( $FOO, 1, '$FOO is 10' );
is( $BAR, 2, '$BAR is 10' );
{
    no strict;
    no warnings;
    ok( ! defined $FOO[0], '$FOO[0] is not defined' );
    ok( ! defined $BAR[0], '$BAR[0] is not defined' );
}


#------------------------------------------------------------------------
# test illegal import args
#------------------------------------------------------------------------

package test_base3;
use Badger::Test;
eval "use My::Exporter::Base1 qw( \$NONSUCH \$NOTEVER)";
like( $@, qr/\$NONSUCH is not exported by My::Exporter::Base1/, '$NONSUCH error' );
like( $@, qr/\$NOTEVER is not exported by My::Exporter::Base1/, '$NOTEVER error' );


#------------------------------------------------------------------------
# test import tags
#------------------------------------------------------------------------

package test_base4;
use My::Exporter::Base2;
use Badger::Test;

is( $HELLO, 'world', '$HELLO is world' );
{
    no strict;
    no warnings;
    ok( ! defined $FOO, '$FOO is not defined' );
    ok( ! defined $BAR, '$BAR is not defined' );
}

package test_base5;
use My::Exporter::Base2 ':foo';
use Badger::Test;

is( $FOO, 3, '$FOO is 3' );
{
    no strict;
    no warnings;
    ok( ! defined $HELLO, '$HELLO is not defined' );
    ok( ! defined $BAR, '$BAR is not defined' );
}


#------------------------------------------------------------------------
# test default import args with subclass
#------------------------------------------------------------------------

package test_base10;
use My::Exporter::Subclass1;
use Badger::Test;

is( $FOO, 50, '$FOO is 50' );
is( $FOO[0], 10, '$FOO[0] is 10' );
is( $FOO[1], 100, '$FOO[1] is 100' );
is( $FOO{ten}, 10, '$FOO{ten} is 10' );
is( foo(), 'this is the new foo', 'foo() sub is the new foo' );
is( $GOODBYE, 'see ya', '$GOODBYE is "see ya"' );
{
    no strict;
    no warnings;
    ok( ! defined $BAR, '$BAR is not defined' );
    ok( ! defined $BAR[0], '$BAR[0] is not defined' );
    ok( ! defined $BAR{twenty}, '$BAR{twenty} is not defined' );
}

#------------------------------------------------------------------------
# test specific import args with subclass
#------------------------------------------------------------------------

package test_base11;
use My::Exporter::Subclass1 qw( $FOO $BAR );
use Badger::Test;

is( $FOO, 50, '$FOO is 50' );   # from sub class
is( $BAR, 2, '$BAR is 20' );    # from base class
{
    no strict;
    no warnings;
    ok( ! defined $FOO[0], '$FOO[0] is not defined' );
    ok( ! defined $BAR[0], '$BAR[0] is not defined' );
}


#------------------------------------------------------------------------
# test import tags with subclass
#------------------------------------------------------------------------

package test_base12;
use My::Exporter::Subclass2 qw( :foo :bar :baz $HELLO );
use Badger::Test;

is( $FOO, 50, '$FOO is 50' );
is( $BAR, 4, '$BAR is 4' );
is( $BAZ, 999, '$BAZ is 999' );
is( $BAZ[0], 987, '$BAZ[0] is 987' );
is( $BAZ[1], 654, '$BAZ[1] is 654' );
is( $HELLO, 'world', '$HELLO is world' );


#------------------------------------------------------------------------
# test :default tag
#------------------------------------------------------------------------

package test_base20;
use My::Exporter::Subclass2 qw( $FOO :default );
use Badger::Test;

is( $FOO, 50, '$FOO is 50' );
is( $HELLO, 'world', '$HELLO is world' );
is( $GOODBYE, 'see ya', '$GOODBYE is "see ya"' );
{
    no strict;
    no warnings;
    ok( ! defined $FOO[0], '$FOO[0] is not defined' );
    ok( ! defined $BAR[0], '$BAR[0] is not defined' );
}

#------------------------------------------------------------------------
# test :all tag
#------------------------------------------------------------------------

package test_base21;
use My::Exporter::Subclass2 qw( :all );
use Badger::Test;

is( $FOO, 50, '$FOO is 50' );
is( $BAR, 4, '$BAR is 4' );
is( $BAZ, 999, '$BAZ is 999' );
is( $HELLO, 'world', '$HELLO is world' );
is( $GOODBYE, 'see ya', '$GOODBYE is "see ya"' );
is( $FOO[0], 30, '$FOO[0] is 30' );
is( $BAR[0], 50, '$BAR[0] is 50' );


#-----------------------------------------------------------------------
# test single string split into multiple exports
#-----------------------------------------------------------------------

package test_base22;
use My::Exporter::Subclass2 ':foo :bar :baz $HELLO';
use Badger::Test;

is( $FOO,        50, '$FOO is 50 from string import' );
is( $BAR,         4, '$BAR is 4 from string import' );
is( $BAZ,       999, '$BAZ is 999 from string import' );
is( $BAZ[0],    987, '$BAZ[0] is 987 from string import' );
is( $BAZ[1],    654, '$BAZ[1] is 654 from string import' );
is( $HELLO, 'world', '$HELLO is world from string import' );



#-----------------------------------------------------------------------
# test quoted exports
#-----------------------------------------------------------------------

package test_base5q;
use My::Exporter5;
use Badger::Test;
is( $ping, 'wiz', 'ping is wiz' );
is( $pong, 'bang', 'ping is bang' );


#-----------------------------------------------------------------------
# test hashes of export tags which map an alias name to a symbol
#-----------------------------------------------------------------------


package main;
use My::Exporter6 qw(:methods);

is( foo(), 'Did foo', 'called imported foo method' );
is( bar(), 'Did bar', 'called imported bar method' );


#-----------------------------------------------------------------------
# test export hooks
#-----------------------------------------------------------------------

package main;
use My::Exporter7 foo => 10, foo => 20, 'bar', foo => 30;

is( $My::Exporter7::BUFFER, "[foo:10][foo:20][bar][foo:30]", 'foo bar import hooks' );

#-----------------------------------------------------------------------
# test export fail
#-----------------------------------------------------------------------

package main;
use My::Exporter9 foo => 10, foo => 20, 'bar', foo => 30;

is( $My::Exporter8::BUFFER, "[foo:10][foo:20][bar][foo:30]", 'foo bar import fail hooks' );


#-----------------------------------------------------------------------
# test exporter which uses explicit package symbols and code refs
#-----------------------------------------------------------------------

package main;
use My::Exporter::Explicit ':math :science';

is( E, 2.718, 'imported E' );
is( PI, 3.141, 'imported PI' );
is( PHI, 1.618, 'imported PHI' );
is( gamma, 0.57721, 'imported gamma' );
is( $ANSWER, 42, 'got the answer (42)' );
#is( physics, "E=mc^2", 'got physics' );
#is( biology, "evolution", 'got biology' );
#is( chemistry, "2 H2O -> 2 H2 + O2", 'got chemistry' );
pass("I can do science, me");


#-----------------------------------------------------------------------
# test constant generations
#-----------------------------------------------------------------------

package main;
use My::Exporter::Generator ':math';

is( e,   2.718, 'generated e' );
is( pi,  3.142, 'generated pi' );
is( phi, 1.618, 'generated phi' );
# These don't work yet - see comments in My::Exporter::Generator
#is( food, 'Nuts and Berries', 'generated food' );
#is( cheese, 'Cheddar', 'generated cheese' );


#-----------------------------------------------------------------------
# test before and after actions
#-----------------------------------------------------------------------

package test_ba1;
use Badger::Test;
use My::Exporter::BeforeAfterOne 'wubble';
is( wibble, 'wibblesome', 'got wibblesome' );
is( wobble, 'wobblesome', 'got wobblesome' );
is( wubble, 'wubblesome', 'got wubblesome' );
ok( $My::Exporter::BeforeAfterOne::DONE_BEFORE, 'BeforeAfterOne DONE_BEFORE is set' );
ok( $My::Exporter::BeforeAfterOne::DONE_AFTER,  'BeforeAfterOne DONE_AFTER is set' );
ok( $My::Exporter::BeforeAfter::DONE_BEFORE,    'BeforeAfter DONE_BEFORE is set' );
ok( $My::Exporter::BeforeAfter::DONE_AFTER,     'BeforeAfter DONE_AFTER is set' );


package test_ba2;
use Badger::Test;
use My::Exporter::BeforeAfterTwo 'wubble';
is( wibble, 'wibbly', 'got wibbly' );
is( wobble, 'wobbly', 'got wobbly' );
is( wubble, 'wubbly', 'got wubbly' );
ok( $My::Exporter::BeforeAfterTwo::DONE_BEFORE, 'BeforeAfterTwo DONE_BEFORE is set' );
ok( $My::Exporter::BeforeAfterTwo::DONE_AFTER,  'BeforeAfterTwo DONE_AFTER is set' );
is( $My::Exporter::BeforeAfter::DONE_BEFORE, 2, 'BeforeAfter DONE_BEFORE is 2' );
is( $My::Exporter::BeforeAfter::DONE_AFTER,  2, 'BeforeAfter DONE_AFTER is 2' );

1;

__END__

# Local Variables:
# mode: perl
# perl-indent-level: 4
# indent-tabs-mode: nil
# End:
#
# vim: expandtab shiftwidth=4: