Giter Site home page Giter Site logo

cnxtech / mock-meddleware Goto Github PK

View Code? Open in Web Editor NEW

This project forked from paypal/mock-meddleware

0.0 0.0 0.0 14 KB

Mocking your Services/Functions

Home Page: https://github.com/paypal/mock-meddleware

License: MIT License

JavaScript 100.00%

mock-meddleware's Introduction

build status npm version npm downloads npm downloads

mock-meddleware

It is a mocking middleware which can be used in either Express or KrakenJS.

It allows you to override CommonJS modules behaviour.

Background

Development involving multiple teams, sometimes, certain service calls might not ready for integration and you need to mock those responses. This middleware allows you to test your code to handle those responses and new code/business logics following that. It can parallelise the frontend and backend development based on predefined contracts (i.e. JSON).

Examples

Express

var options = {
    "mocks": {
        "folder": mocksPath,
        "structure": ["scenarios"]
    },
    "wrappers": {
        "enabled": true,
        "mappings": [{
            "prefix": "serviceA",
            "wrapper": wrapperPath,
            "replace": replacePath
        }]
    }
}

app.use(require('mock-meddleware')(options));

Note: mocksPath, replacePath & wrapperPath are full path

KrakenJS

development.json

{
   "middleware":{
      "mocking":{
         "enabled":true,
         "priority":10,
         "module":{
            "name":"mock-meddleware",
            "arguments":[
               {
                  "mocks":{
                     "folder":"path:./mocks",
                     "structure":["scenario"]
                  },
                  "wrappers":{
                     "enabled":"config:middleware.mocking.enabled",
                     "mappings":[
                        {
                           "prefix":"serviceA",
                           "wrapper":"path:./lib/wrappers/serviceAWrapper",
                           "replace":"path:./lib/service/invokerA"
                        },
                        {
                           "prefix":"serviceB",
                           "wrapper":"path:./lib/wrappers/serviceBWrapper",
                           "replace":"path:./lib/service/invokerB"
                        }
                     ]
                  }
               }
            ]
         }
      }
   }
}

Note: path: is relative to application root folder

Options

  • mocks.folder is the root mock folder.
  • mocks.structure is used to describe the folders inside the root mock folder
  • wrappers.enabled will disable all mocking capability during middleware bootstrapping
  • wrappers.mappings contains an array of mock mappings
    • wrappers.mappings.replace is the function to be replaced
    • wrappers.mappings.wrapper is the function that will wrap around the 'replace function'
    • in the each structured folder, json mocks are prefixed like serviceA.1.json
      • each time a 'replace function' is called the corresponding index is incremented i.e. serviceA.2.json
  • Append reset=1 to the URL to reset the indexes - http://localhost:8080?scenarios=happy&reset=1

You can refer to the examples/tests for further explanation

License

The MIT License (MIT)

Copyright (c) 2016 PayPal

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

mock-meddleware's People

Contributors

chunkiat82 avatar rayho-hw-dev 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.