2021-09-29 06:27:18 +00:00
|
|
|
const models = require('vn-loopback/server/server').models;
|
2019-09-26 07:05:18 +00:00
|
|
|
|
|
|
|
describe('sale updateConcept()', () => {
|
2024-06-14 06:39:57 +00:00
|
|
|
const ctx = beforeAll.getCtx();
|
2022-10-05 13:13:36 +00:00
|
|
|
const saleId = 25;
|
2019-09-26 07:05:18 +00:00
|
|
|
|
2021-09-29 06:27:18 +00:00
|
|
|
it('should throw if ID was undefined', async() => {
|
|
|
|
const tx = await models.Sale.beginTransaction({});
|
2019-09-26 07:05:18 +00:00
|
|
|
|
2021-09-29 06:27:18 +00:00
|
|
|
let error;
|
|
|
|
try {
|
|
|
|
const options = {transaction: tx};
|
2019-09-26 07:05:18 +00:00
|
|
|
|
2021-09-29 06:27:18 +00:00
|
|
|
const newConcept = 'not going to heppen';
|
2019-09-26 07:05:18 +00:00
|
|
|
|
2021-09-29 06:27:18 +00:00
|
|
|
await models.Sale.updateConcept(ctx, undefined, newConcept, options);
|
2019-09-26 07:05:18 +00:00
|
|
|
|
2021-09-29 06:27:18 +00:00
|
|
|
await tx.rollback();
|
2019-09-30 11:02:11 +00:00
|
|
|
} catch (e) {
|
2021-09-29 06:27:18 +00:00
|
|
|
await tx.rollback();
|
|
|
|
error = e;
|
2019-09-30 11:02:11 +00:00
|
|
|
}
|
2019-09-26 07:05:18 +00:00
|
|
|
|
2021-09-29 06:27:18 +00:00
|
|
|
expect(error).toBeDefined();
|
2019-09-26 07:05:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should update the sale concept', async() => {
|
2021-09-29 06:27:18 +00:00
|
|
|
const tx = await models.Sale.beginTransaction({});
|
2019-09-26 07:05:18 +00:00
|
|
|
|
2021-09-29 06:27:18 +00:00
|
|
|
try {
|
|
|
|
const options = {transaction: tx};
|
|
|
|
|
|
|
|
const newConcept = 'I am the new concept';
|
|
|
|
|
|
|
|
let response = await models.Sale.updateConcept(ctx, saleId, newConcept, options);
|
2019-09-26 07:05:18 +00:00
|
|
|
|
2021-09-29 06:27:18 +00:00
|
|
|
expect(response.concept).toEqual(newConcept);
|
|
|
|
|
|
|
|
await tx.rollback();
|
|
|
|
} catch (e) {
|
|
|
|
await tx.rollback();
|
|
|
|
throw e;
|
|
|
|
}
|
2019-09-26 07:05:18 +00:00
|
|
|
});
|
|
|
|
});
|