salix/modules/ticket/back/methods/ticket-request/specs/confirm.spec.js

86 lines
2.0 KiB
JavaScript
Raw Normal View History

2019-07-25 07:55:09 +00:00
const app = require('vn-loopback/server/server');
2020-10-30 09:45:55 +00:00
describe('ticket-request confirm()', () => {
2020-01-23 12:31:07 +00:00
let ctx = {
req: {
accessToken: {userId: 9},
headers: {origin: 'http://localhost'}
}
};
ctx.req.__ = value => {
return value;
};
2019-07-25 07:55:09 +00:00
it(`should throw an error if the item doesn't exist`, async() => {
2020-01-23 12:31:07 +00:00
ctx.args = {itemFk: 999};
2019-07-25 07:55:09 +00:00
2020-01-23 12:31:07 +00:00
let error;
2019-07-25 07:55:09 +00:00
try {
await app.models.TicketRequest.confirm(ctx);
} catch (err) {
error = err;
}
expect(error.message).toEqual(`That item doesn't exists`);
});
2020-02-27 11:31:38 +00:00
it('should throw an error if the item is not available', async() => {
const requestId = 5;
const itemId = 4;
2019-07-25 07:55:09 +00:00
const quantity = 99999;
2020-01-23 12:31:07 +00:00
ctx.args = {
2019-07-25 07:55:09 +00:00
itemFk: itemId,
id: requestId,
quantity: quantity
2020-01-23 12:31:07 +00:00
};
2019-07-25 07:55:09 +00:00
let error;
try {
await app.models.TicketRequest.confirm(ctx);
} catch (err) {
error = err;
}
expect(error.message).toEqual(`This item is not available`);
});
2020-10-02 07:39:58 +00:00
it(`should throw if there's a sale id`, async() => {
2019-07-25 07:55:09 +00:00
const requestId = 4;
2020-10-06 08:15:27 +00:00
const itemId = 1;
2019-07-25 07:55:09 +00:00
const quantity = 10;
2020-01-23 12:31:07 +00:00
ctx.args = {
itemFk: itemId,
id: requestId,
quantity: quantity
};
2020-10-06 08:15:27 +00:00
const request = await app.models.TicketRequest.findById(requestId);
expect(request.saleFk).toBeNull();
await request.updateAttributes({saleFk: 2});
ctx.args = {
itemFk: itemId,
id: requestId,
quantity: quantity
};
2020-10-02 07:39:58 +00:00
let error;
2019-07-25 07:55:09 +00:00
2020-10-02 07:39:58 +00:00
try {
await app.models.TicketRequest.confirm(ctx);
} catch (err) {
error = err;
}
2019-07-25 07:55:09 +00:00
2020-10-02 07:39:58 +00:00
expect(error.message).toEqual(`This request already contains a sale`);
2020-10-06 08:15:27 +00:00
// restores
await request.updateAttributes({saleFk: null});
2019-07-25 07:55:09 +00:00
});
});