mocha-stirrer

0.2.1 • Public • Published

Coverage Status Build Status npm version Dependencies devDependency Status Codacy Badge Built with Grunt

# Mocha Stirrer

Easily mock and set up tests for Mocha and Sinon then test, then reuse

A useful utility for testing with mocha and sinon in a friendlier way that allows you to describe the objects and functions you wish to spy/stub/mock. Stirrer gives you a way to declare your setup upfront and re-use it between tests so you can write them once and then run every test.

A big benefit of Stirrer is that the set up of mocks is made easier and the cleanup is taken care of for you.

The aim of this tool is to allow you to write as little as set up code as possible focusing on the test cases themselves.

The RequireMocker that is part of this package is a strong tool that can be used on its own or as part of the stirrer functionality. Read more about it below.

Mocha Stirrer supports only node.js development currently and will not work in the browser


## Example

Below is an example showing how Stirrer can be used to set up (grind) a test and then run a test (pour) using the fakes set up and verification defined:

Jump here for the full API documentation

 
    var stirrer = require("../lib/stirrer");
 
    describe("use stirrer simple", function () {
 
        var foo = require("./foo");
        var Bar = require("./sub/bar");
        var fs = require("fs");
        var path = require("path");
 
        var cup = stirrer.grind({
            name: "TEST #3",
            stubs: {
                "barGetStats": [Bar.prototype, "getStats"]
            },
            spies: {
                "pathJoin": [path, "join"]
            },
            mocks: {
                "fs": fs
            },
            before: function (cup) {
                this.stubs.barGetStats.returns("stats!");
                this.mocks.fs.expects("readdir").once().callsArgWithAsync(1, "oh no!");
            },
            after: function () {
                expect(this.stubs.barGetStats.calledOnce).to.be.true();
                expect(this.spies.pathJoin.calledOnce).to.be.true();
            }
        });
 
        cup.pour("fakes setup should work as defined", function (done) {
 
            expect(Bar.prototype.getStats).to.equal(this.stubs.barGetStats);
 
            var stats = foo.barStats();
            expect(stats).to.equal("stats!");
 
            var res = foo.wat("a", "b");
            expect(res).to.equal("a/b");
 
            foo.fs(function (err) {
                expect(err).to.equal("oh no!");
                done();
            });
        });
    });
 

## Stirrer API ### grind([conf](#stirrerGrindConfParSection), [testFn](#stirrerGrindtestFnParSection))

Alias: create

Creates a new Cup instance.

A cup can be used between tests

