Mocks a given path with a simple spy that returns either a constant symbol or something provided by you.
Because in unit tests, we mock some dependency functions.
And, usually, we like them to return a constant value.
And, usually, we like to assert their calls/args.
And, usually, we require
the test subject multiple times.
This utility fits that pattern.
dep.js
// we will be mocking this file
module.exports = (x) => x.toUpperCase()
index.js
// this module will be our test subject
const dep = require('./dep')
module.exports = (x) => dep(x) + '-foo'
index.test.js
// unit tests here
const assert = require('assert')
const mockPathWithSimpleSpy = require('mock-path-with-simple-spy')
const requireUncached = require('require-uncached')
// set up a mock
const depMocks = mockPathWithSimpleSpy(
'./dep', // path to mock
'MOCKED' // mocked function return value
)
// test A
const depSpyA = depMocks.next().value // mock
const subjectA = requireUncached('.')
const actualA = subjectA('a')
assert.strictEqual(actualA, 'MOCKED-foo') // `./dep` is mocked
assert.deepStrictEqual(depSpyA.args, [['a']]) // spy available
// test B
const depSpyB = depMocks.next().value
const subjectB = requireUncached('.')
const actualB = subject('b')
assert.strictEqual((actualB, 'MOCKED-foo')
assert.deepStrictEqual(depSpyB.args, [['b']])
mockPathWithSimpleSpy(path[, spyReturn])
(not a generator function)path
mock
.spyReturn
(optional)path
as its description.Returns an iterator, with the following properties:
next()
next
, the path
is mocked with a new
simple-spy
and the spy is returned.spyReturn
stop()
mock.stop
on the path
module.parent
So it must always be require
d
directly in the module where it is used.
This may be fixed by using
caller-path
instead of module.parent
,
so please report an issue
if you find that it bothers you.
require
s the mocked moduleThe path
is require
d
and the exported function’s length is examined,
for the purpose of the mock function
being of the same arity as the mocked function.