Code Monkey home page Code Monkey logo

jsoncompare's Introduction

##Install

pip install jsoncompare

##Explanation

  • Being able to tell whether or not an arbitrarily nested json blob is the same as another blob can hurt your eyes.
  • Additional complexity comes in when your json array's order doesn't matter.
  • For example, you might have a set in Java that you are going to send over the wire as json. It may be represented as a json array but in actuality, you don't care about the order.

Recent Changes

Version    Comments
0.1.1      Orginal Version
0.1.2      Adds support for "contains"

##Examples

from jsoncompare import jsoncompare

# Compare respecting each array's order
jsoncompare.are_same(a, b)

# Compare ignoring each array's order
jsoncompare.are_same(a, b, True)

# Compare ignoring the value of certain keys
jsoncompare.are_same(a, b, False, ["datetime", "snacktime"])

# Contains at least
jsoncompare.contains(a, b)
# Getting difference traces
from jsoncompare import jsoncompare

a = {
    "failureReason" : "Invalid request entity",
    "fieldValidationErrors" : [
        {
            "field" : "normal value 1",
            "reason" : "may not be smelly"
        },
        {
            "field" : "Catalog.name",
            "reason" : "may not be null"
        }
    ]
}
b = {
    "failureReason" : "Invalid request entity",
    "fieldValidationErrors" : [
        {
            "field" : "crazy value 2",
            "reason" : "may not be null"
        },
        {
            "field" : "Catalog.catalogOwner",
            "reason" : "may not be null"
        }
    ]
}
print jsoncompare.are_same(a, b)[1]

results in:

Reason: Different values
Expected:
  "normal value 1"
Actual:
  "crazy value 2"

Reason: Different values (Check order)
Expected:
  {
      "field": "normal value 1", 
      "reason": "may not be smelly"
  }
Actual:
  {
      "field": "crazy value 2", 
      "reason": "may not be null"
  }

Reason: Different values
Expected:
  [
      {
          "field": "normal value 1", 
          "reason": "may not be smelly"
      }, 
      {
          "field": "Catalog.name", 
          "reason": "may not be null"
      }
  ]
Actual:
  [
      {
          "field": "crazy value 2", 
          "reason": "may not be null"
      }, 
      {
          "field": "Catalog.catalogOwner", 
          "reason": "may not be null"
      }
  ]

jsoncompare's People

Contributors

dandroid88 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

jsoncompare's Issues

Python 3 Support

    def _are_same(expected, actual, ignore_value_of_keys, ignore_missing_keys=False):
        # Check for None
        if expected is None:
            return expected == actual, Stack()
    
        # Ensure they are of same type
        if type(expected) != type(actual):
            return False, \
                   Stack().append(
                       StackItem('Type Mismatch: Expected Type: {0}, Actual Type: {1}'
                                    .format(type(expected), type(actual)),
                                 expected,
                                 actual))
    
        # Compare primitive types immediately
>       if type(expected) in (int, str, bool, long, float, unicode):
E       NameError: name 'long' is not defined

long is int in Python 3.

Result of comparison depends on the order of datasets being compared

This tool does not detect absolute difference between the 2 datasets.

Example:

1s.json:

{
    "Key1": "1"
}

2s.json:

{
    "Key1": "1",
    "Key2": "1"
}
$ python comparejson.py 2s.json 1s.json      
Reason: Length Mismatch: Expected Length: 2, Actual Length: 1
Expected:
  {
      "Key1": "1",
      "Key2": "2"
  }
Actual:
  {
      "Key1": "1"
  }
Missing keys: [u'Key2']
$ python comparejson.py 1s.json 2s.json
$

Is this a bug or an (undocumented) feature?

In comparison, jsondiff detects difference no matter what is the order:

$ jsondiff 1s.json 2s.json                                                                                               
{"Key2": "2"}%
$ jsondiff 2s.json 1s.json                                                                                               
{"$delete": ["Key2"]}%

scientific notation in numbers are not consider while comparing json objects

input stings :
{"_id":{"p":47272221,"c":23},"f":[{"aa":"p.E250A","fsc":1e-05}
{"_id":{"p":47272221,"c":23},"f":[{"aa":"p.E250A","fsc":0.00005}

Error:
Traceback (most recent call last):
File "jsonCompare.py", line 16, in
b=json.loads(y)
File "/usr/lib/python2.7/json/init.py", line 338, in loads
return _default_decoder.decode(s)
File "/usr/lib/python2.7/json/decoder.py", line 366, in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
File "/usr/lib/python2.7/json/decoder.py", line 382, in raw_decode
obj, end = self.scan_once(s, idx)
ValueError: Expecting , delimiter: line 1 column 241 (char 240)

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.