mock-recorder

0.5.1 • Public • Published

mock-recorder

Travis (linux/osx) Build-Status

appveyor (windows) Build-Status

dependecy-status

dependecy-status

Code Coverage

Generate mock-objects by recording usage of the real Object.

See example.js or tests for usage.

"use strict";
var mockRecorder = require('./index.js');
var complicatedLibThatIsNotPartOfThisTest = {
    a: 3,
    b: function (a, b) {
        return a + b;
    }
};
var recorder = mockRecorder.recorder(complicatedLibThatIsNotPartOfThisTest, "test");

console.log(recorder.a);        // 3
console.log(recorder.b(1,3));   // 4
console.log(recorder.b(5,3));   // 8


// now, lets use our mock:

var mock = mockRecorder.replay('test');


console.log(mock.a);        // 3
console.log(mock.b(1,3));   // 4
console.log(mock.b(5,3));   // 8

There is spec/example.spec.js, that's not a real test but an example on how to use the convenience wrapper in your tests. You should run the test once in 'record' mode. It will store the mocking-data in ./mockStorage. Running the same test again in 'replay' mode will result in running with a mocked object. the whole lib will not be loaded.

While working on your test's you should run in record mode, assuming your dependency works as intended. When your test is done, switch to replay mode; dont forget to commit your mock-data.

TODO

Automagically generate a test for the mocked object from the mocking-data.

Readme

Keywords

none

Package Sidebar

Install

npm i mock-recorder

Weekly Downloads

1

Version

0.5.1

License

ISC

Unpacked Size

67.3 MB

Total Files

372

Last publish

Collaborators

  • schorsch3000