我试图测试的代码依赖于 RequireJs loader plugins。requirejs/text示例:
require(['text!templates/foo'], function (data) {
// handle loaded data
});
对于特定的单元测试,我试图模拟响应text!templates/foo
并覆盖与测试相关的响应:
it('should load a template', function (done) {
// TODO: mock 'text!templates/foo' here to return 'mock_data'
// templateViewer uses the text plugin internally to do the actual loading
templateViewer.templateFor('foo', function (error, templateData) {
expect(templateData).toEqual('mock_data');
done();
});
});
我看过 RequireJs 依赖模拟解决方案,尤其是Squire.js,但似乎它们都适合模拟常规依赖而不是插件响应。
我还查看了像sinon这样的存根库,可能会替换实际require
调用,但这似乎有问题。
推荐的做法是什么?text
我不想在我的 requirejs 配置中用模拟插件替换整个插件,只是在特定测试中覆盖它的一些响应。
我的设置是 node+mocha+requirejs
编辑
请参阅此示例小提琴项目以查看我与 Squire 的问题:
http://runnable.com/VUBoI0ex6v9Gs-BJ/squirejs-with-plugins-for-node-js-and-hello-world