GithubHelp home page GithubHelp logo

mr-mixas / struct-diff.pm Goto Github PK

View Code? Open in Web Editor NEW
4.0 3.0 4.0 709 KB

Recursive diff for nested perl structures

Perl 100.00%
diff nested nested-structures recursive-diff perl-module data-structures nested-diff

struct-diff.pm's People

Contributors

manwar avatar mr-mixas avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

struct-diff.pm's Issues

diff incorrect for identical scalars

A diff for a hashref containing scalars which values are identical but their default freezer (Storable) return value is different are reported as different:

For example:

my $diff = diff({ port => "1434" }, { port => "1434" }, noU => 1);

print Dumper($diff);

outputs:

{
  D => {
    port => {
      N => "1434",
      O => "1434",
    }
  }
}

I'm still trying to get a failing test case but haven't succeeded so far.

Adding these lines after https://github.com/mr-mixas/Struct-Diff.pm/blob/master/lib/Struct/Diff.pm#L233

print "CHECKING $k\n";
print "\tx: '" . $x->{$k} . "' " . $opts{freezer}($x->{$k}) . "\n";
print "\ty: '" . $y->{$k} . "' " . $opts{freezer}($y->{$k}) . "\n";

for example outputs this:

CHECKING port
	x: '1434' 
                 12345678
1434
	y: '1434' 
                 123451434

Line https://github.com/mr-mixas/Struct-Diff.pm/blob/master/lib/Struct/Diff.pm#L252 causes the failure as it doesn't compare scalars ($type undefined).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.