1TAP::Harness(3)       User Contributed Perl Documentation      TAP::Harness(3)
2
3
4

NAME

6       TAP::Harness - Run test scripts with statistics
7

VERSION

9       Version 3.28
10

DESCRIPTION

12       This is a simple test harness which allows tests to be run and results
13       automatically aggregated and output to STDOUT.
14

SYNOPSIS

16        use TAP::Harness;
17        my $harness = TAP::Harness->new( \%args );
18        $harness->runtests(@tests);
19

METHODS

21   Class Methods
22       "new"
23
24        my %args = (
25           verbosity => 1,
26           lib     => [ 'lib', 'blib/lib', 'blib/arch' ],
27        )
28        my $harness = TAP::Harness->new( \%args );
29
30       The constructor returns a new "TAP::Harness" object. It accepts an
31       optional hashref whose allowed keys are:
32
33       ·   "verbosity"
34
35           Set the verbosity level:
36
37                1   verbose        Print individual test results to STDOUT.
38                0   normal
39               -1   quiet          Suppress some test output (mostly failures
40                                   while tests are running).
41               -2   really quiet   Suppress everything but the tests summary.
42               -3   silent         Suppress everything.
43
44       ·   "timer"
45
46           Append run time for each test to output. Uses Time::HiRes if
47           available.
48
49       ·   "failures"
50
51           Show test failures (this is a no-op if "verbose" is selected).
52
53       ·   "comments"
54
55           Show test comments (this is a no-op if "verbose" is selected).
56
57       ·   "show_count"
58
59           Update the running test count during testing.
60
61       ·   "normalize"
62
63           Set to a true value to normalize the TAP that is emitted in verbose
64           modes.
65
66       ·   "lib"
67
68           Accepts a scalar value or array ref of scalar values indicating
69           which paths to allowed libraries should be included if Perl tests
70           are executed. Naturally, this only makes sense in the context of
71           tests written in Perl.
72
73       ·   "switches"
74
75           Accepts a scalar value or array ref of scalar values indicating
76           which switches should be included if Perl tests are executed.
77           Naturally, this only makes sense in the context of tests written in
78           Perl.
79
80       ·   "test_args"
81
82           A reference to an @INC style array of arguments to be passed to
83           each test program.
84
85             test_args => ['foo', 'bar'],
86
87           if you want to pass different arguments to each test then you
88           should pass a hash of arrays, keyed by the alias for each test:
89
90             test_args => {
91               my_test    => ['foo', 'bar'],
92               other_test => ['baz'],
93             }
94
95       ·   "color"
96
97           Attempt to produce color output.
98
99       ·   "exec"
100
101           Typically, Perl tests are run through this. However, anything which
102           spits out TAP is fine. You can use this argument to specify the
103           name of the program (and optional switches) to run your tests with:
104
105             exec => ['/usr/bin/ruby', '-w']
106
107           You can also pass a subroutine reference in order to determine and
108           return the proper program to run based on a given test script. The
109           subroutine reference should expect the TAP::Harness object itself
110           as the first argument, and the file name as the second argument. It
111           should return an array reference containing the command to be run
112           and including the test file name. It can also simply return
113           "undef", in which case TAP::Harness will fall back on executing the
114           test script in Perl:
115
116               exec => sub {
117                   my ( $harness, $test_file ) = @_;
118
119                   # Let Perl tests run.
120                   return undef if $test_file =~ /[.]t$/;
121                   return [ qw( /usr/bin/ruby -w ), $test_file ]
122                     if $test_file =~ /[.]rb$/;
123                 }
124
125           If the subroutine returns a scalar with a newline or a filehandle,
126           it will be interpreted as raw TAP or as a TAP stream, respectively.
127
128       ·   "merge"
129
130           If "merge" is true the harness will create parsers that merge
131           STDOUT and STDERR together for any processes they start.
132
133       ·   "sources"
134
135           NEW to 3.18.
136
137           If set, "sources" must be a hashref containing the names of the
138           TAP::Parser::SourceHandlers to load and/or configure.  The values
139           are a hash of configuration that will be accessible to to the
140           source handlers via "config_for" in TAP::Parser::Source.
141
142           For example:
143
144             sources => {
145               Perl => { exec => '/path/to/custom/perl' },
146               File => { extensions => [ '.tap', '.txt' ] },
147               MyCustom => { some => 'config' },
148             }
149
150           The "sources" parameter affects how "source", "tap" and "exec"
151           parameters are handled.
152
153           For more details, see the "sources" parameter in "new" in
154           TAP::Parser, TAP::Parser::Source, and TAP::Parser::IteratorFactory.
155
156       ·   "aggregator_class"
157
158           The name of the class to use to aggregate test results. The default
159           is TAP::Parser::Aggregator.
160
161       ·   "version"
162
163           NEW to 3.22.
164
165           Assume this TAP version for TAP::Parser instead of default TAP
166           version 12.
167
168       ·   "formatter_class"
169
170           The name of the class to use to format output. The default is
171           TAP::Formatter::Console, or TAP::Formatter::File if the output
172           isn't a TTY.
173
174       ·   "multiplexer_class"
175
176           The name of the class to use to multiplex tests during parallel
177           testing.  The default is TAP::Parser::Multiplexer.
178
179       ·   "parser_class"
180
181           The name of the class to use to parse TAP. The default is
182           TAP::Parser.
183
184       ·   "scheduler_class"
185
186           The name of the class to use to schedule test execution. The
187           default is TAP::Parser::Scheduler.
188
189       ·   "formatter"
190
191           If set "formatter" must be an object that is capable of formatting
192           the TAP output. See TAP::Formatter::Console for an example.
193
194       ·   "errors"
195
196           If parse errors are found in the TAP output, a note of this will be
197           made in the summary report. To see all of the parse errors, set
198           this argument to true:
199
200             errors => 1
201
202       ·   "directives"
203
204           If set to a true value, only test results with directives will be
205           displayed. This overrides other settings such as "verbose" or
206           "failures".
207
208       ·   "ignore_exit"
209
210           If set to a true value instruct "TAP::Parser" to ignore exit and
211           wait status from test scripts.
212
213       ·   "jobs"
214
215           The maximum number of parallel tests to run at any time.  Which
216           tests can be run in parallel is controlled by "rules".  The default
217           is to run only one test at a time.
218
219       ·   "rules"
220
221           A reference to a hash of rules that control which tests may be
222           executed in parallel. If no rules are declared, all tests are
223           eligible for being run in parallel. Here some simple examples. For
224           the full details of the data structure and the related glob-style
225           pattern matching, see "Rules data structure" in
226           TAP::Parser::Scheduler.
227
228               # Run all tests in sequence, except those starting with "p"
229               $harness->rules({
230                   par => 't/p*.t'
231               });
232
233               # Run all tests in parallel, except those starting with "p"
234               $harness->rules({
235                   seq => [
236                             { seq => 't/p*.t' },
237                             { par => '**'     },
238                          ],
239               });
240
241               # Run some  startup tests in sequence, then some parallel tests than some
242               # teardown tests in sequence.
243               $harness->rules({
244                   seq => [
245                       { seq => 't/startup/*.t' },
246                       { par => ['t/a/*.t','t/b/*.t','t/c/*.t'], }
247                       { seq => 't/shutdown/*.t' },
248                   ],
249
250               });
251
252           This is an experimental feature and the interface may change.
253
254       ·   "stdout"
255
256           A filehandle for catching standard output.
257
258       ·   "trap"
259
260           Attempt to print summary information if run is interrupted by
261           SIGINT (Ctrl-C).
262
263       Any keys for which the value is "undef" will be ignored.
264
265   Instance Methods
266       "runtests"
267
268           $harness->runtests(@tests);
269
270       Accepts an array of @tests to be run. This should generally be the
271       names of test files, but this is not required. Each element in @tests
272       will be passed to "TAP::Parser::new()" as a "source". See TAP::Parser
273       for more information.
274
275       It is possible to provide aliases that will be displayed in place of
276       the test name by supplying the test as a reference to an array
277       containing "[ $test, $alias ]":
278
279           $harness->runtests( [ 't/foo.t', 'Foo Once' ],
280                               [ 't/foo.t', 'Foo Twice' ] );
281
282       Normally it is an error to attempt to run the same test twice. Aliases
283       allow you to overcome this limitation by giving each run of the test a
284       unique name.
285
286       Tests will be run in the order found.
287
288       If the environment variable "PERL_TEST_HARNESS_DUMP_TAP" is defined it
289       should name a directory into which a copy of the raw TAP for each test
290       will be written. TAP is written to files named for each test.
291       Subdirectories will be created as needed.
292
293       Returns a TAP::Parser::Aggregator containing the test results.
294
295       "summary"
296
297         $harness->summary( $aggregator );
298
299       Output the summary for a TAP::Parser::Aggregator.
300
301       "aggregate_tests"
302
303         $harness->aggregate_tests( $aggregate, @tests );
304
305       Run the named tests and display a summary of result. Tests will be run
306       in the order found.
307
308       Test results will be added to the supplied TAP::Parser::Aggregator.
309       "aggregate_tests" may be called multiple times to run several sets of
310       tests. Multiple "Test::Harness" instances may be used to pass results
311       to a single aggregator so that different parts of a complex test suite
312       may be run using different "TAP::Harness" settings. This is useful, for
313       example, in the case where some tests should run in parallel but others
314       are unsuitable for parallel execution.
315
316           my $formatter   = TAP::Formatter::Console->new;
317           my $ser_harness = TAP::Harness->new( { formatter => $formatter } );
318           my $par_harness = TAP::Harness->new(
319               {   formatter => $formatter,
320                   jobs      => 9
321               }
322           );
323           my $aggregator = TAP::Parser::Aggregator->new;
324
325           $aggregator->start();
326           $ser_harness->aggregate_tests( $aggregator, @ser_tests );
327           $par_harness->aggregate_tests( $aggregator, @par_tests );
328           $aggregator->stop();
329           $formatter->summary($aggregator);
330
331       Note that for simpler testing requirements it will often be possible to
332       replace the above code with a single call to "runtests".
333
334       Each element of the @tests array is either:
335
336       ·   the source name of a test to run
337
338       ·   a reference to a [ source name, display name ] array
339
340       In the case of a perl test suite, typically source names are simply the
341       file names of the test scripts to run.
342
343       When you supply a separate display name it becomes possible to run a
344       test more than once; the display name is effectively the alias by which
345       the test is known inside the harness. The harness doesn't care if it
346       runs the same test more than once when each invocation uses a different
347       name.
348
349       "make_scheduler"
350
351       Called by the harness when it needs to create a TAP::Parser::Scheduler.
352       Override in a subclass to provide an alternative scheduler.
353       "make_scheduler" is passed the list of tests that was passed to
354       "aggregate_tests".
355
356       "jobs"
357
358       Gets or sets the number of concurrent test runs the harness is
359       handling.  By default, this value is 1 -- for parallel testing, this
360       should be set higher.
361
362       "make_parser"
363
364       Make a new parser and display formatter session. Typically used and/or
365       overridden in subclasses.
366
367           my ( $parser, $session ) = $harness->make_parser;
368
369       "finish_parser"
370
371       Terminate use of a parser. Typically used and/or overridden in
372       subclasses. The parser isn't destroyed as a result of this.
373

