Giter VIP home page Giter VIP logo

mockify's Introduction

mockify

Mockify is the API mocking made easy.

Record and replay your API calls for tests or development.

Warning: mockify is still experimental not ready for production.

Installation

  • From npm:
npm install -g mockify
  • From source:
git clone https://github.com/gandi/mockify.git && cd mockify
sudo npm link

Development

If you want to work on mockify, use Gulp tasks:

cd mockify

# install dependencies
npm install
cd www
bower install
cd ..

# in a first terminal, watch your app (lint all JS and build the webapp for each modification)
./gulp watch

# in a second one, start mockify
./gulp start

# Just type ./gulp to see all available tasks.

Open your browser at localhost:3000

How does it work?

Mockify is basicly a proxy manager, just follow those simple steps:

  1. Create a target toward the service to mock
  2. Enable it, the proxy will start
  3. Turn record mode on
  4. Make a bunch of api calls through the proxy
  5. Turn mock mode on
  6. Mockify now returns recorded requests

The proxy will record everything which passing through it and the mock will use this data to return exactly the same results, according HTTP verb, status, query parameters, etc.

Mockify uses a SQLite database to store data and spawn in-memory databases for mocking.

The different parts of mockify

{<5>}alt tag

Features

  • Save query and response of API(s)
  • Mock the exact same request with exact same results

Using mockify with the built-in webapp

{<6>}alt tag

Using mockify from the command line

You can fully use mockify only with a shell. Here a quick example.

$ mockify start
mockify daemon has been started.

$ mockify add-target 4000 http://jsonplaceholder.typicode.com
The target has been added.

┌────┬──────┬─────────────────────────────────────┬───────────┬──────────┬─────────┬─────────┐
│ Id │ Port │ Url                                 │ Recording │ Proxying │ Mocking │ Enabled │
├────┼──────┼─────────────────────────────────────┼───────────┼──────────┼─────────┼─────────┤
│ 1  │ 4000 │ http://jsonplaceholder.typicode.com │ 1         │ falsefalsefalse   │
└────┴──────┴─────────────────────────────────────┴───────────┴──────────┴─────────┴─────────┘

$ mockify enable-target 1
[proxy-out] Proxy listening on localhost:4000 and proxying http://jsonplaceholder.typicode.com

$ mockify log
# in another shell, type: curl localhost:4000/users
localhost:4000/users -> jsonplaceholder.typicode.com/users
^C

$ mockify start-mock 1
[mock-out] Mock listening on port 4000 and mocking the target ID: 1

$ mockify log
# in another shell, type: curl localhost:4000/users
200 GET /users on localhost:4000
^C

$ mockify disable-target 1
The target has been disabled.

$ curl http://localhost:4000/users
curl: (7) Failed to connect to localhost port 4000: Connection refused

Just type mockify to list all available commands.

Using mockify module from node.js

var mockify = require('mockify');

/* All these methods return a promise: */

// start mockify daemon
mockify.start()
  .then(function () { /* ... */ })
  .catch(function () { /* ... */ });

// stop mockify daemon
mockify.stop();

// list the daemon(s) status
mockify.status();

// send a ping to mockify to check if it is running
mockify.sayHello();

// start the httpserver which serves the webapp
mockify.startHttp();

// stop the httpserver
mockify.stopHttp();

// list saved targets
mockify.listTargets();

// add a target
mockify.addTarget(port, url);

// remove a target
mockify.removeTarget(id);

// start a proxy to the url of the target
// (stop the mock if it was running)
mockify.startProxy(id);

// start a mock to the url of the target
// (stop the proxy if it was running)
mockify.startMock(id);

// disable proxy or mock of a target
mockify.disableTarget(id);

// enable / disable the recording for a target
mockify.recordingTarget(id, bool);

/* You can log all proxies / mocks output with the log method which returns an eventEmitter: */
mockify.log()
  .on('response', console.log)
  .on('out', console.info)
  .on('error_', console.error);

Roadmap

  • Customize recorded sessions (edit response and request content, status code, headers)
  • Add delay for proxy responses to test unexpected scenarios
  • Enhance webapp logs to keep track of history

mockify's People

Contributors

cr0ck avatar

Watchers

James Cloos avatar  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.