gpt4 book ai didi

javascript - 如何在 Mocha 的一个断言中检查响应的主体是否具有某些属性

转载 作者:行者123 更新时间:2023-11-29 19:03:13 24 4
gpt4 key购买 nike

我正在使用 Mocha 在 Node.js 中测试 Web 应用程序的路由器,我想知道是否有一种方法可以检查一个对象是否具有某些属性的断言。

现在,这就是我正在做的:

describe('GET /categories', function () {
it('should respond with 200 and return a list of categories', function (done) {
request.get('/categories')
.set('Authorization', 'Basic ' + new Buffer(tokenLogin).toString('base64'))
.expect('Content-Type', /json/)
.expect(200)
.end(function (err, res) {
if (err) return done(err);
expect(res.body).to.be.an.instanceof(Array);
expect(res.body).to.have.lengthOf.above(0);
expect(res.body[0]).to.have.property('id');
expect(res.body[0]).to.have.property('category');
expect(res.body[0]).to.have.property('tenant');
done();
});
});
});

我已经在 Mocha 的文档中进行了搜索,但一直无法找到我想要的内容。

最佳答案

我假设您正在使用 chai:

expect(res.body)
.to.be.an.instanceof(Array)
.and.to.have.property(0)
.that.includes.all.keys([ 'id', 'category', 'tenant' ])

或者:

expect(res)
.to.have.nested.property('body[0]')
.that.includes.all.keys([ 'id', 'category', 'tenant' ])

(虽然后者并没有真正检查 res.body 是否真的是一个数组)

关于javascript - 如何在 Mocha 的一个断言中检查响应的主体是否具有某些属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45243031/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com