_conf_ is an object that configures the cup instance. The following properties can be passed in:
  • name - (optional) any string that will be used for naming mocha hooks

  • pars - (optional) object map (key/val) or function that returns an object map. Makes it easy to use values between tests

  • spies - (optional) object map or function returning an object map. Used to create sinon spies, each entry in the object map can be one of the following:

    1. An array with 2 the first element referencing an object, second is the property name
    2. A function to spy
    3. A special EMPTY string (stirrer.EMPTY) to receive an anonymous spy
  • stubs - (optional) object map or function returning an object map. Used to create sinon stubs, each entry in the object map can be one of the following:

    1. An array with 2 or 3 elements, the first element referencing an object, second is the property name and the third and optional is a function. See sinon API for details
    2. An object to be stubbed by sinon
    3. A special EMPTY string (stirrer.EMPTY) to receive an empty stub
  • mocks - (optional) object map or function returning an object map. Used to create sinon mocks, each entry in the object map should be an object reference

  • delay - (optional, default: false) When true, cup instance will be created but not set up. meaning non of the fakes will be defined. The brew method must be called in order for setup to occur. see the Stirring section for further details on the order of how things are set up and run. Note that you shouldn't use delay=true when also passing a test function as fakes wont be initialieed. setting setupImmediate to true overrides this parameters so delay will be ignored

  • transform - (optional) function receives the currently assigned parameters to the cup instance (cup.pars). If provided, transform will be run every time the cup setup logic is executed which, unless the setupImmediate flag is set to true, will be during the before or beforeEach hook

  • before - (optional) a function that will be called before (mocha hooks) tests are run within a describe/context block receives a reference to the cup as the context (this) and a reference to the done callback as a parameter. Very similarly to Mocha, if you define a the parameter Stirrer will assume you need it and you will have to call done(); in your method or your test will fail with a timeout error

  • after - (optional) a function that will be called after (mocha hooks) tests ran within a describe/context block receives a reference to the cup as the context (this) and a reference to the done callback as a parameter. Very similarly to Mocha, if you define a the parameter Stirrer will assume you need it and you will have to call done(); in your method or your test will fail with a timeout error

  • beforeEach - (optional) a function that will be called before (mocha hooks) each test within a describe/context block receives a reference to the cup as the context (this) and a reference to the done callback as a parameter. Very similarly to Mocha, if you define a the parameter Stirrer will assume you need it and you will have to call done(); in your method or your test will fail with a timeout error

  • afterEach - (optional) a function that will be called after (mocha hooks) each test within a describe/context block receives a reference to the cup as the context (this) and a reference to the done callback as a parameter. Very similarly to Mocha, if you define a the parameter Stirrer will assume you need it and you will have to call done(); in your method or your test will fail with a timeout error

  • sandbox - (optional) an object with properties to configure the internal sinon sandbox object Stirrer creates.

  • restirForEach - (optional, default: false) when set to true the cup will be restir-red, as in reset, after every test run (pour). Unlike the default behavior that will restir the cup only when exiting the context in which the cup was created or the context in which brew() was called

  • transformForEach - (optional, default: false) when set to true determines whether the supplied (pars) transform function should be run as part of a beforeEach hook. When false will run as part of a before hook

  • setupImmediate - (optional, default: false) makes the stirrer run its set up logic immediately during the execution of the grind method. Also, the setup logic will only be executed once - this is good for a standalone cup that will not be reused between tests. If left as false, the setup will happen during the first before or beforeEach hook prior to a test being executed

  • dontRestir - (optional, default: false) (see restir) will prevent the cup from being "restirred" (reset) in the after hook. This means that when the mocha context(describe) finishes, non of the fakes will be restored so you will need to do the restoring manually.

  • requires - (optional) requires is either an array or a function (returning array). Each element in the array should either be:

    1. string with the path of the module to require
    2. an object: {path: "", options: {}) - options is optional. options can include a 'parentModule' property which should point to a module that will be used for resolving dependencies' path. see the info here for more explanation. (for the rest of the options details see below)

    This will fake require the modules according to the provided path and make them available on the 'required' property of the cup. Additional requires can be passed into the cup using its stir method.

  • befores - (optional) Can either be a function or an array of functions. The signature of these functions is: fn(next). next is a function that must be called otherwise tests will not run. Each of the registered methods will be executed in sequence right before a test(pour) is run. Additional befores can be passed into the cup using its stir method. Any registered before functions are removed when the cup is restirred (reset)

  • afters - (optional) Can either be a function or an array of functions. The signature of these functions is: fn(next). next is a function that must be called otherwise tests will not finish running. Each of the registered methods will be executed in sequence right after a test(pour) is run. Additional afters can be passed into the cup using its stir method Any registered afters functions are removed when the cup is restirred (reset)

_testFn_

A test function to be run immediately with the cup object. Provides a shortcut to calling pour(...) on the cup object.

### setRequireParent(module) Sets the parent module that will be used as the parent of the fake require. this is needed for module path resolution the default parent module is the first module that required the stirrer (index) this method is needed in case there are test modules in different folders that use the fake require capability of RequireMocker ### restir(cup)

Alias: reset

Clears the cup's fakes(spies/stubs/mocks) and restores them using the internal sinon sandbox object. All registered afters/befores are removed together with all references to spies/stubs/mocks and stub aliases.

The cup's restir method is called internally automatically when the mocha context/describe ends in which the grind method was called or if delay was used, from the ending context in which brew was called. See the Stirring section below for a more detailed explanation.

### require(cup, requirePath, options)

RequireMocker

This is the RequireMocker type discussed below. You can new it up and use it on its own. See the section below for details.