CONFIGURING

375       "TAP::Harness" is designed to be easy to configure.
376
377   Plugins
378       "TAP::Parser" plugins let you change the way TAP is input to and output
379       from the parser.
380
381       TAP::Parser::SourceHandlers handle TAP input.  You can configure them
382       and load custom handlers using the "sources" parameter to "new".
383
384       TAP::Formatters handle TAP output.  You can load custom formatters by
385       using the "formatter_class" parameter to "new".  To configure a
386       formatter, you currently need to instantiate it outside of TAP::Harness
387       and pass it in with the "formatter" parameter to "new".  This may be
388       addressed by adding a formatters parameter to "new" in the future.
389
390   "Module::Build"
391       Module::Build version 0.30 supports "TAP::Harness".
392
393       To load "TAP::Harness" plugins, you'll need to use the
394       "tap_harness_args" parameter to "new", typically from your "Build.PL".
395       For example:
396
397         Module::Build->new(
398             module_name        => 'MyApp',
399             test_file_exts     => [qw(.t .tap .txt)],
400             use_tap_harness    => 1,
401             tap_harness_args   => {
402                 sources => {
403                     MyCustom => {},
404                     File => {
405                         extensions => ['.tap', '.txt'],
406                     },
407                 },
408                 formatter_class => 'TAP::Formatter::HTML',
409             },
410             build_requires     => {
411                 'Module::Build' => '0.30',
412                 'TAP::Harness'  => '3.18',
413             },
414         )->create_build_script;
415
416       See "new"
417
418   "ExtUtils::MakeMaker"
419       ExtUtils::MakeMaker does not support TAP::Harness out-of-the-box.
420
421   "prove"
422       prove supports "TAP::Harness" plugins, and has a plugin system of its
423       own.  See "FORMATTERS" in prove, "SOURCE HANDLERS" in prove and
424       App::Prove for more details.
425

