没有回调作为参数的模拟功能

时间:2020-08-10 07:35:20

标签: jestjs babel-jest ts-jest jest-fetch-mock

我有dh.js

const checkDExistsCallback = (err, dResp) => {
  if (err)    
    cbResp.error('failed');    

  if (dResp.length > 0) 
    checkDCollectionExists();  
  else 
    cbResp.error('Not found.');  
};
    
const checkDCollectionExists = () => 
{  
  let query = `select sid from tablename where sid = '${objRequestData.dName}' limit 1;`;
  genericQueryCall(query, checkDCollCallback);
}

module.exports = {checkDExistsCallback , checkDCollectionExists }

在我的dh.test.ts中

const dhExport = require("./DensityHookReceive");
dhExport.checkDCollectionExists = jest.fn().mockImplementation(() => {});

test('check req dh is exists', () => {
  dhExport.checkDExistsCallback(false, '[{}]');
  expect(dhExport.checkDCollectionExists).toBeCalled(); 
});

在dh.js中,满足“ if”条件后,调用 checkDCollectionExists checkDExistsCallback 函数。当您查看dh.test.ts文件时,我在一开始就对checkDCollectionExists函数进行了模拟,但是在运行测试时,它没有调用模拟的功能,而是在调用实际的功能。你能帮我弄清楚吗?

1 个答案:

答案 0 :(得分:1)

在已定义的同一模块中使用的函数不能被模拟,除非将其始终用作可以被模拟的对象的方法,例如

  if (dResp.length > 0) 
    module.exports.checkDCollectionExists();  

代替

  if (dResp.length > 0) 
    checkDCollectionExists();  

checkDCollectionExists需要移动到另一个模块,或者两个功能需要作为一个单元进行测试。需要模拟的是数据库调用。