subeeshcbabu-zz / swagmock

Mock data generator for swagger api
MIT License
173 stars 38 forks source link

swagmock

Mock data generator for swagger api

Note: Swagmock version 1.0.0 onwards requires Node.js v6+ ("engines": {"node": ">=6.x"}). Please use v0.0.x (say 0.0.5), if you want to run this module on any previous node.js versions.

Install

npm install swagmock

Usage

    let Swagmock = require('swagmock');
    let Mockgen = Swagmock(api, options);
    // api Can be one of the following.
    // 1) A relative or absolute path to the Swagger api document.
    // 2) A swagger api Object.
    // 3) A promise (or a `thenable`) that resolves to the swagger api Object.
    // Set the `validated` : `true`  in `options`, if the api Object is already validated
    // and dereferenced ($ref are resolved ).

Promise response:

    let responseMock = Mockgen.responses({}); //returns a promise that resolves to response mock
    responseMock.then(mock => {
        //Use mock here
    }).catch(error => {
        Assert.ifError(error);
    });

Callback style:


    Mockgen.responses({ path: '/somepath'}, (error, mock) => {
        Assert.ifError(error);
        //Use mock here
    });

Check the API for more details.

Example

Initialize the mock generator

    const apiPath = 'http://petstore.swagger.io/v2/swagger.json';
    let Assert = require('assert');
    let Swagmock = require('swagmock');
    let Mockgen = Swagmock(apiPath);

Response mock generation:

    mockgen.responses({
        path: '/pet/findByStatus',
        operation: 'get',
        response: 200
    }).then(mock => {
        console.log(mock); // This would print:
        // {
        //     "responses": [{
        //         "id": 2530624032210944,
        //         "category": {
        //             "id": 8200505595527168,
        //             "name": "r($vA&"
        //         },
        //         "name": "doggie",
        //         "photoUrls": ["p0x1", "6O)3*kO"],
        //         "tags": [{
        //             "id": 4590764340281344,
        //             "name": "WCTA6f!"
        //         }, {
        //             "id": -4614156653166592,
        //             "name": "e"
        //         }],
        //         "status": "pending"
        //     }]
        // }
    }).catch(error => {
        Assert.ifError(error);
    });

Parameters mock generation:


    mockgen.parameters({
        path: '/pet/findByStatus',
        operation: 'get'
    }).then(mock => {
        console.log(mock);//This would print:
        // {
        //     "parameters": {
        //         "query": [{
        //             "name": "status",
        //             "value": [ 'available', 'pending' ],
        //             "separator": "multi"
        //         }]
        //     }
        // }
    }).catch(error => {
        Assert.ifError(error);
    })

Check Examples for more details on mock generators.

API

Swagmock(api, [options])

responses

mockgen.responses(options, [callback])

This generates the mock response objects based on the options

options

parameters

mockgen.parameters(options, [callback])

This generates the mock parameters objects based on the options

options

requests

mockgen.requests(options, [callback])

This generates the mock request object based on the options. requests API resolves the parameters mock data to generate the request mock object useful for unit tests.

options

data

request Object will have following possible properties query, header, pathname, path, formData or body based on the parameters defined for the path and operation.

Mock request Path templates are resolved using path parameters.

    mockgen.requests({
        path: '/pet/findByStatus',
        operation: 'get'
    }, function (error, mock) {
        assert.ifError(error);

        console.log(mock);
        //This would print:
        // {
        //     "request": {
        //         "query": "status=available&status=pending"
        //     }
        // }
    });

Examples

API

Usage

Unit test request mocks

github api express app

slack api hapi app

Mock response data providers

spotify api hapi app

glugbot api express app