salix/modules/ticket/front/basic-data/step-one/index.spec.js

384 lines
14 KiB
JavaScript
Raw Normal View History

import './index.js';
2018-08-09 12:42:02 +00:00
describe('Ticket', () => {
describe('Component vnTicketBasicDataStepOne', () => {
let controller;
let $httpBackend;
2019-10-04 07:28:09 +00:00
let $httpParamSerializer;
beforeEach(ngModule('ticket'));
2020-07-23 14:46:16 +00:00
beforeEach(inject(($componentController, _$httpBackend_, _$httpParamSerializer_) => {
$httpBackend = _$httpBackend_;
2019-10-04 07:28:09 +00:00
$httpParamSerializer = _$httpParamSerializer_;
2020-03-18 07:35:59 +00:00
const $element = angular.element('<vn-ticket-basic-data-step-one></vn-ticket-basic-data-step-one>');
controller = $componentController('vnTicketBasicDataStepOne', {$element});
2019-09-04 06:04:31 +00:00
controller.ticket = {
addressFk: 121,
agencyModeFk: 7,
warehouseFk: 1
};
}));
describe('ticket() setter', () => {
2020-03-06 07:38:03 +00:00
it('should set ticket property and call clientAddressesList() method', () => {
jest.spyOn(controller, 'clientAddressesList');
controller.ticket = {id: 1, clientFk: 101};
2020-03-06 07:38:03 +00:00
expect(controller.clientAddressesList).toHaveBeenCalledWith(101);
});
2019-08-20 12:18:32 +00:00
2020-03-06 07:38:03 +00:00
it(`should not call clientAddressesList() method as the ticket doesn't have an ID`, () => {
jest.spyOn(controller, 'clientAddressesList');
2019-08-20 12:18:32 +00:00
controller.ticket = {};
2020-03-06 07:38:03 +00:00
expect(controller.clientAddressesList).not.toHaveBeenCalledWith();
2019-08-20 12:18:32 +00:00
});
});
2019-10-04 07:28:09 +00:00
describe('clientId() getter', () => {
it('should return the clientFk property', () => {
controller.ticket = {id: 1, clientFk: 102};
expect(controller.clientId).toEqual(102);
});
});
describe('clientId() setter', () => {
2020-03-06 07:38:03 +00:00
it('should set clientId property and call clientAddressesList() method ', () => {
jest.spyOn(controller, 'clientAddressesList');
controller.ticket = {id: 1, clientId: 101};
controller.clientId = 102;
2020-03-06 07:38:03 +00:00
expect(controller.clientAddressesList).toHaveBeenCalledWith(102);
});
});
2019-10-04 07:28:09 +00:00
describe('adressId() getter', () => {
it('should return the addressFk property', () => {
controller.ticket = {id: 1, addressFk: 99};
expect(controller.addressId).toEqual(99);
});
});
describe('addressId() setter', () => {
it('should set addressId property and call getShipped() method ', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'getShipped');
2019-10-04 07:28:09 +00:00
controller.ticket.addressFk = 99;
controller.addressId = 100;
const landed = new Date();
2019-11-18 15:37:03 +00:00
const expectedResult = {
2019-10-04 07:28:09 +00:00
landed: landed,
addressFk: 100,
2019-11-18 15:03:10 +00:00
agencyModeFk: 7,
warehouseFk: 1
2019-10-04 07:28:09 +00:00
};
controller.landed = landed;
2019-11-18 15:37:03 +00:00
expect(controller.getShipped).toHaveBeenCalledWith(expectedResult);
2019-10-04 07:28:09 +00:00
expect(controller.ticket.addressFk).toEqual(100);
});
});
describe('warehouseId() getter', () => {
it('should return the warehouseId property', () => {
controller.ticket.warehouseFk = 2;
expect(controller.warehouseId).toEqual(2);
});
});
describe('warehouseId() setter', () => {
it('should set warehouseId property and call getShipped() method ', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'getShipped');
2019-10-04 07:28:09 +00:00
controller.ticket.warehouseId = 1;
controller.warehouseId = 2;
expect(controller.ticket.warehouseFk).toEqual(2);
});
});
describe('shipped() getter', () => {
it('should return the shipped property', () => {
const shipped = new Date();
controller.ticket.shipped = shipped;
expect(controller.shipped).toEqual(shipped);
});
});
2018-08-16 11:12:18 +00:00
describe('shipped() setter', () => {
2019-09-04 06:04:31 +00:00
it('should set shipped property and call getLanded() method ', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'getLanded');
2019-09-04 06:04:31 +00:00
const shipped = new Date();
2019-11-18 15:37:03 +00:00
const expectedResult = {
2019-09-04 06:04:31 +00:00
shipped: shipped,
addressFk: 121,
2019-11-18 15:03:10 +00:00
agencyModeFk: 7,
warehouseFk: 1
2019-09-04 06:04:31 +00:00
};
2018-08-22 10:55:13 +00:00
controller.shipped = shipped;
2018-08-16 11:12:18 +00:00
2019-11-18 15:37:03 +00:00
expect(controller.getLanded).toHaveBeenCalledWith(expectedResult);
2018-08-16 11:12:18 +00:00
});
});
2019-10-04 07:28:09 +00:00
describe('landed() getter', () => {
it('should return the landed property', () => {
const landed = new Date();
controller.ticket.landed = landed;
expect(controller.landed).toEqual(landed);
});
});
describe('landed() setter', () => {
2019-09-04 06:04:31 +00:00
it('should set shipped property and call getShipped() method ', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'getShipped');
2019-09-04 06:04:31 +00:00
const landed = new Date();
2019-11-18 15:37:03 +00:00
const expectedResult = {
2019-09-04 06:04:31 +00:00
landed: landed,
addressFk: 121,
2019-11-18 15:03:10 +00:00
agencyModeFk: 7,
warehouseFk: 1
2019-09-04 06:04:31 +00:00
};
2018-08-22 10:55:13 +00:00
controller.landed = landed;
2019-11-18 15:37:03 +00:00
expect(controller.getShipped).toHaveBeenCalledWith(expectedResult);
});
});
2019-10-04 07:28:09 +00:00
describe('agencyModeId() getter', () => {
it('should return the agencyModeFk property', () => {
controller.ticket.agencyModeFk = 66;
expect(controller.agencyModeId).toEqual(66);
});
});
describe('agencyModeId() setter', () => {
2019-10-04 07:28:09 +00:00
it('should set agencyModeId property and call getLanded() method', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'getLanded');
2020-09-23 12:20:41 +00:00
controller.$.agencyMode = {selection: {warehouseFk: 1}};
2019-10-04 07:28:09 +00:00
const shipped = new Date();
const agencyModeId = 8;
2019-11-18 15:37:03 +00:00
const expectedResult = {
2019-10-04 07:28:09 +00:00
shipped: shipped,
2019-09-04 06:04:31 +00:00
addressFk: 121,
2019-11-18 15:03:10 +00:00
agencyModeFk: agencyModeId,
2020-09-23 09:21:25 +00:00
warehouseFk: 1
2019-09-04 06:04:31 +00:00
};
2019-10-04 07:28:09 +00:00
controller.ticket.shipped = shipped;
controller.agencyModeId = 8;
2019-11-18 15:37:03 +00:00
expect(controller.getLanded).toHaveBeenCalledWith(expectedResult);
});
2019-08-20 12:18:32 +00:00
it('should do nothing if attempting to set the same agencyMode id', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'getShipped');
2019-09-04 06:04:31 +00:00
const landed = new Date();
const agencyModeId = 7;
2019-11-18 15:37:03 +00:00
const expectedResult = {
2019-09-04 06:04:31 +00:00
landed: landed,
addressFk: 121,
2019-11-18 15:03:10 +00:00
agencyModeFk: agencyModeId,
warehouseFk: 1
2019-09-04 06:04:31 +00:00
};
controller.ticket.landed = landed;
controller.agencyModeId = 7;
2019-08-20 12:18:32 +00:00
2019-11-18 15:37:03 +00:00
expect(controller.getShipped).not.toHaveBeenCalledWith(expectedResult);
2019-08-20 12:18:32 +00:00
});
});
2019-10-04 07:28:09 +00:00
describe('zoneId() getter', () => {
it('should return the zoneFk property', () => {
controller.ticket.zoneFk = 10;
expect(controller.zoneId).toEqual(10);
});
});
describe('zoneId() setter', () => {
it('should set zoneId property and call onChangeZone() method ', () => {
const zoneId = 5;
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'onChangeZone');
controller.ticket = {id: 1};
controller.zoneId = 5;
expect(controller.onChangeZone).toHaveBeenCalledWith(zoneId);
});
2019-08-20 12:18:32 +00:00
it('should do nothing if attempting to set the same zone id', () => {
const zoneId = 5;
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'onChangeZone');
2019-08-20 12:18:32 +00:00
controller.ticket = {id: 1, zoneFk: zoneId};
controller.zoneId = zoneId;
expect(controller.onChangeZone).not.toHaveBeenCalledWith(zoneId);
});
});
2020-03-06 07:38:03 +00:00
describe('clientAddressesList()', () => {
it('should return a list of addresses from choosed client', async() => {
const clientId = 102;
let filter = {
include: [
{
relation: 'province',
scope: {
fields: ['name']
}
},
{
relation: 'agencyMode',
scope: {
fields: ['name']
}
}
]
};
filter = encodeURIComponent(JSON.stringify(filter));
$httpBackend.expect('GET', `Clients/${clientId}/addresses?filter=${filter}`).respond(200);
2020-03-06 07:38:03 +00:00
controller.clientAddressesList(clientId);
$httpBackend.flush();
});
});
describe('getClientDefaultAddress()', () => {
it('should return the default address from choosed client', async() => {
const clientId = 102;
$httpBackend.expect('GET', `Clients/${clientId}`).respond(200);
2020-03-06 07:38:03 +00:00
controller.getClientDefaultAddress(clientId);
$httpBackend.flush();
});
});
describe('onChangeZone()', () => {
it('should return an available zone', async() => {
const zoneId = 5;
2019-11-12 07:51:50 +00:00
const agencyModeFk = 8;
$httpBackend.expect('GET', `Zones/${zoneId}`).respond(200, {agencyModeFk});
controller.onChangeZone(zoneId);
$httpBackend.flush();
2019-11-12 07:51:50 +00:00
expect(controller.ticket.agencyModeFk).toEqual(agencyModeFk);
});
});
describe('isFormInvalid()', () => {
it('should check if all form fields are valid', () => {
controller.ticket = {
2018-05-22 06:14:16 +00:00
clientFk: 1,
addressFk: 121,
zoneFk: 3,
2018-05-22 06:14:16 +00:00
agencyModeFk: 1,
companyFk: 442,
warehouseFk: 1,
shipped: new Date(),
landed: new Date()
};
2018-05-22 06:14:16 +00:00
expect(controller.isFormInvalid()).toBeFalsy();
});
});
describe('onStepChange()', () => {
it('should call onStepChange method and return a NO_AGENCY_AVAILABLE signal error', async() => {
let landed = new Date();
landed.setHours(0, 0, 0, 0);
controller._ticket = {
id: 1,
clientFk: 1,
addressFk: 121,
zoneFk: 3,
agencyModeFk: 1,
companyFk: 442,
warehouseFk: 1,
shipped: new Date(),
landed: landed
2018-05-22 06:14:16 +00:00
};
let response = {error: new Error('NO_AGENCY_AVAILABLE')};
$httpBackend.whenPOST(`tickets/1/priceDifference`).respond(400, response);
$httpBackend.expectPOST(`tickets/1/priceDifference`);
controller.onStepChange();
2018-05-22 06:14:16 +00:00
$httpBackend.flush();
});
});
2019-10-04 07:28:09 +00:00
describe('getLanded()', () => {
it('should return an available landed date', async() => {
const shipped = new Date();
const expectedResult = {landed: new Date()};
const params = {
shipped: shipped,
addressFk: 121,
agencyModeFk: 7,
warehouseFk: 1
};
const serializedParams = $httpParamSerializer(params);
$httpBackend.expect('GET', `Agencies/getLanded?${serializedParams}`).respond(200, expectedResult);
2019-10-04 07:28:09 +00:00
controller.getLanded(params);
$httpBackend.flush();
expect(controller.shipped).toEqual(shipped);
expect(controller.landed).toEqual(expectedResult.landed);
});
});
describe('getShipped()', () => {
it('should return an available shipped date', async() => {
const landed = new Date();
const expectedResult = {shipped: new Date()};
const params = {
landed: landed,
addressFk: 121,
agencyModeFk: 7,
warehouseFk: 1
};
const serializedParams = $httpParamSerializer(params);
$httpBackend.expect('GET', `Agencies/getShipped?${serializedParams}`).respond(200, expectedResult);
2019-10-04 07:28:09 +00:00
controller.getShipped(params);
$httpBackend.flush();
expect(controller.shipped).toEqual(expectedResult.shipped);
expect(controller.landed).toEqual(landed);
});
});
2020-09-23 09:21:25 +00:00
describe('zoneWhere() getter', () => {
it('should return an object containing filter properties', async() => {
const shipped = new Date();
controller.ticket.shipped = shipped;
const expectedResult = {
addressFk: 121,
agencyModeFk: 7,
shipped: shipped,
warehouseFk: 1
};
const result = controller.zoneWhere();
expect(result).toEqual(expect.objectContaining(expectedResult));
});
});
describe('agencyModeWhere() getter', () => {
it('should return an object containing the warehouseFk property', async() => {
const expectedResult = {warehouseFk: 1};
const result = controller.agencyModeWhere();
expect(result).toEqual(expect.objectContaining(expectedResult));
});
});
});
});