X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FTest-Leaner.git;a=blobdiff_plain;f=lib%2FTest%2FLeaner.pm;h=d79aef2c9a527bfa3f1e5a4d429bb700b4dc2e83;hp=7fe001a248b394eec4daa55d02b9fdbe95432190;hb=465440ff9c9519d5ce33d582cbf3fa4d03b4358a;hpb=57d87fcd6b2d8f96a6d4d05dd7e5a46e3e1ee75c diff --git a/lib/Test/Leaner.pm b/lib/Test/Leaner.pm index 7fe001a..d79aef2 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 * @@ -52,11 +52,16 @@ It also tests in scalar context, so C<'..'> will be treated as the flip-flop ope 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'}) { @@ -172,9 +177,10 @@ our @EXPORT = qw< ok is isnt - cmp_ok like unlike + cmp_ok + is_deeply diag note BAIL_OUT @@ -426,6 +432,8 @@ IS_BINOP =head2 C +=cut + =head2 C =cut @@ -451,6 +459,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; @@ -588,7 +648,7 @@ In that case, it also needs a working L. L 5.6. -L, L +L, L, L. =head1 AUTHOR