EMPTY

When grinding a new cup you can specify what you wish to stub or spy. In case you want an anonymous stub/spy ala "sinon.stub();" you can use this special property as the value of the stub or spy. This way:

 
    var stirrer = require("mocha-stirrer");
 
    var cup = stirrer.grind({
            stubs: {
                "emptyStub": stirrer.EMPTY //will create an anonymous stub
            },
            spies: {
                "emptySpy": stirrer.EMPTY //will create an anonymous spy
            },
            before: function () {
                cup.stubs.emptyStub.returns("foo"); //here we use our anonymous stub
            }
    });
 

## The Cup

A cup is created by calling the grind method:

 
    var stirrer = require("mocha-stirrer");
 
    var cup = stirrer.grind({});
### .prototype.stir(conf)

Add information to the cup that can be used by following tests. the new information is added on top of any other data already passed using the grind method or previously calling stir.

conf - object that can consist of any combination of the following properties:

  • pars - object map (key/val) or function that returns an object map

  • befores - array of methods or a single method to be executed before each test. Each method passed receives a 'next' function reference as a parameter which it must call. Failing to call next() will cause timeouts as the flow will not progress

 
    var cup = stirrer.grind(...);
 
    cup.stir({
        befores: function (next) { //can pass one function or an array of functions
                 //do something here
                //...
                        next(); //dont forget to call next
                    }
    });
  • afters array of methods or a single method to be executed after each test. Each method receives a 'next' function reference as a parameter which it must call. Failing to call next() will cause timeouts as the flow will not progress.

  • requires - array of elements or a function returning array of elements, each element in the array should either be:

    • string with the path of the module to require or,
    • an object: {path: "", options: {}) - options is optional
### .prototype.pour(name, fn, stirData) > Alias: test

Wraps Mocha's it method and executes it with the added flows for befores/afters

the Pour method mimics Mocha's 'it' function and supports it's different flavors:

  1. Synchronous
  2. Asynchronous
  3. Pending
  4. Exclusive
  5. Inclusive

Here's a simple example of using pour:

 
    cup.pour("my test", function(){
 
        //this === cup - the cup is passed as the context for this function so you can do:
        // this.pars.myPar or this.stubs.myStub
    });
 

As mentioned, everything that you could do with Mocha's 'it' method you can do with pour so this works:

 
    cup.pour.only("my test", function(){
        //this will make Mocha run your test function exclusively
    });
 

If your test function runs asynchronous code then just like with Mocha, you have the done callback to signal the test is done:

 
    cup.pour("my test", function(done){
        //this will make Mocha run your test function exclusively
 
        done(); //make sure to call done so Mocha doesnt timeout
    });
 

If you want to use Mocha's 'it' on your own you can call pour like this:

 
    cup.pour.wrap("my test", function(){
        //now its up to you to use Mocha's it:
        //still true: this === cup
 
        it("this is actually my test now", function(){
        });
    });
 
#### stir'n pour™

When calling pour() and passing stirData you're essentially shortcutting calling stir and then pour separately. The major distinction being is that when calling stir on its own the data will be stirred into the cup internally by using the Mocha before hook, meaning it wont actually be stirred in at the time of calling stir but rather before the first test (pour) of the context. Remember, the before hook happens only once within a Mocha context(describe). If you wish to use pour multiple times in the same context but with different pars or setup/teardown use stir'n pour™. If pars are passed as part of the stirData and if a transform function was supplied during the grind then it will be called on the cup's pars object after merging the new pars data.

### .prototype.brew()

Alias: start

