43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
const models = require('vn-loopback/server/server').models;
|
|
const LoopBackContext = require('loopback-context');
|
|
|
|
describe('setSaleQuantity()', () => {
|
|
beforeAll(async() => {
|
|
const activeCtx = {
|
|
accessToken: {userId: 9},
|
|
http: {
|
|
req: {
|
|
headers: {origin: 'http://localhost'}
|
|
}
|
|
}
|
|
};
|
|
spyOn(LoopBackContext, 'getCurrentContext').and.returnValue({
|
|
active: activeCtx
|
|
});
|
|
});
|
|
|
|
it('should change quantity sale', async() => {
|
|
const tx = await models.Ticket.beginTransaction({});
|
|
|
|
try {
|
|
const options = {transaction: tx};
|
|
|
|
const saleId = 30;
|
|
const newQuantity = 10;
|
|
|
|
const originalSale = await models.Sale.findById(saleId, null, options);
|
|
|
|
await models.Collection.setSaleQuantity(saleId, newQuantity, options);
|
|
const updateSale = await models.Sale.findById(saleId, null, options);
|
|
|
|
expect(updateSale.quantity).not.toEqual(originalSale.quantity);
|
|
expect(updateSale.quantity).toEqual(newQuantity);
|
|
|
|
await tx.rollback();
|
|
} catch (e) {
|
|
await tx.rollback();
|
|
throw e;
|
|
}
|
|
});
|
|
});
|