X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FTest%2FLeaner.pm;h=92f386f6402913e7bfd40a71d3e8a2ac5870c507;hb=da6dd0b8533e32433851119428d3bc4e1959599c;hp=336bf31c3d56ca17a9712de6074b411adfc490a1;hpb=04fdbaf85a26eafd9d5d1e15c3ee46ef360de509;p=perl%2Fmodules%2FTest-Leaner.git diff --git a/lib/Test/Leaner.pm b/lib/Test/Leaner.pm index 336bf31..92f386f 100644 --- a/lib/Test/Leaner.pm +++ b/lib/Test/Leaner.pm @@ -4,8 +4,35 @@ use 5.006; use strict; use warnings; +=head1 NAME + +Test::Leaner - A slimmer Test::More for when you favor performance over completeness. + +=head1 VERSION + +Version 0.01 + +=cut + our $VERSION = '0.01'; +=head1 SYNOPSIS + + use Test::Leaner tests => 10_000; + for (1 .. 10_000) { + ... + is $one, 1, "checking situation $_"; + } + + +=head1 DESCRIPTION + +When profiling some L-based test script that contained about 10 000 unit tests, I realized that 60% of the time was spent in L itself, even though every single test actually involved a costly C. + +This module aims to be a partial replacement to L in those situations where you want to run a large number of simple tests. + +=cut + use Exporter (); BEGIN { @@ -25,8 +52,7 @@ BEGIN { } } -my $TAP_STREAM = *STDOUT; -my $DIAG_STREAM = *STDERR; +my ($TAP_STREAM, $DIAG_STREAM); my ($plan, $test, $failed, $no_diag, $done_testing); @@ -63,6 +89,14 @@ sub sanitize_comment { $_[0] =~ s/\n/\n# /g; } +=head1 FUNCTIONS + +The following functions from L are implemented and exported by default. + +=head2 C<< plan [ tests => $count | 'no_plan' | skip_all => $reason ] >> + +=cut + sub plan { my ($key, $value) = @_; @@ -96,12 +130,6 @@ sub plan { croak("plan() doesn't understand @args"); } - { - my $fh = select $TAP_STREAM; - $|++; - select $fh; - } - if (defined $plan_str) { local $\; print $TAP_STREAM "$plan_str\n"; @@ -143,6 +171,7 @@ sub import { push @imports, @{ $_[$i+1] }; $splice = 2; } elsif ($item eq 'no_diag') { + lock $plan if THREADSAFE; $no_diag = 1; $splice = 1; } @@ -163,11 +192,19 @@ sub import { goto &Exporter::import; } +=head2 C + +=cut + sub skip_all { @_ = (skip_all => $_[0]); goto &plan; } +=head2 C<< skip $reason => $count >> + +=cut + sub skip { my ($reason, $count) = @_; @@ -199,6 +236,10 @@ sub skip { last SKIP; } +=head2 C + +=cut + sub done_testing { my ($count) = @_; @@ -226,6 +267,10 @@ sub done_testing { return 1; } +=head2 C + +=cut + sub ok ($;$) { my ($ok, $desc) = @_; @@ -249,16 +294,28 @@ sub ok ($;$) { return $ok; } +=head2 C + +=cut + sub pass (;$) { unshift @_, 1; goto &ok; } +=head2 C + +=cut + sub fail (;$) { unshift @_, 0; goto &ok; } +=head2 C + +=cut + sub is ($$;$) { my ($got, $expected, $desc) = @_; no warnings 'uninitialized'; @@ -269,6 +326,10 @@ sub is ($$;$) { goto &ok; } +=head2 C + +=cut + sub isnt ($$;$) { my ($got, $expected, $desc) = @_; no warnings 'uninitialized'; @@ -331,12 +392,22 @@ IS_BINOP } } +=head2 C + +=head2 C + +=cut + { no warnings 'once'; *like = _create_binop_handler('=~'); *unlike = _create_binop_handler('!~'); } +=head2 C + +=cut + sub cmp_ok ($$$;$) { my ($got, $op, $expected, $desc) = @_; my $handler = $binop_handlers{$op}; @@ -366,16 +437,28 @@ sub _diag_fh { return 0; }; +=head2 C + +=cut + sub diag { unshift @_, $DIAG_STREAM; goto &_diag_fh; } +=head2 C + +=cut + sub note { unshift @_, $TAP_STREAM; goto &_diag_fh; } +=head2 C + +=cut + sub BAIL_OUT { my ($desc) = @_; @@ -410,4 +493,92 @@ END { } } +=pod + +L, L, L, L, L, L, L and L are all guaranteed to return the truth value of the test. +Their L counterparts behave the same, but it is not documented anywhere. + +L also provides some functions of its own, which are never exported. + +=head2 C + +Read/write accessor for the filehandle to which the tests are outputted. +On write, it also turns autoflush on onto C<$fh>. + +Note that it can only be used as a write accessor before you start any thread, as L cannot reliably share filehandles. + +Defaults to C. + +=cut + +sub tap_stream (;*) { + if (@_) { + $TAP_STREAM = $_[0]; + + my $fh = select $TAP_STREAM; + $|++; + select $fh; + } + + return $TAP_STREAM; +} + +tap_stream *STDOUT; + +=head2 C + +Read/write accessor for the filehandle to which the diagnostics are printed. +On write, it also turns autoflush on onto C<$fh>. + +Just like L, it can only be used as a write accessor before you start any thread, as L cannot reliably share filehandles. + +Defaults to C. + +=cut + +sub diag_stream (;*) { + if (@_) { + $DIAG_STREAM = $_[0]; + + my $fh = select $DIAG_STREAM; + $|++; + select $fh; + } + + return $DIAG_STREAM; +} + +diag_stream *STDERR; + +=head1 DEPENDENCIES + +L 5.6. + +L, L + +=head1 AUTHOR + +Vincent Pit, C<< >>, L. + +You can contact me by mail or on C (vincent). + +=head1 BUGS + +Please report any bugs or feature requests to C, or through the web interface at L. +I will be notified, and then you'll automatically be notified of progress on your bug as I make changes. + +=head1 SUPPORT + +You can find documentation for this module with the perldoc command. + + perldoc Test::Leaner + +=head1 COPYRIGHT & LICENSE + +Copyright 2010 Vincent Pit, all rights reserved. + +This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. + +=cut + 1; # End of Test::Leaner