If delay=true was used when grinding the cup then you will need to manually start the cup by calling this method. This will initialize the cup. A good time to use delay and manual start is when you have the cup grinding code at the top of a module or in a shared util class. Then you wouldn't want the cup to be started immediately but rather in the right context/describe.

 
    //we may define a cup at the top of our test module with the delay flag, like this:
 
    var delayedCup = stirrer.grind({
        name: "delayed cup test",
        delay: true,   //cup will not be started immediately
        spies: {
            "pathSpy": [path, "join"]
        },
        stubs: {
            "readdirSyncStub": [fs, "readdir"]
        },
        pars: {
            readErr: "oh no!"
        },
        before: function () {
            this.stubs.readdirSyncStub.callsArgWithAsync(1, this.pars.readErr);
        },
        after: function () {
            expect(this.spies.pathSpy).to.have.been.called();
            expect(this.stubs.readdirSyncStub).to.have.been.called();
        }
    });
 
    //then when in the right context we can start the cup, like this:
 
    describe("start causes cup fakes to be initialized on demand", function () {
 
        delayedCup.brew(); //on demand start
 
        delayedCup.pour("fakes should not be initialized", function (done) {
 
            var result = this.spies.pathSpy("a", "b");
            expect(result).to.equal("a/b");
 
            this.stubs.readdirSyncStub("bla", function (err) {
                expect(err).to.equal(delayedCup.pars.readErr);
                done();
            });
        });
    });
 

.prototype.restir()

Alias: reset

see the restir global method details

### .prototype.require(reqPath, options)

see the require global method details

.prototype.getStub(name)

  • name- is the way to identify the stub you wish to get.

Normally, you declare objects to stub using the grind method. The key you use is the name that will be used to store the stub on the cup instance. so if you did:

 
    var cup = stirrer.grind({
        stubs: {
            myStub: someObj.someFn
        }
    });
 

then you will be able to access the stub by using:

 
    cup.stubs.myStub.returns(...);
 

However, if you used the fake reuqire mechanism by calling require on the cup instance. The dependencies of the module you fake require will also be available on the cup.stubs property. But they will be stored using the fully resolved path which is inconvenient to use at best and most likely different per environment. Thats where getStub comes in as it lets you use an alias or shortcut to get to the stub you want.

See the following example, if you had the following structure:

  • test.js
    • testObjects/
      • foo.js
      • sub/
        • bar.js

testObjects/foo.js requires testObjects/sub/bar.js. In test.js you fake require foo.js and you wish to set up a stubbed method from bar.js. You can easily do this by using the cup's getStub method and passing it "sub/bar" or even "testObjects/sub/bar". both of these will return the stubbed bar module.

Here is the above explanation in the form of a code example:

 
    describe("pass requires in grind conf", function () {
 
            var cup = stirrer.grind({
                requires: [
                    "./testObjects/foo" //foo will be fake required
                ],
                before: function () {
                    this.getStub("sub/bar").prototype.useDep.returns("this works!"); //foo depends on bar.js and we get to it and set it upusing alias: "sub/bar"
                }
            });
 
            cup.pour("fake require should be set up correctly", function () {
 
                var foo = cup.required["./testObjects/foo"]; //we can get to foo using the required property
                expect(foo).to.exist();
                expect(foo.useSubDep("")).to.equal("this works!"); //stub returns what we told it to return
            });
        });

.prototype.transformPars()

Will run the transform function provided (if it one was provided) during the grind on the current cup instance's pars object

.prototype.getRequired(name)

Get a mock-required module using the path it was required with or the alias that was used when the module was required

.prototype.name : String

The name of the instance. can be passed initially to the grind method

.prototype.sb : Sinon.Sandbox

The instance of sinon sandbox used by the cup. This enables the cup restir method to restore all fakes created by the cup automatically

.prototype.pars : Object

All of the parameters (key/val) passed to the cup either during grinding or using the stir method

.prototype.spies : Object

The spies created by the cup. Spies are created according to the map passed to the cup during the grinding

.prototype.stubs : Object

The stubs created by the cup. Stubs are created according to the map passed to the cup during the grinding

.prototype.mocks : Object

The mocks created by the cup. Mocks are created according to the map passed to the cup during the grinding

.prototype.required : Object

All of the modules (key/val) that were fake required (using the Require Mocker) by passing requires either during grinding or the stir method. The key used is the same one used to identify the module by its path

 
            cup.stir({
               requires: ["./testObjects/foo"] //define the module to fake require
            });
 
            cup.pour("should be able to test with my faked module", function(){
             var fakeFoo = cup.required["./testObjects/foo"]; //the module is now available using the cup's required property
            });
 

