API 使用 chai 的单元测试给出了错误的结果
API unit test using chai giving wrong result
我正在为我的 API 编写单元测试,它使用 nodejs 和 mongoose。我正在使用 mocha、chai 和 chai-http 进行单元测试。
我正在测试创建客户的 POST 请求。第一个测试创建了一个客户,它通过了。最后一个测试将尝试创建一个客户,但应该会失败,因为电子邮件已经存在,但会失败,因为请求会创建一个新客户。
我尝试使用邮递员手动执行请求,它给出了正确的行为。
测试如下:
describe('Customer', () => {
//Before each test we empty the database
beforeEach((done) => {
Customer.remove({}, (err) => {
done();
});
});
// Creating Customer test
describe('POST Account - Creating customer account', () => {
it('creating a user with correct arguments', (done) => {
// defining the body
var body = {
first_name : "Abdulrahman",
last_name : "Alfayad",
email: "test@test.com",
password: "123"
};
chai.request(server)
.post('/api/customer/account')
.send(body).end((err, res) => {
res.body.should.have.property('status').and.is.equal('success');
res.body.should.have.property('message').and.is.equal('customer was created');
done();
});
});
it('creating a user with incorrect arguments', (done) => {
// defining the body
var body = {
first_name: "Abdulrahman",
email: "test@test.com",
};
chai.request(server)
.post('/api/customer/account')
.send(body).end((err, res) => {
res.body.should.have.property('status').and.is.equal('failure');
res.body.should.have.property('message').and.is.equal('no arguments were passed');
done();
});
});
it('creating a user with an already existing email in the DB', (done) => {
// defining the body
var body = {
first_name: "Abdulrahman",
last_name: "Alfayad",
email: "test@test.com",
password: "123"
};
chai.request(server)
.post('/api/customer/account')
.send(body).end((err, res) => {
res.body.should.have.property('status').and.is.equal('failure');
res.body.should.have.property('message').and.is.equal('email already exist');
done();
});
});
});
});
我感觉这是因为你用beforeEach
清空了客户数据库。 beforeEach
挂钩将在每次测试之前执行,因此当您 运行 电子邮件场景测试时,您的数据库实际上是空的。
解决它最简单的方法是在现有的电子邮件场景之前重新创建一个新客户如:
it('creating a user with an already existing email in the DB', (done) => {
// NOTE: Create a user with email "test@test.com"
// defining the body
var body = {
first_name: "Abdulrahman",
last_name: "Alfayad",
email: "test@test.com",
password: "123"
};
chai.request(server)
.post('/api/customer/account')
.send(body).end((err, res) => {
res.body.should.have.property('status').and.is.equal('failure');
res.body.should.have.property('message').and.is.equal('email already exist');
done();
});
});
希望有用
我正在为我的 API 编写单元测试,它使用 nodejs 和 mongoose。我正在使用 mocha、chai 和 chai-http 进行单元测试。
我正在测试创建客户的 POST 请求。第一个测试创建了一个客户,它通过了。最后一个测试将尝试创建一个客户,但应该会失败,因为电子邮件已经存在,但会失败,因为请求会创建一个新客户。
我尝试使用邮递员手动执行请求,它给出了正确的行为。
测试如下:
describe('Customer', () => {
//Before each test we empty the database
beforeEach((done) => {
Customer.remove({}, (err) => {
done();
});
});
// Creating Customer test
describe('POST Account - Creating customer account', () => {
it('creating a user with correct arguments', (done) => {
// defining the body
var body = {
first_name : "Abdulrahman",
last_name : "Alfayad",
email: "test@test.com",
password: "123"
};
chai.request(server)
.post('/api/customer/account')
.send(body).end((err, res) => {
res.body.should.have.property('status').and.is.equal('success');
res.body.should.have.property('message').and.is.equal('customer was created');
done();
});
});
it('creating a user with incorrect arguments', (done) => {
// defining the body
var body = {
first_name: "Abdulrahman",
email: "test@test.com",
};
chai.request(server)
.post('/api/customer/account')
.send(body).end((err, res) => {
res.body.should.have.property('status').and.is.equal('failure');
res.body.should.have.property('message').and.is.equal('no arguments were passed');
done();
});
});
it('creating a user with an already existing email in the DB', (done) => {
// defining the body
var body = {
first_name: "Abdulrahman",
last_name: "Alfayad",
email: "test@test.com",
password: "123"
};
chai.request(server)
.post('/api/customer/account')
.send(body).end((err, res) => {
res.body.should.have.property('status').and.is.equal('failure');
res.body.should.have.property('message').and.is.equal('email already exist');
done();
});
});
});
});
我感觉这是因为你用beforeEach
清空了客户数据库。 beforeEach
挂钩将在每次测试之前执行,因此当您 运行 电子邮件场景测试时,您的数据库实际上是空的。
解决它最简单的方法是在现有的电子邮件场景之前重新创建一个新客户如:
it('creating a user with an already existing email in the DB', (done) => {
// NOTE: Create a user with email "test@test.com"
// defining the body
var body = {
first_name: "Abdulrahman",
last_name: "Alfayad",
email: "test@test.com",
password: "123"
};
chai.request(server)
.post('/api/customer/account')
.send(body).end((err, res) => {
res.body.should.have.property('status').and.is.equal('failure');
res.body.should.have.property('message').and.is.equal('email already exist');
done();
});
});
希望有用