X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=lib%2FTest%2FLeaner.pm;h=8a41e4e8ee39c3f6a424d0f929c62bef79c4c5af;hb=7b053442294016a9ce8e27a3bd424a4a6f829862;hp=b629f6a8d93d377485e7303314be049fb1b4ed5e;hpb=0857b9585353fe0fe98e3e1fded50f6e15b3f1f3;p=perl%2Fmodules%2FTest-Leaner.git diff --git a/lib/Test/Leaner.pm b/lib/Test/Leaner.pm index b629f6a..8a41e4e 100644 --- a/lib/Test/Leaner.pm +++ b/lib/Test/Leaner.pm @@ -37,7 +37,7 @@ Its functions behave the same as their L counterparts, except for th =item * Stringification isn't forced on the test operands. -However, L honors C<'bool'> overloading, L honors C<'eq'> overloading and L honors whichever overloading category corresponds to the specified operator. +However, L honors C<'bool'> overloading, L and L honor C<'eq'> overloading (and just that one) and L honors whichever overloading category corresponds to the specified operator. =item * @@ -50,13 +50,22 @@ It also tests in scalar context, so C<'..'> will be treated as the flip-flop ope =item * +The tests don't output any kind of default diagnostic in case of failure ; the rationale being that if you have a large number of tests and a lot of them are failing, then you don't want to be flooded by diagnostics. + +=item * + C, C, C, C, C, C, C, C blocks and C are not implemented. +=item * + +L depends on L, while L does not. + =back =cut -use Exporter (); +use Exporter (); +use Scalar::Util (); BEGIN { if ($] >= 5.008 and $INC{'threads.pm'}) { @@ -106,7 +115,7 @@ sub croak { die @_, " at $file line $line.\n"; } -sub sanitize_comment { +sub _sanitize_comment { $_[0] =~ s/\n+\z//; $_[0] =~ s/#/\\#/g; $_[0] =~ s/\n/\n# /g; @@ -145,7 +154,7 @@ sub plan { $plan = SKIP_ALL; $plan_str = '1..0 # SKIP'; if (defined $value) { - sanitize_comment($value); + _sanitize_comment($value); $plan_str .= " $value" if length $value; } } else { @@ -172,9 +181,10 @@ our @EXPORT = qw< ok is isnt - cmp_ok like unlike + cmp_ok + is_deeply diag note BAIL_OUT @@ -237,7 +247,7 @@ sub skip { my $skip_str = "ok $test # skip"; if (defined $reason) { - sanitize_comment($reason); + _sanitize_comment($reason); $skip_str .= " $reason" if length $reason; } @@ -297,7 +307,7 @@ sub ok ($;$) { ++$failed; } if (defined $desc) { - sanitize_comment($desc); + _sanitize_comment($desc); $test_str .= " - $desc" if length $desc; } @@ -426,6 +436,8 @@ IS_BINOP =head2 C +=cut + =head2 C =cut @@ -451,6 +463,58 @@ sub cmp_ok ($$$;$) { goto $handler; } +=head2 C + +=cut + +sub _deep_check { + my ($x, $y) = @_; + + no warnings qw; + + return 0 if defined($x) xor defined($y); + + # Try object identity/eq overloading first. It also covers the case where + # $x and $y are both undefined. + # If either $x or $y is overloaded but none has eq overloading, the test will + # break at that point. + return 1 if not(ref($x) xor ref($y)) and $x eq $y; + + # Test::More::is_deeply happily breaks encapsulation if the objects aren't + # overloaded. + my $ry = Scalar::Util::reftype($y); + return 0 if Scalar::Util::reftype($x) ne $ry; + + # Shortcut if $x and $y are both not references and failed the previous + # $x eq $y test. + return 0 unless $ry; + + if ($ry eq 'ARRAY') { + if ($#$x == $#$y) { + _deep_check($x->[$_], $y->[$_]) or return 0 for 0 .. $#$y; + return 1; + } + } elsif ($ry eq 'HASH') { + if (keys(%$x) == keys(%$y)) { + (exists $x->{$_} and _deep_check($x->{$_}, $y->{$_})) + or return 0 for keys %$y; + return 1; + } + } elsif ($ry eq 'SCALAR' or $ry eq 'REF') { + return _deep_check($$x, $$y); + } + + return 0; +}; + +sub is_deeply { + @_ = ( + &_deep_check, + $_[2], + ); + goto &ok; +} + sub _diag_fh { my $fh = shift; @@ -460,7 +524,7 @@ sub _diag_fh { return if $no_diag; my $msg = join '', map { defined($_) ? $_ : 'undef' } @_; - sanitize_comment($msg); + _sanitize_comment($msg); return unless length $msg; local $\; @@ -498,7 +562,7 @@ sub BAIL_OUT { my $bail_out_str = 'Bail out!'; if (defined $desc) { - sanitize_comment($desc); + _sanitize_comment($desc); $bail_out_str .= " $desc" if length $desc; # Two spaces } @@ -579,11 +643,16 @@ sub diag_stream (;*) { diag_stream *STDERR; +=head2 C + +This constant evaluates to true if and only if L is thread-safe, i.e. when this version of C is at least 5.8, has been compiled with C defined, and L has been loaded B L. +In that case, it also needs a working L. + =head1 DEPENDENCIES L 5.6. -L, L +L, L, L. =head1 AUTHOR