私はいくつかのテストにスーパーテストを使用しようとしています。これが私がテストしようとしているコードスニペットです:
it("should create a new org with valid privileges and input with status 201", function(done) {
request(app)
.post("/orgs")
.send({ name: "new_org", owner: "[email protected]", timezone: "America/New_York", currency: "USD"})
.expect(201)
.end(function(err, res) {
res.body.should.include("new_org");
done();
});
});
Res bodyをテストしようとすると、エラーが発生します。
TypeError: Object #<Object> has no method 'indexOf'
at Object.Assertion.include (../api/node_modules/should/lib/should.js:508:21)
at request.post.send.name (../api/test/orgs/routes.js:24:27)
at Test.assert (../api/node_modules/supertest/lib/test.js:195:3)
at Test.end (../api/node_modules/supertest/lib/test.js:124:10)
at Test.Request.callback (../api/node_modules/supertest/node_modules/superagent/lib/node/index.js:575:3)
at Test.<anonymous> (../api/node_modules/supertest/node_modules/superagent/lib/node/index.js:133:10)
at Test.EventEmitter.emit (events.js:96:17)
at IncomingMessage.Request.end (../api/node_modules/supertest/node_modules/superagent/lib/node/index.js:703:12)
at IncomingMessage.EventEmitter.emit (events.js:126:20)
at IncomingMessage._emitEnd (http.js:366:10)
at HTTPParser.parserOnMessageComplete [as onMessageComplete] (http.js:149:23)
at Socket.socketOnData [as ondata] (http.js:1367:20)
at TCP.onread (net.js:403:27)
これはスーパーテストのバグですか、それともテストの形式が間違っていますか?ありがとう
または、これも機能するはずです。
res.body.should.have.property("name", "new_org");
また、単なるメモですが、論理的には、これを最後のコールバックではなくexpects
への別の呼び出しに入れるのが理にかなっていると思います。この関数は再利用することもできるので、可能な場合はどこかで再利用できる場所に置きます。
var isValidOrg = function(res) {
res.body.should.have.property("name", "new_org");
};
it("should create a new org with valid privileges and input with status 201", function(done) {
request(app)
.post("/orgs")
.send({ name: "new_org", owner: "[email protected]", timezone: "America/New_York", currency: "USD"})
.expect(201)
.expect(isValidOrg)
.end(done);
});
これで、GET
を/orgs/:orgId
に対してテストしていて、同じ検証を再利用することを想像できます。
これは、次のように書き換えることができます。
res.body.name.should.equal("new_org");
エラーを修正します。
res.bodyが配列の場合は、オブジェクトのインデックスを提供する必要があるので、res.body[res.body.length -1].name.should.equal("new_org")
-プロパティが配列の最後であり、順序付けされていない場合
応答本文をテストするには、予想される応答をexpect
に含めるだけです。
const { describe, it } = require('mocha');
const supertest = require('supertest');
describe('Validate API calls', () => {
it('create session post request should fail for invalid credentials', (done) => {
const data = { user_name: 'incorrect_username', password: 'INVALID' };
supertest(app).post('/api/session')
.send(data)
.expect('Content-Type', /json/)
.expect({ name: 'AuthenticationError', message: 'Unauthorized' })
.expect(401, done);
});
});
ソース: https://willi.am/blog/2014/07/28/test-your-api-with-supertest/