Giter Site home page Giter Site logo

simple-mock's Introduction

simple-http-mock

NodeJS simple mock module used to mock http responses and optionaly proxy them to other host. It can be used as middleware constructor, or standalone http/https server. Basic usage: Add your mocks to mocks directory, start mock server and debug http requests/responses.

##Install Clone repository

$ npm install simple-http-mock --save-dev

##API

var simpleMock = require('simple-http-mock');

simpleMock.createServer(options)

Runs http/https server base on options.

simpleMock.mocks(options)

Returns array of middlewares, which can be used in your app.

Options

simpleMock accepts these properties in the options object.

mocksDir

Directory where you place your mocks.

server

And object with http/https server options.

// EXAMPLE: create http and https server
server: {
    httpPort: 3000,
    httpsPort: 3443,
    privateKey: "sslcert/server.key",
    cert: "sslcert/server.crt"
}

proxies

List of objects, contain proxy servers.

// EXAMPLE: Use proxy for requests to /auth
proxies: [
    {
        uri: "/auth",
        host: "google.com"
    }
]

log

Object with log options. loglevel is a loglevel for morgan middleware.

// EXAMPLE: Write logs to logfile.log
log: {
    logfile: "logfile.log",
    loglevel: "combined"
}

##Creating mocks ###Simple mock Create json file in mocks folder

{
    "method": "post",
    "uri": "/a/b",
    "status": 403,
    "response": {
        "answer": "ok"
    },
    "headers": [
    {
      "name": "Myheader",
      "value": "Myvalue"
    },
    {
      "name": "Anything-else",
      "value": "More values"
    }
    ],
    "cookies": [
        {
          "name": "mycookie",
          "value": "something"
        }
    ]
}

###Advanced mock You can create your own mock function using NodeJS and express framework.

Mock function is a Express middleware, which will receive params:

req - object with request information

res - object with response

next - function, which must be called if you wish to pass request to other middlewares.

Just put your module to mocks directory.

Example module:

var express = require('express');
var router = express.Router();

router.route('/mock/:id1')
    .get(function(req, res, next){
        res.json({answer: 'not ok'});
    })
    .post(function(req, res, next){
        console.log('This is PUT middleware:', req.url);
        next();
    });

module.exports = router;

simple-mock's People

Contributors

ilacomp avatar

Stargazers

 avatar

Watchers

 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.