Skip to content

arupex/ImpSwitch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ImpSwitch

npm version dependencies Build Status Pledge To Arupex!

Install

npm install impswitch --save

Switch Between Implementations

Assumptions:

    implementation functions should follow
        function(options, successCallback, failureCallback)

Example:

var ImpSwitch = require('impswitch');

var switch = ImpSwitch({
    real : {
        go: function go(options, success, failure) {
            success('Real Implementation');
        }
    },
    mock : {
        go : function go(options, success, failure) {
            success('Mock Implementation');
        }
    },
    {
        selector : function selector(options) {
            return options.id > 0 ? 'real' : 'mock';
        }
    }
});

Call

function success(data){
    console.log(data);
}

function failure(err){
    console.error(err);
}

switch('go')({ id : -1 }, success, failure)

switch('go')({ id : 1 }, success, failure)

Expected Output (ignoring any asynchronous operations):

Mock Implementation

Real Implementation

Alternative Calls! By Request

var superSwitch = switch('__SuperSwitch'); // '__SuperSwitch' create a switcher that doesnt require function name

superSwitch.go({ id : -1 }, success, failure)

superSwitch.go({ id : 1 }, success, failure)

Expected Output (ignoring any asynchronous operations):

Mock Implementation

Real Implementation

Or

var mock = switch('mock');
mock.go({ id : -1 });
mock.go({ id : 1 });

Expected Output:

Mock Implementation

Mock Implementation

Packages

No packages published

Languages

  • JavaScript 100.0%