This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Need to be ./executed.
[perl5.git] / lib / Test / Simple.pm
CommitLineData
4dd974da
JH
1package Test::Simple;
2
d020a79a 3use 5.004;
4dd974da 4
d020a79a 5use strict 'vars';
d020a79a 6use vars qw($VERSION);
33459055 7$VERSION = '0.32';
d020a79a 8
4dd974da 9
33459055
MS
10use Test::Builder;
11my $Test = Test::Builder->new;
4dd974da 12
4dd974da 13sub import {
33459055
MS
14 my $self = shift;
15 my $caller = caller;
4dd974da 16 *{$caller.'::ok'} = \&ok;
4dd974da 17
33459055
MS
18 $Test->exported_to($caller);
19 $Test->plan(@_);
4dd974da
JH
20}
21
22
4dd974da
JH
23=head1 NAME
24
25Test::Simple - Basic utilities for writing tests.
26
27=head1 SYNOPSIS
28
29 use Test::Simple tests => 1;
30
31 ok( $foo eq $bar, 'foo is bar' );
32
33
34=head1 DESCRIPTION
35
d020a79a
JH
36** If you are unfamiliar with testing B<read Test::Tutorial> first! **
37
4dd974da 38This is an extremely simple, extremely basic module for writing tests
d020a79a
JH
39suitable for CPAN modules and other pursuits. If you wish to do more
40complicated testing, use the Test::More module (a drop-in replacement
41for this one).
4dd974da
JH
42
43The basic unit of Perl testing is the ok. For each thing you want to
44test your program will print out an "ok" or "not ok" to indicate pass
45or fail. You do this with the ok() function (see below).
46
47The only other constraint is you must predeclare how many tests you
48plan to run. This is in case something goes horribly wrong during the
49test and your test program aborts, or skips a test or whatever. You
50do this like so:
51
52 use Test::Simple tests => 23;
53
54You must have a plan.
55
56
57=over 4
58
59=item B<ok>
60
61 ok( $foo eq $bar, $name );
62 ok( $foo eq $bar );
63
64ok() is given an expression (in this case C<$foo eq $bar>). If its
65true, the test passed. If its false, it didn't. That's about it.
66
67ok() prints out either "ok" or "not ok" along with a test number (it
68keeps track of that for you).
69
70 # This produces "ok 1 - Hell not yet frozen over" (or not ok)
71 ok( get_temperature($hell) > 0, 'Hell not yet frozen over' );
72
73If you provide a $name, that will be printed along with the "ok/not
74ok" to make it easier to find your test when if fails (just search for
75the name). It also makes it easier for the next guy to understand
76what your test is for. Its highly recommended you use test names.
77
78All tests are run in scalar context. So this:
79
80 ok( @stuff, 'I have some stuff' );
81
d020a79a 82will do what you mean (fail if stuff is empty)
4dd974da
JH
83
84=cut
85
86sub ok ($;$) {
33459055 87 $Test->ok(@_);
d020a79a
JH
88}
89
90
4dd974da
JH
91=back
92
93Test::Simple will start by printing number of tests run in the form
94"1..M" (so "1..5" means you're going to run 5 tests). This strange
95format lets Test::Harness know how many tests you plan on running in
96case something goes horribly wrong.
97
98If all your tests passed, Test::Simple will exit with zero (which is
99normal). If anything failed it will exit with how many failed. If
100you run less (or more) tests than you planned, the missing (or extras)
101will be considered failures. If no tests were ever run Test::Simple
102will throw a warning and exit with 255. If the test died, even after
103having successfully completed all its tests, it will still be
104considered a failure and will exit with 255.
105
106So the exit codes are...
107
108 0 all tests successful
109 255 test died
110 any other number how many failed (including missing or extras)
111
112If you fail more than 254 tests, it will be reported as 254.
113
4dd974da
JH
114This module is by no means trying to be a complete testing system.
115Its just to get you started. Once you're off the ground its
116recommended you look at L<Test::More>.
117
118
119=head1 EXAMPLE
120
121Here's an example of a simple .t file for the fictional Film module.
122
123 use Test::Simple tests => 5;
124
125 use Film; # What you're testing.
126
127 my $btaste = Film->new({ Title => 'Bad Taste',
128 Director => 'Peter Jackson',
129 Rating => 'R',
130 NumExplodingSheep => 1
131 });
132 ok( defined($btaste) and ref $btaste eq 'Film', 'new() works' );
133
134 ok( $btaste->Title eq 'Bad Taste', 'Title() get' );
d020a79a 135 ok( $btaste->Director eq 'Peter Jackson', 'Director() get' );
4dd974da
JH
136 ok( $btaste->Rating eq 'R', 'Rating() get' );
137 ok( $btaste->NumExplodingSheep == 1, 'NumExplodingSheep() get' );
138
139It will produce output like this:
140
141 1..5
142 ok 1 - new() works
143 ok 2 - Title() get
144 ok 3 - Director() get
145 not ok 4 - Rating() get
d020a79a 146 # Failed test (t/film.t at line 14)
4dd974da 147 ok 5 - NumExplodingSheep() get
d020a79a 148 # Looks like you failed 1 tests of 5
4dd974da
JH
149
150Indicating the Film::Rating() method is broken.
151
152
153=head1 CAVEATS
154
155Test::Simple will only report a maximum of 254 failures in its exit
156code. If this is a problem, you probably have a huge test script.
157Split it into multiple files. (Otherwise blame the Unix folks for
158using an unsigned short integer as the exit status).
159
d020a79a
JH
160Because VMS's exit codes are much, much different than the rest of the
161universe, and perl does horrible mangling to them that gets in my way,
162it works like this on VMS.
163
164 0 SS$_NORMAL all tests successful
165 4 SS$_ABORT something went wrong
166
167Unfortunately, I can't differentiate any further.
168
169
170=head1 NOTES
171
172Test::Simple is B<explicitly> tested all the way back to perl 5.004.
173
4dd974da
JH
174
175=head1 HISTORY
176
177This module was conceived while talking with Tony Bowden in his
178kitchen one night about the problems I was having writing some really
179complicated feature into the new Testing module. He observed that the
180main problem is not dealing with these edge cases but that people hate
181to write tests B<at all>. What was needed was a dead simple module
182that took all the hard work out of testing and was really, really easy
183to learn. Paul Johnson simultaneously had this idea (unfortunately,
184he wasn't in Tony's kitchen). This is it.
185
186
187=head1 AUTHOR
188
189Idea by Tony Bowden and Paul Johnson, code by Michael G Schwern
d020a79a 190E<lt>schwern@pobox.comE<gt>, wardrobe by Calvin Klein.
4dd974da
JH
191
192
193=head1 SEE ALSO
194
195=over 4
196
197=item L<Test::More>
198
199More testing functions! Once you outgrow Test::Simple, look at
200Test::More. Test::Simple is 100% forward compatible with Test::More
201(ie. you can just use Test::More instead of Test::Simple in your
202programs and things will still work).
203
204=item L<Test>
205
206The original Perl testing module.
207
208=item L<Test::Unit>
209
210Elaborate unit testing.
211
212=item L<Pod::Tests>, L<SelfTest>
213
214Embed tests in your code!
215
216=item L<Test::Harness>
217
218Interprets the output of your test program.
219
220=back
221
222=cut
223
2241;