import './index.js'; describe('Ticket', () => { describe('Component vnTicketBasicDataStepOne', () => { let controller; let $httpBackend; let $httpParamSerializer; beforeEach(ngModule('ticket')); beforeEach(angular.mock.inject(($componentController, _$httpBackend_, _$httpParamSerializer_) => { $httpBackend = _$httpBackend_; $httpParamSerializer = _$httpParamSerializer_; const $element = angular.element(''); controller = $componentController('vnTicketBasicDataStepOne', {$element}); controller.ticket = { addressFk: 121, agencyModeFk: 7, warehouseFk: 1 }; })); describe('ticket() setter', () => { it('should set ticket property and call clientAddressesList() method', () => { jest.spyOn(controller, 'clientAddressesList'); controller.ticket = {id: 1, clientFk: 101}; expect(controller.clientAddressesList).toHaveBeenCalledWith(101); }); it(`should not call clientAddressesList() method as the ticket doesn't have an ID`, () => { jest.spyOn(controller, 'clientAddressesList'); controller.ticket = {}; expect(controller.clientAddressesList).not.toHaveBeenCalledWith(); }); }); describe('clientId() getter', () => { it('should return the clientFk property', () => { controller.ticket = {id: 1, clientFk: 102}; expect(controller.clientId).toEqual(102); }); }); describe('clientId() setter', () => { it('should set clientId property and call clientAddressesList() method ', () => { jest.spyOn(controller, 'clientAddressesList'); controller.ticket = {id: 1, clientId: 101}; controller.clientId = 102; expect(controller.clientAddressesList).toHaveBeenCalledWith(102); }); }); 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 ', () => { jest.spyOn(controller, 'getShipped'); controller.ticket.addressFk = 99; controller.addressId = 100; const landed = new Date(); const expectedResult = { landed: landed, addressFk: 100, agencyModeFk: 7, warehouseFk: 1 }; controller.landed = landed; expect(controller.getShipped).toHaveBeenCalledWith(expectedResult); 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 ', () => { jest.spyOn(controller, 'getShipped'); controller.ticket.warehouseId = 1; controller.warehouseId = 2; const landed = new Date(); const expectedResult = { landed: landed, addressFk: 121, agencyModeFk: 7, warehouseFk: 2 }; controller.landed = landed; expect(controller.getShipped).toHaveBeenCalledWith(expectedResult); 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); }); }); describe('shipped() setter', () => { it('should set shipped property and call getLanded() method ', () => { jest.spyOn(controller, 'getLanded'); const shipped = new Date(); const expectedResult = { shipped: shipped, addressFk: 121, agencyModeFk: 7, showExpiredZones: false, warehouseFk: 1 }; controller.shipped = shipped; expect(controller.getLanded).toHaveBeenCalledWith(expectedResult); }); }); 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', () => { it('should set shipped property and call getShipped() method ', () => { jest.spyOn(controller, 'getShipped'); const landed = new Date(); const expectedResult = { landed: landed, addressFk: 121, agencyModeFk: 7, warehouseFk: 1 }; controller.landed = landed; expect(controller.getShipped).toHaveBeenCalledWith(expectedResult); }); }); describe('agencyModeId() getter', () => { it('should return the agencyModeFk property', () => { controller.ticket.agencyModeFk = 66; expect(controller.agencyModeId).toEqual(66); }); }); describe('agencyModeId() setter', () => { it('should set agencyModeId property and call getLanded() method', () => { jest.spyOn(controller, 'getLanded'); const shipped = new Date(); const agencyModeId = 8; const expectedResult = { shipped: shipped, addressFk: 121, agencyModeFk: agencyModeId, warehouseFk: 1, showExpiredZones: false, }; controller.ticket.shipped = shipped; controller.agencyModeId = 8; expect(controller.getLanded).toHaveBeenCalledWith(expectedResult); }); it('should do nothing if attempting to set the same agencyMode id', () => { jest.spyOn(controller, 'getShipped'); const landed = new Date(); const agencyModeId = 7; const expectedResult = { landed: landed, addressFk: 121, agencyModeFk: agencyModeId, warehouseFk: 1 }; controller.ticket.landed = landed; controller.agencyModeId = 7; expect(controller.getShipped).not.toHaveBeenCalledWith(expectedResult); }); }); 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; jest.spyOn(controller, 'onChangeZone'); controller.ticket = {id: 1}; controller.zoneId = 5; expect(controller.onChangeZone).toHaveBeenCalledWith(zoneId); }); it('should do nothing if attempting to set the same zone id', () => { const zoneId = 5; jest.spyOn(controller, 'onChangeZone'); controller.ticket = {id: 1, zoneFk: zoneId}; controller.zoneId = zoneId; expect(controller.onChangeZone).not.toHaveBeenCalledWith(zoneId); }); }); 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.when('GET', `Clients/${clientId}/addresses?filter=${filter}`).respond(200); $httpBackend.expect('GET', `Clients/${clientId}/addresses?filter=${filter}`); controller.clientAddressesList(clientId); $httpBackend.flush(); }); }); describe('getClientDefaultAddress()', () => { it('should return the default address from choosed client', async() => { const clientId = 102; $httpBackend.when('GET', `Clients/${clientId}`).respond(200); $httpBackend.expect('GET', `Clients/${clientId}`); controller.getClientDefaultAddress(clientId); $httpBackend.flush(); }); }); describe('onChangeZone()', () => { it('should return an available zone', async() => { const zoneId = 5; const agencyModeFk = 8; $httpBackend.when('GET', `Zones/${zoneId}`).respond(200, {agencyModeFk}); $httpBackend.expect('GET', `Zones/${zoneId}`); controller.onChangeZone(zoneId); $httpBackend.flush(); expect(controller.ticket.agencyModeFk).toEqual(agencyModeFk); }); }); describe('isFormInvalid()', () => { it('should check if all form fields are valid', () => { controller.ticket = { clientFk: 1, addressFk: 121, zoneFk: 3, agencyModeFk: 1, companyFk: 442, warehouseFk: 1, shipped: new Date(), landed: new Date() }; 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 }; let response = {error: new Error('NO_AGENCY_AVAILABLE')}; $httpBackend.whenPOST(`tickets/1/priceDifference`).respond(400, response); $httpBackend.expectPOST(`tickets/1/priceDifference`); controller.onStepChange(); $httpBackend.flush(); }); }); 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.when('GET', `Agencies/getLanded?${serializedParams}`).respond(200, expectedResult); $httpBackend.expect('GET', `Agencies/getLanded?${serializedParams}`); 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.when('GET', `Agencies/getShipped?${serializedParams}`).respond(200, expectedResult); $httpBackend.expect('GET', `Agencies/getShipped?${serializedParams}`); controller.getShipped(params); $httpBackend.flush(); expect(controller.shipped).toEqual(expectedResult.shipped); expect(controller.landed).toEqual(landed); }); }); }); });