WRITING PLUGINS

427       If you can't configure "TAP::Harness" to do what you want, and you
428       can't find an existing plugin, consider writing one.
429
430       The two primary use cases supported by TAP::Harness for plugins are
431       input and output:
432
433       Customize how TAP gets into the parser
434         To do this, you can either extend an existing
435         TAP::Parser::SourceHandler, or write your own.  It's a pretty simple
436         API, and they can be loaded and configured using the "sources"
437         parameter to "new".
438
439       Customize how TAP results are output from the parser
440         To do this, you can either extend an existing TAP::Formatter, or
441         write your own.  Writing formatters are a bit more involved than
442         writing a SourceHandler, as you'll need to understand the TAP::Parser
443         API.  A good place to start is by understanding how "aggregate_tests"
444         works.
445
446         Custom formatters can be loaded configured using the
447         "formatter_class" parameter to "new".
448

SUBCLASSING

450       If you can't configure "TAP::Harness" to do exactly what you want, and
451       writing a plugin isn't an option, consider extending it.  It is
452       designed to be (mostly) easy to subclass, though the cases when sub-
453       classing is necessary should be few and far between.
454
455   Methods
456       The following methods are ones you may wish to override if you want to
457       subclass "TAP::Harness".
458
459       "new"
460       "runtests"
461       "summary"
462

REPLACING

464       If you like the "prove" utility and TAP::Parser but you want your own
465       harness, all you need to do is write one and provide "new" and
466       "runtests" methods. Then you can use the "prove" utility like so:
467
468        prove --harness My::Test::Harness
469
470       Note that while "prove" accepts a list of tests (or things to be
471       tested), "new" has a fairly rich set of arguments. You'll probably want
472       to read over this code carefully to see how all of them are being used.
473

SEE ALSO

475       Test::Harness
476
477
478
479perl v5.16.3                      2013-05-02                   TAP::Harness(3)
Impressum