pubnub-functions-mock

0.0.17 • Public • Published

PubNub Functions Mock

Build Status Coverage Status Known Vulnerabilities

Unit test PubNub Functions event handlers on your local machine

Currently supported modules for mock (docs here):

Any module can be overridden using overrideDefaultModules within a single test body. The module or modules will only be overridden in that single test block.

endpoint.overrideDefaultModules({
    "xhr" : () => {
        return Promise.resolve(200);
    }
});

To override a default module in all tests, pass the module object when the Event Handler is initialized.

endpoint = Mock('./myEndpointEventHandler.js', { 
    "xhr" : () => {
        return Promise.resolve(200);
    }
});

Mock the KVStore for a test

endpoint.mockKVStoreData({"key":"value"});

Mock the KVStore counters for a test

endpoint.mockKVStoreCounters({"key":123});

Example PubNub Function Endpoint unit test with Mocha and Chai

// myTest.js
const assert = require('chai').assert;
const Mock = require('pubnub-functions-mock');
 
const endpointRequestObject = {
    "body": "{}",
    "message": {},
    "method": null,
    "params": {}
};
 
const endpointResponseObject = {
    "headers": {},
    "status": 200,
    "send": function ( body ) {
        return new Promise( (resolve, reject) => {
            resolve({
                "body": body || "",
                "status": this.status
            });
        });
    }
};
 
describe('#endpoint', () => {
    let endpoint;
 
    beforeEach(() => {
        endpoint = Mock('./myEndpointEventHandler.js');
    });
 
    it('creates endpoint event handler of type Function', (done) => {
        assert.isFunction(endpoint, 'was successfully created');
        done();
    });
 
    it('returns "Hello World!"', (done) => {
        
        let request = Object.assign({}, endpointRequestObject);
        let response = Object.assign({}, endpointResponseObject);
 
        let correctResult = {
            "body": "Hello World!",
            "status": 200 
        };
 
        endpoint(request, response).then((testResult) => {
 
            assert.equal(testResult.status, correctResult.status, 'status');
            assert.equal(testResult.body, correctResult.body, 'response body');
 
            done();
        });
    });
 
    it('returns a kvstore value', (done) => {
        
        let request = Object.assign({}, endpointRequestObject);
        let response = Object.assign({}, endpointResponseObject);
 
        request.getKvValue = true;
 
        let preExistingValue = { "key" : "value" };
 
        let correctResult = {
            "body": preExistingValue.key,
            "status": 200 
        };
 
        // Mock the pre-existing KVStore value for this test only
        endpoint.mockKVStoreData(preExistingValue);
 
        endpoint(request, response).then((testResult) => {
 
            assert.equal(testResult.status, correctResult.status, 'status');
            assert.equal(testResult.body, correctResult.body, 'response body');
 
            done();
        });
    });
});

The above test would be run on myEndpointEventHandler.js using mocha myTest

// myEndpointEventHandler.js
export default (request, response) => {
    const pubnub = require('pubnub');
    const kvstore = require('kvstore');
 
    if (request.getKvValue) {
        return kvstore.get('key').then((value) => {
            response.status = 200;
            return response.send(value);
        });
    }
 
    response.status = 200;
    return response.send("Hello World!");
};

Dependents (2)

Package Sidebar

Install

npm i pubnub-functions-mock

Weekly Downloads

2

Version

0.0.17

License

none

Unpacked Size

47.4 kB

Total Files

11

Last publish

Collaborators

  • client-engineering-bot
  • stephenlb
  • pubnub-admin
  • keyosk
  • parasyte
  • ianjennings
  • ajb413
  • madisonsmith
  • crgbaumgart