New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

mehpi

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mehpi

Simple External API Mocking via Sinon

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

mehpi

Simple External API Mocking via Sinon

Motivation

So why another testing utility library for mocking HTTP servers? Because:

  1. We love sinon
  2. We wanted to love functional tests, but nock was unideal
  3. We thought, "Hey wouldn't it be cool if we could mock APIs with sinon?"

Example

const MockAPI = require('mehpi')
const request = require('request')
const sinon = require('sinon')

describe('functional tests', () => {
  // Create a new mock api for github (localhost:5678)
  const github = new MockAPI('5678')

  // Start the API before all tests, stop it when we're done
  before((done) => github.start(done))
  after((done) => github.stop(done))

  // Setup some route stubs for the API
  beforeEach(() => {
    github.stub('GET', '/users/rsandor').returns(200)
    github.stub('GET', '/repos/rsandor/solace/comments').returns({
      status: 500,
      body: 'Internal Server Error'
    })
    github.stub('POST', '/gists')
      .onFirstCall().returns(500)
      .onSecondCall().returns(200)
  })

  // Restore all route stubs after each test
  afterEach(() => {
    github.restore()
  })

  // Write a test!
  it('should call github', (done) => {
    const getUsers = github.stub('GET /users/:username')
    request.get('http://localhost:5678/users/rsandor', function () {
      sinon.assert.calledOnce(getUsers)
      done()
    })
  })
})

API Reference

new MockAPI(port)

Creates a new MockAPI instance that runs locally on the given port.

.start(done)

Starts the server, then calls the done callback.

.stop([done])

Stops the server. If defined, calls the done callback.

.stub(method, path)

Creates and returns a sinon stub for the given HTTP method and path.

.restore([route])

Restores all route stubs on the mocked server.

License

MIT

Keywords

FAQs

Package last updated on 01 Jul 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc