X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FTest%2FLeaner.pm;h=c1b8df4b712334a900802ec34b9260407b905f2e;hb=e3abaf6002541705d0afdab5a64e6f82dde4ec6c;hp=c4c577d2dde61f0eeece12b0f6ccdf9c6ff1a721;hpb=eb0bd56068ca67ea93f621ef38f59dec9bdbbcd8;p=perl%2Fmodules%2FTest-Leaner.git diff --git a/lib/Test/Leaner.pm b/lib/Test/Leaner.pm index c4c577d..c1b8df4 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 { @@ -28,6 +55,12 @@ BEGIN { my $TAP_STREAM = *STDOUT; my $DIAG_STREAM = *STDERR; +for ($TAP_STREAM, $DIAG_STREAM) { + my $fh = select $_; + $|++; + select $fh; +} + my ($plan, $test, $failed, $no_diag, $done_testing); sub NO_PLAN () { -1 } @@ -35,7 +68,7 @@ sub SKIP_ALL () { -2 } BEGIN { if (THREADSAFE) { - threads::shared::share($_) for $plan, $test, $failed, $no_diag; + threads::shared::share($_) for $plan, $test, $failed, $no_diag, $done_testing; } lock $plan if THREADSAFE; @@ -63,6 +96,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 +137,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"; @@ -122,6 +157,7 @@ our @EXPORT = qw< ok is isnt + cmp_ok like unlike diag @@ -142,6 +178,7 @@ sub import { push @imports, @{ $_[$i+1] }; $splice = 2; } elsif ($item eq 'no_diag') { + lock $plan if THREADSAFE; $no_diag = 1; $splice = 1; } @@ -162,11 +199,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) = @_; @@ -182,6 +227,8 @@ sub skip { } for (1 .. $count) { + ++$test; + my $skip_str = "ok $test # skip"; if (defined $reason) { sanitize_comment($reason); @@ -190,14 +237,16 @@ sub skip { local $\; print $TAP_STREAM "$skip_str\n"; - - $test++; } no warnings 'exiting'; last SKIP; } +=head2 C + +=cut + sub done_testing { my ($count) = @_; @@ -225,6 +274,10 @@ sub done_testing { return 1; } +=head2 C + +=cut + sub ok ($;$) { my ($ok, $desc) = @_; @@ -248,89 +301,129 @@ sub ok ($;$) { return $ok; } +=head2 C + +=cut + sub pass (;$) { unshift @_, 1; goto &ok; } +=head2 C + +=cut + sub fail (;$) { unshift @_, 0; goto &ok; } -my %binops; -BEGIN { - %binops = ( - 'or' => 'or', - 'and' => 'and', - 'xor' => 'xor', - - '||' => 'hor', - '&&' => 'hand', - - 'lt' => 'lt', - 'le' => 'le', - 'gt' => 'gt', - 'ge' => 'ge', - 'eq' => 'eq', - 'ne' => 'ne', - 'cmp' => 'cmp', - - '<' => 'nlt', - '<=' => 'nle', - '>' => 'ngt', - '>=' => 'nge', - '==' => 'neq', - '!=' => 'nne', - '<=>' => 'ncmp', - - '=~' => 'like', - '!~' => 'unlike', - '~~' => 'smartmatch', +=head2 C + +=cut + +sub is ($$;$) { + my ($got, $expected, $desc) = @_; + no warnings 'uninitialized'; + @_ = ( + (not(defined $got xor defined $expected) and $got eq $expected), + $desc, + ); + goto &ok; +} + +=head2 C + +=cut + +sub isnt ($$;$) { + my ($got, $expected, $desc) = @_; + no warnings 'uninitialized'; + @_ = ( + ((defined $got xor defined $expected) or $got ne $expected), + $desc, ); + goto &ok; +} - for my $op (sort keys %binops) { - my $name = $binops{$op}; +my %binops = ( + 'or' => 'or', + 'and' => 'and', + 'xor' => 'xor', + + '||' => 'hor', + '&&' => 'hand', + + 'lt' => 'lt', + 'le' => 'le', + 'gt' => 'gt', + 'ge' => 'ge', + 'eq' => 'eq', + 'ne' => 'ne', + 'cmp' => 'cmp', + + '<' => 'nlt', + '<=' => 'nle', + '>' => 'ngt', + '>=' => 'nge', + '==' => 'neq', + '!=' => 'nne', + '<=>' => 'ncmp', + + '=~' => 'like', + '!~' => 'unlike', + '~~' => 'smartmatch', +); + +my %binop_handlers; + +sub _create_binop_handler { + my ($op) = @_; + my $name = $binops{$op}; + croak("Operator $op not supported") unless defined $name; + { local $@; eval <<"IS_BINOP"; sub is_$name (\$\$;\$) { - my (\$x, \$y, \$desc) = \@_; - no warnings 'uninitialized'; - \@_ = ( - (not(defined \$x xor defined \$y) and \$x $op \$y), - \$desc, - ); + my (\$got, \$expected, \$desc) = \@_; + \@_ = ((\$got $op \$expected), \$desc); goto &ok; } IS_BINOP die $@ if $@; } + $binop_handlers{$op} = do { + no strict 'refs'; + \&{__PACKAGE__."::is_$name"}; + } } +=head2 C + +=head2 C + +=cut + { no warnings 'once'; - *is = \&is_eq; - *like = \&is_like; - *unlike = \&is_unlike; + *like = _create_binop_handler('=~'); + *unlike = _create_binop_handler('!~'); } -sub isnt ($$;$) { - my ($x, $y, $desc) = @_; - no warnings 'uninitialized'; - @_ = ( - ((defined $x xor defined $y) or $x ne $y), - $desc, - ); - goto &ok; -} +=head2 C + +=cut sub cmp_ok ($$$;$) { - my ($x, $op, $y, $desc) = @_; - my $name = $binops{$op}; - croak("Operator $op not supported") unless defined $name; - @_ = ($x, $y, $desc); - no strict 'refs'; - goto &{__PACKAGE__."is_$name"}; + my ($got, $op, $expected, $desc) = @_; + my $handler = $binop_handlers{$op}; + unless ($handler) { + local $Test::More::Level = ($Test::More::Level || 0) + 1; + $handler = _create_binop_handler($op); + } + @_ = ($got, $expected, $desc); + goto $handler; } sub _diag_fh { @@ -351,16 +444,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) = @_; @@ -395,4 +500,40 @@ 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. + +=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