我有文件foo.js:
export function bar (m) {
console.log(m);
}
另一个使用foo.js,cap.js:
的文件import { bar } from 'foo';
export default m => {
// Some logic that I need to test
bar(m);
}
我有test.js:
import cap from 'cap'
describe('cap', () => {
it('should bar', () => {
cap('some');
});
});
不知怎的,我需要在测试中覆盖bar(m)
的实现。有没有办法做到这一点?
P.S。我使用babel,webpack和mocha。
答案 0 :(得分:52)
哎哟..我找到了解决方案,所以我使用sinon
来存根和import * as foo from 'foo'
来获取所有导出函数的对象,这样我就可以将它们存根。
import sinon from 'sinon';
import cap from 'cap';
import * as foo from 'foo';
sinon.stub(foo, 'bar', m => {
console.log('confirm', m);
});
describe('cap', () => {
it('should bar', () => {
cap('some');
});
});
答案 1 :(得分:7)
您只能从模块本身中替换/重写/存根导出。 (这里是explanation)
如果你重写' foo.js'像这样:
var bar = function bar (m) {
console.log(m);
};
export {bar}
export function stub($stub) {
bar = $stub;
}
然后您可以在测试中覆盖它,如下所示:
import cap from 'cap'
import {stub} from 'foo'
describe('cap', () => {
it('should bar', () => {
stub(() => console.log('stubbed'));
cap('some'); // will output 'stubbed' in the console instead of 'some'
});
});
我已经创建了一个Babel插件,可以自动转换所有导出,以便它们可以被存根:https://github.com/asapach/babel-plugin-rewire-exports
答案 2 :(得分:5)
虽然@Mike解决方案适用于旧版本的sinon,但自sinon 3.0.0以来已被删除。
现在而不是:
sinon.stub(obj, "meth", fn);
你应该这样做:
stub(obj, 'meth').callsFake(fn)
模仿google oauth api的示例:
import google from 'googleapis';
const oauth2Stub = sinon.stub();
sinon.stub(google, 'oauth2').callsFake(oauth2Stub);
oauth2Stub.withArgs('v2').returns({
tokeninfo: (accessToken, params, callback) => {
callback(null, { email: 'poo@bar.com' }); // callback with expected result
}
});
答案 3 :(得分:2)
您可以使用babel-plugin-rewire(npm install --save-dev babel-plugin-rewire
)
然后在test.js
中使用导入模块上的__Rewire__
函数替换该模块中的函数:
// test.js
import sinon from 'sinon'
import cap from 'cap'
describe('cap', () => {
it('should bar', () => {
const barStub = sinon.stub().returns(42);
cap.__Rewire__('bar', barStub); // <-- Magic happens here
cap('some');
expect(barStub.calledOnce).to.be.true;
});
});
请务必在rewire
:
.babelrc
添加到您的babel插件中
// .babelrc
{
"presets": [
"es2015"
],
"plugins": [],
"env": {
"test": {
"plugins": [
"rewire"
]
}
}
}
最后,正如您所看到的,babel-plugin-rewire
插件仅在测试环境中启用,因此您应该将BABEL_ENV
环境变量设置为test
(您和#39;可能已经做了):
env BABEL_ENV=test mocha --compilers js:babel-core/register test-example.js
注意:我无法让babel-plugin-rewire-exports
工作。
答案 4 :(得分:0)
这对我来说也绝对是个难题...
我创建了一个小工具来解决 sinon 的这个限制。 (适用于 js too)。
// mockable.ts ?
import sinon from 'sinon'
export function mockable<T extends unknown[], Ret>(fn: (...fnArgs: T) => Ret) {
let mock: sinon.SinonStub<T, Ret> | undefined
const wrapper = (...args: T) => {
if (mock) return mock(...args)
return fn(...args)
}
const restore = () => {
mock = undefined
}
wrapper.mock = (customMock?: sinon.SinonStub<T, Ret>) => {
mock = customMock || sinon.stub()
return Object.assign(mock, { restore })
}
wrapper.restore = restore
return wrapper
}
如果您将上面的代码片段粘贴到您的项目中,您可以像这样使用它
// foo.js
import { mockable } from './mockable'
// we now need to wrap the function we wish to mock
export const foo = mockable((x) => {
console.log(x)
})
// main.js
import { foo } from './foo'
export const main = () => {
foo('asdf') // use as normal
}
// test.js
import { foo } from './foo'
import { main } from './main'
// mock the function - optionally pass in your own mock
const mock = foo.mock()
// test the function
main()
console.assert(mock.calledOnceWith('asdf'), 'not called')
// restore the function
stub.restore()
这种方法的好处是您不必记住总是以某种方式导入函数。 import { foo } from './foo'
与 import * as foo from './foo'
一样有效。自动导入可能只适用于您的 IDE。