Git Product home page Git Product logo

jest-json-extend's Introduction

Jest json extend

Jest expect matchers for JSON strings with jsonpath supported. Inspirted by jest-json-matchers, further optimize and add jsonpath support.

New Matchers

.toBeJSON()

It will pass if input is a string and it can be deserialized by JSON.parse(). For example:

expect('{"hello":"world"}').toBeJSON(); // It will pass
expect('<span>Test</span>').toBeJSON(); // It will not pass

.toEqualJSON(jsonObject)

It will pass if input is a valid JSON string and its deserialized value is equal to the value passed to the matcher. It compares based on toEqual() matcher. For example:

expect('{"hello":"world"}').toEqualJSON({ hello: 'world' }); // It will pass
expect('{\n  "status": 400\n}').toEqualJSON({ status: 200 }); // It will not pass

.toMatcherJSON(jsonObject)

It will pass if input is a valid JSON string and its deserialized value contains the properties of the value passed to the matcher. It matches based on toMatchObject() matcher. For example:

expect('{"status":202,"body":null}').toMatchJSON({ status: 202 }); // It will pass
expect('{"day":14,"month":3}').toMatchJSON({ month: 12 });

expect.jsonContaining(jsonObject)

It will pass if input is a valid JSON string and its deserialized value contains the properties of the value passed to the matcher, It behaves like expect.objectContaining() matcher. For example:

// It will pass
expect({
  body: '{"message":"This is JSON"}',
}).toEqual({
  body: expect.jsonContaining({ message: 'This is JSON' }),
});
// It will not pass
expect({
  status: 200,
}).toEqual({
  body: expect.jsonContaining({ message: 'Not this one' }),
});

Setup

Add jest-json to your Jest config:

module.exports = {
  // ... other configurations
  setupFilesAfterEnv: ['jest-json-extend'],
};

Or load it explicitly

import jest-json-extend;

it('should pass', () => {
    expect('').not.toBeJSON()
})

Example with jsonpath

it('should pass', () => {
  const recevied = JSON.stringify({
    firstName: 'John',
    lastName: 'doe',
    age: 26,
    address: {
      streetAddress: 'naist street',
      city: 'Nara',
      postalCode: '630-0192',
    },
  });
  expect(recevied).toMatchJSON(
    address,
    '$.address[?(@property.match(/city/i))]^'
  );
});

License

MIT

jest-json-extend's People

Contributors

huaxk avatar

Stargazers

 avatar

Watchers

 avatar

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.