单元测试Sequelize模型的实例

时间:2018-10-31 07:17:37

标签: unit-testing mocha sinon chai proxyquire

我有以下代码:

async save(id: string) {
 const person = await PersonModel.findOne({
  where: { id: id },
 });

 if (!person) {
  await PersonModel.create({
    id: '2345',
    name: 'John Doe',
    age: 25
  });
  return;
 }

 await person.increment({ age: 15 });
}

现在,我想测试person.increment(),其中将添加年龄15。我有以下代码可以避免为模型创建新记录的情况。

const findOneFake = sinon.spy(() => {
  return {}; //returns empty object or true
});

const proxy = (proxyquire('./path/to/file.ts', {
  './path/to/PersonModel.ts': {
    default: {
      findOne: findOneFake
    }
  }
})).default;

beforeEach(async () => {
  await save();
});

it('should increment age with 15');

我该怎么做?我该怎么做测试?我可以将sinon.fake()用于PersonModel.create或PersonModel.update,但是在测试Sequelize模型的实例时遇到了麻烦。

0 个答案:

没有答案