Jest Mocked request.js超时-在jest.setTimeout.Error指定的5000ms超时内未调用异步回调:

时间:2019-06-07 20:49:57

标签: javascript unit-testing request jestjs

我正在尝试模拟request.js来模拟文件上传,但是始终挂起。我增加了等待时间,但总会超时。

我要模拟的代码遵循request.post.form.append结构。如果我手动输入表单数据,它总是会失败,因此由于功能原因,无法修改功能代码。

我将我的require.js模拟程序设置为仅适合一个用例,这就是它按原样编写的原因。 我的require.js模拟如下:

const request = {
  post: jest.fn(() => ({
    form: jest.fn(() => ({
      append: jest.fn(test => {
        console.log(test)
        return Promise.resolve({
          status: 200,
          body: { test }
        })
      })
    }))
  }))
};

module.exports = request;

我的笑话代码如下:

    it('should upload a file', async () => {
      mocks.post.mockReturnValueOnce({
        status: 200,
        body: { test: 'response' }
      });

      const res = await dataSource.uploadFile(
        { name: 'projects', id: '123' },
        null,
        {
          filename: 'test',
          encoding: '7bit',
          mimetype: 'text/plain',
          createReadStream: jest.fn
        },
         '12345'
      );
      console.log('RES', res); // never gets here
      expect(mocks.post).toBeCalledWith('testName/123/files', {
        filename: 'test',
        encoding: '7bit',
        mimetype: 'text/plain',
        createReadStream: jest.fn
      });
      expect(res).toMatchSnapshot();
    });

适用的测试回报如下:

  console.log folder/folderName/src/files/__mocks__/request.js:5
    file

  console.log folder/folderName/src/files/__mocks__/request.js:5
    file

 FAIL  folder/folderName/src/files/__tests__/upload.spec.js (12.673s)
    uploadFile
      ✕ should upload a file (5006ms)

  ● FilesAPI › uploadFile › should upload a file

    Timeout - Async callback was not invoked within the 5000ms timeout specified by jest.setTimeout.Error: 

我注意到它在我的请求模拟中记录了test两次,因此我猜测它正在等待其他东西正确返回。我想念什么?

正在运行的代码非常适合实际上传,我只是在努力为其编写单元测试。

1 个答案:

答案 0 :(得分:0)

因此,您在此处指定的超时时间必须短于默认超时时间。

如果未调用此方法,则默认超时间隔为5秒。您可以通过添加

来指定测试内的超时时间
jest.setTimeout(10000); // 10 seconds

关于官方文档的解释,

  

执行此操作的一个好地方是setupTestFrameworkScriptFile。 https://jestjs.io/docs/en/jest-object#jestsettimeouttimeout

在某些情况下,如果您已经有jest.config.js文件,则只需设置一次。

// jest.config.js
module.exports = {

  // setup test framework after jest loaded
  setupFilesAfterEnv: [
    './tests/setupTestFrameworkScriptFile.js' // The path to a module that runs some code to configure or set up the testing framework before each test
  ],
};

现在,我们可以为您拥有的每个测试用例进行一次setTimout一次性设置,

// ./tests/setupTestFrameworkScriptFile.js file

jest.setTimeout(10000) // we set timeout interval is 10 seconds for every test case

beforeAll(async () => {
  await initializeDatabase(); // this is just an example
  initializeOtherDepedency();

}, 3000) // assume we only need 3 seconds for initialization before runnng test case.

最后一个只是您的测试用例文件

// uploadfile.test.js
it('should upload a file', async () => {

})

另请参阅此文档:

https://jestjs.io/docs/en/configuration#setupfilesafterenv-array

https://jestjs.io/docs/en/jest-object#jestsettimeouttimeout

https://jestjs.io/docs/en/api#beforeallfn-timeout