51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
const app = require('vn-loopback/server/server');
|
|
|
|
describe('agency getShipped()', () => {
|
|
it('should return a shipment date', async() => {
|
|
const landed = new Date();
|
|
landed.setDate(landed.getDate() + 1);
|
|
const addressFk = 121;
|
|
const agencyModeFk = 7;
|
|
const warehouseFk = 1;
|
|
|
|
const tx = await app.models.Agency.beginTransaction({});
|
|
|
|
try {
|
|
const options = {transaction: tx};
|
|
|
|
const result = await app.models.Agency.getShipped(landed, addressFk, agencyModeFk, warehouseFk, options);
|
|
|
|
expect(result).toBeDefined();
|
|
|
|
await tx.rollback();
|
|
} catch (e) {
|
|
await tx.rollback();
|
|
throw e;
|
|
}
|
|
});
|
|
|
|
it('should not return a shipment date', async() => {
|
|
const newDate = new Date();
|
|
newDate.setMonth(newDate.getMonth() - 1);
|
|
const landed = newDate;
|
|
const addressFk = 121;
|
|
const agencyModeFk = 7;
|
|
const warehouseFk = 1;
|
|
|
|
const tx = await app.models.Agency.beginTransaction({});
|
|
|
|
try {
|
|
const options = {transaction: tx};
|
|
|
|
const result = await app.models.Agency.getShipped(landed, addressFk, agencyModeFk, warehouseFk, options);
|
|
|
|
expect(result).toBeUndefined();
|
|
|
|
await tx.rollback();
|
|
} catch (e) {
|
|
await tx.rollback();
|
|
throw e;
|
|
}
|
|
});
|
|
});
|