## Require Mocker

The Mocker lets you require a module using a simple call and it will stub out all of its dependencies (as best it could). This way you don't need to stub everything yourself but let the magic happen for you.

A typical use of the Mocker is through the cup.require method. However, it is possible to use it directly by using the RequireMocker property of mocha-stirrer

The typical mock type for the Mocker is STUB. You can control which type is used using the options passed to the require method or by setting the global default using this static method: setGlobalMockType

Here's an example (taken from this test module) -

 
    var Mocker = require("mocha-stirrer").RequireMocker;
 
    var mocker = new Mocker(sinon);  //pass sinon or a sinon sandbox to the mocker
 
    Mocker.setGlobalMockType(Mocker.MOCK_TYPES.SPY); //change the global mock type
 
    var foo = mocker.require("./testObjects/foo", {
                dontMock: ["fs"],
                mockType: {
                    "path": Mocker.MOCK_TYPES.STUB, //define a specific mock type for this module
                    "./sub/func": Mocker.MOCK_TYPES.SPY,
                    "./sub/bar": Mocker.MOCK_TYPES.STUB
                }
            });
 
            expect(foo).to.exist();
 
            expect(foo.bar()).to.equal("foo");
            expect(foo.wat("a", "b")).to.not.exist(); //wat() uses path module which is stubbed so it returns undefined
            expect(foo.useSub()).to.not.exist();
            expect(foo.useSubDep("world")).to.not.exist();
            expect(foo.useFuncDep()).to.equal("foo");
            expect(foo.useInstance()).to.equal("value");
            expect(foo.useConsts()).to.equal("i love pizza");
            expect(foo.useStatic()).to.not.exist();
            expect(foo.useConstsObj()).to.equal("im 1");
 
    var Bar = require("./testObjects/sub/bar");
 
    expect(Bar.prototype.useDep).to.have.been.calledWith("world");
 
    mocker.restore(); //make sure to clean up by restoring the stubs
 

You can define a setup function that will be called with the stubbed object as an argument, then you will be able to define behaviors on its stubs easily.

Mocker will stub all of the module's dependencies by default. You can pass a list of modules you don't wish Mocker to stub.

setup functions - relative path to the mock-required module or the absolute path

### .prototype.require(parent, requirePath, options)

.prototype.restore

when called directly, will:

  • restore the stubs created by calls to require
  • remove the stubbed modules from node's module cache
  • clear the internal cache

.prototype.getStubs

get a collection of the stubs created while modules were mock-required returns Object with the key as the path to the module, the value as the stubbed module exports

.prototype.getSpies

get a collection of the spies created while modules were mock-required returns Object with the key as the path to the module, the value as the spied module exports

getGlobalDontMock()

returns the array of paths/names used to determine which modules not to mock if they are a dependency to mock-required module

addGlobalDontMock(name)

add a path/name of a module to not not mock if its a dependency of a mock-required module. This method also accepts an array of name/path strings

removeGlobalDontMock(name)

remove the path/name of a module registered to not be mocked

clearGlobalDontMock()

Clear the entire list of modules registered to not be mocked

getGlobalMockType()

returns the currently used value for the mock type (STUB or SPY)

### setGlobalMockType()

define the mock type to use when mocking dependencies of mock-required modules

  • mockType (use RequireMocker.MOCK_TYPES)

Mock_TYPES

Enum containing: STUB, SPY


## Stirring

Internally, the mocha hooks (mainly the before hook) are used extensively to set up the fakes and your own befores/afters/etc. To use Mocha-Stirrer successfully you should have a good grip of the order of execution of things in Mocha in conjunction with its hooks...

I created a small gist that shows how hooks in Mocha can be set up and the resulting order of execution at: https://gist.github.com/yoavniran/ad29e7ecfe57570b18f7

this section isnt complete yet

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.2.1
    4
    • latest

Version History

Package Sidebar

Install

npm i mocha-stirrer

Weekly Downloads

4

Version

0.2.1

License

none

Last publish

Collaborators

  • yoavniran