Git Product home page Git Product logo

icedfrisby-nock's Introduction

icedfrisby-nock

version license build coverage code style

Concise support for mock requests in IcedFrisby.

Usage

Compose icedfrisby with icedfrisby-nock.

const frisby = require('icedfrisby-nock')(require('icedfrisby'))

or, more semantically, using the delightful mixwith:

const { mix } = require('mixwith')

const frisby = mix(require('icedfrisby')).with(require('./icedfrisby-nock'))

Allow connections to localhost, but simulate failure for any other HTTP connections.

await frisby.create(...)
  .get(...)
  .networkOff()
  .expectJSON(...)
  .run()

Mock one request, and simulate failure for any other HTTP connection.

intercept() automatically invokes networkOff().

await frisby.create(...)
  .get(...)
  .intercept(nock => nock('http://example.com')
    .get('/foobar')
    .reply(200))
  .expectJSON(...)
  .run()

Mock one request and allow all other HTTP connections.

await frisby.create(...)
  .get(...)
  .intercept(nock => nock('http://example.com')
    .get('/foobar')
    .reply(200))
  .networkOn()
  .expectJSON(...)
  .run()

Mock one request only if a condition is truthy.

const someCondition = true
await frisby.create(...)
  .get(...)
  .interceptIf(someCondition, nock => nock('http://example.com')
    .get('/foobar')
    .reply(200))
  .expectJSON(...)
  .run()

When using intercept(), interceptIf() or networkOff(), the plugin restores network access when the test finishes.

To check if a Frisby object has an intercept set, inspect the hasIntercept property.

To skip the test if an intercept is present, invoke .skipIfIntercepted() on the chain. This is useful with when invoked from a shared setup function or when performing conditional intercepts.

For the Nock API, refer to the Nock docs.

For the IcedFrisby API, refer to the IcedFrisby docs.

Installation

npm install --save-dev icedfrisby nock icedfrisby-nock

Who's using this

This project was developed for testing Shields.io.

Contribute

Pull requests welcome!

Support

If you are having issues, please let me know.

License

The project is licensed under the MIT license.

icedfrisby-nock's People

Contributors

calebcartwright avatar dependabot-preview[bot] avatar dependabot[bot] avatar paulmelnikow avatar pyvesb avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

icedfrisby-nock's Issues

Error when chaining open call after networkOn

Hello there!

I've been working on adding some tests to the CodeClimate service in shields (see pull request 1613). I need to mock one request and allow other HTTP connections and therefore followed the example in the Readme.

Nevertheless the following error is thrown:
TypeError: t.create(...).get(...).intercept(...).networkOn(...).open is not a function

In the end I've come up with a solution that seems to work, but I'm reporting this issue anyway. ๐Ÿ˜‰

Cheers,

Pyves

Add `skipIfIntercepted()` method

As mentioned in #27, it would be helpful to provide a skipIfIntercepted option that can be passed through config and/or chained on โ€“ any time before toss() or run().

This would be helpful for badges/shields#2195, we wanted to configure tests so the intercept()ed tests were skipped and the others were run.

This will need a skip() method added in IcedFrisby.

Provide a property getter for inspecting intercepted tests

In badges/shields#2195, we wanted to configure tests so the intercept()ed tests were skipped and the others were run. This required a way to check whether or not a test had an intercept in the chain.

With the tooling we had in place it was easy enough to conditionally call toss(). However there was no way to tell whether intercept() had been called.

Two possible fixes to this:

  1. Add a property getter to allow inspecting whether an intercept has been placed. This seems useful regardless of whether the next option is also done.
  2. Provide a skipIfIntercepted option that can be passed through config and/or chained on โ€“ any time before toss().

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.