如何在循环中使用describe?

时间:2019-04-15 11:26:52

标签: node.js mocha chai

我正在尝试编写测试聊天机器人的测试用例,并且我需要在每个响应的it块中检查很多事情。所以现在的流程是,我发送了许多消息,并且我试图在forEach循环中包含一个describe语句,但是由于某种原因,这是行不通的。 it块中没有任何测试正在运行。

const body = ['hi', 'transfer 20 sms', 'no', 'no', 'first one', 'first one']

describe('API', () => {
      describe('Basic flow', () => {
        body.forEach((v, i) => {
          describe(`Should get response for message #${i + 1}`, () => {
            return agent.post('/watson/send').send({
              'content': {
                'userInput': v,
                'userDial': '123456'
              }
            }).then(response => {
              it('Body should exist', done => {
                // this part doesnt work
                const { body } = response
                const { text } = response.body.reply
                expect(_.isEmpty(body)).to.equal(false)
                done()
              })
            })
          })
        })
      })
    })

我的理解是,这是行不通的,因为mocha找不到在promise中的it块。我无法弄清楚如何对其进行重组,以使其具有多个测试API相同结果的it块。

1 个答案:

答案 0 :(得分:0)

describe需要it块,您正在其中直接编写代码。尝试使用挂钩执行API,然后test对其响应。

describe('Should get response for message', function () {

    let _response;

    // before hook
    before(function () {

        return agent.post('/watson/send').send({
            'content': {
                'userInput': v,
                'userDial': '123456'
            }
        }).then(response => {
            _response = response;
            done();
        })
    });

    // test cases
    it('Body should exist', done => {
        // this part doesnt work
        const { body } = _response
        const { text } = _response.body.reply
        expect(_.isEmpty(body)).to.equal(false)
        done()
    })
});