简体   繁体   English

nodejs api 路由测试(mocha)由于超时而失败

[英]nodejs api route testing(mocha) failed due to timeout

i am new to nodejs testing with mocha and chai.right now I am having issue while testing a API route handler with mocha.我是使用 mocha 和 chai 进行 nodejs 测试的新手。现在我在使用 mocha 测试 API 路由处理程序时遇到问题。 my route handler code is我的路由处理程序代码是

exports.imageUpload = (req, res, next) => {
    Upload(req,res, async () => {     
        //get the image files and its original urls (form-data)
        let files = req.files['files[]'];
        const originalUrls = req.body.orgUrl;
        // check the input parameters
        if(files == undefined || originalUrls == undefined){
          res.status(400).send({status:'failed', message:"input field cannot be undefined"})
        }
        if(files.length > 0 && originalUrls.length > 0){
          //array of promises
          let promises = files.map(async(file,index)=>{
            //create a image document for each file 
            let imageDoc = new ImageModel({
              croppedImageUrl : file.path,
              originalImageUrl: (typeof originalUrls === 'string') ? originalUrls : originalUrls[index],
              status: 'New'
            });
            // return promises to the promises array
            return await imageDoc.save();
          });
          // resolve the promises
          try{
            const response = await Promise.all(promises);
            res.status(200).send({status: 'success', res:  response});           
          }catch(error){
            res.status(500).send({status:"failed", error: error})
          }
        }else{
          res.status(400).send({status:'failed', message:"input error"})
        }      
    })
}

the Upload function is just a multer utility to store the imagefile and my test code is Upload function 只是一个存储图像文件的 multer 实用程序,我的测试代码是

describe('POST /content/image_upload', () => {
    it('should return status 200', async() => {
        const response = await chai.request(app).post('/content/image_upload')
                .set('Content-Type', 'application/form-data')
                .attach('files[]',
                 fs.readFileSync(path.join(__dirname,'./asset/listEvent.png')), 'asset')
                .field('orgUrl', 'https://images.unsplash.com/photo-1556830805-7cec0906aee6?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1534&q=80')
        
        expect(response.error).to.be.false;
        expect(response.status).to.be.equal(200);
        expect(response.body.status).to.be.equal('success');
        response.body.res.forEach(item => {
            expect(item).to.have.property('croppedImageUrl');
            expect(item).to.have.property('originalImageUrl');
            expect(item).to.have.property('status');
            expect(item).to.have.property('_id');
        })        
    })
})

and the output shown after running this code is运行此代码后显示的 output 是

 1) POST /content/image_upload
       should return status 200:
     Error: Timeout of 2000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (/home/techv/content_capture/server/ContentServiceLib/api/test/image_upload.test.js)

I believe this updated code should work我相信这个更新的代码应该可以工作

describe('POST /content/image_upload', async() => {
    await it('should return status 200', async() => {
        const response = await chai.request(app).post('/content/image_upload')
                .set('Content-Type', 'application/form-data')
                .attach('files[]',
                 fs.readFileSync(path.join(__dirname,'./asset/listEvent.png')), 'asset')
                .field('orgUrl', 'https://images.unsplash.com/photo-1556830805-7cec0906aee6?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1534&q=80')
        
        expect(response.error).to.be.false;
        expect(response.status).to.be.equal(200);
        expect(response.body.status).to.be.equal('success');
        response.body.res.forEach(item => {
            expect(item).to.have.property('croppedImageUrl');
            expect(item).to.have.property('originalImageUrl');
            expect(item).to.have.property('status');
            expect(item).to.have.property('_id');
        })        
    })
})

async needs to be added at the top most level as well for it to actually be asynchronous async 也需要在最顶层添加,以便它实际上是异步的

I think your code is breaking as the upload is taking more then 2 seconds which is the default timeout of mocha as specified in the mocha documentation at https://mochajs.org/#-timeout-ms-t-ms我认为您的代码正在中断,因为上传时间超过 2 秒,这是摩卡咖啡的默认超时时间,如https://mochajs.org/#-timeout-ms-t-ms的 mocha 文档中所指定

There are two ways to overcome this problem:有两种方法可以克服这个问题:

  1. Add a global level timeout while running your command to run the tests --timeout 5s在运行命令以运行测试时添加全局级别超时--timeout 5s
  2. Add a test specific timeout in the test case itself eg在测试用例本身中添加测试特定超时,例如
    describe('POST /content/image_upload', () => {
        it('should return status 200', async() => {
           this.timeout(5000) // Timeout
            const response = await chai.request(app).post('/content/image_upload')
                    .set('Content-Type', 'application/form-data')
                    .attach('files[]',
                     fs.readFileSync(path.join(__dirname,'./asset/listEvent.png')), 'asset')
                    .field('orgUrl', 'https://images.unsplash.com/photo-1556830805-7cec0906aee6?ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&ixlib=rb-1.2.1&auto=format&fit=crop&w=1534&q=80')
            
            expect(response.error).to.be.false;
            expect(response.status).to.be.equal(200);
            expect(response.body.status).to.be.equal('success');
            response.body.res.forEach(item => {
                expect(item).to.have.property('croppedImageUrl');
                expect(item).to.have.property('originalImageUrl');
                expect(item).to.have.property('status');
                expect(item).to.have.property('_id');
            })        
        })
    })

Just check the line #3 in above code snippet.只需检查上面代码片段中的第 3 行。 more details are here: https://mochajs.org/#test-level更多细节在这里: https://mochajs.org/#test-level

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM