我想模拟一个ES6类的方法。
我正在导入模型模块:
// test.js
const models = require(path.resolve('./models'));
在models文件夹中有一个index.js,它在调用models.user时重定向到用户文件夹中的index.js:
// models/index.js
models.user = user;
然后我在index.js中有一个用户类: // models / user / index.js
class User extends Model {
// simplified exists - it returns boolean or thows an error
static async exists(username) {
if (username) {
returns true
} else {
throw new Error('bad output');
}
}
}
我想使用sinon stub存根(username)方法。
我在做:
const sinon = require('sinon');
const models = require(path.resolve('./models'));
describe.only('generateTokenBehavior()', function() {
it('should return 200 given valid username and password', function() {
...
const stub = sinon.stub();
stub(models.user.prototype, 'exists').callsFake(true);
...
});
我在使用存根的行上收到错误:
TypeError: Cannot read property 'callsFake' of undefined
这段代码有什么问题?我在类似的堆栈问题上研究这个问题,但没有找到答案。
答案 0 :(得分:1)
这里的问题是将 sinon.stub()的结果作为函数调用返回 undefined 。
const sinon = require('sinon');
const models = require(path.resolve('./models'));
describe.only('generateTokenBehavior()', function() {
it('should return 200 given valid username and password', function() {
...
const stub = sinon.stub(models.user.prototype, 'exists').callsFake(true);
...
});
供参考,文档在这里: http://sinonjs.org/releases/v4.1.1/stubs/#properties
我不会责怪你以你的方式写它 - 文档有点误导。