salix/modules/travel/front/create/index.spec.js

89 lines
3.2 KiB
JavaScript
Raw Normal View History

2019-12-09 11:15:19 +00:00
import './index';
import watcher from 'core/mocks/watcher';
describe('Travel Component vnTravelCreate', () => {
let $scope;
let $state;
let controller;
let $httpBackend;
2019-12-09 11:15:19 +00:00
beforeEach(ngModule('travel'));
beforeEach(inject(($componentController, $rootScope, _$state_, _$httpBackend_) => {
$httpBackend = _$httpBackend_;
2019-12-09 11:15:19 +00:00
$scope = $rootScope.$new();
$state = _$state_;
$scope.watcher = watcher;
2020-03-18 11:55:22 +00:00
const $element = angular.element('<vn-travel-create></vn-travel-create>');
2019-12-09 11:15:19 +00:00
controller = $componentController('vnTravelCreate', {$element, $scope});
}));
describe('onSubmit()', () => {
it(`should call submit() on the watcher then expect a callback`, () => {
2020-02-26 12:22:52 +00:00
jest.spyOn($state, 'go');
2019-12-09 11:15:19 +00:00
controller.onSubmit();
2020-12-28 13:53:26 +00:00
expect(controller.$state.go).toHaveBeenCalledWith('travel.card.basicData', {id: 1234});
2019-12-09 11:15:19 +00:00
});
});
2020-03-10 13:09:26 +00:00
describe('$onChanges()', () => {
2020-03-18 11:55:22 +00:00
it('should update the travel data when $params.q is defined', () => {
controller.$params = {q: '{"ref": 1,"agencyModeFk": 1}'};
2020-03-11 08:17:14 +00:00
const params = {q: '{"ref": 1, "agencyModeFk": 1}'};
const json = JSON.parse(params.q);
2020-03-10 13:09:26 +00:00
controller.$onChanges();
2020-03-11 11:03:55 +00:00
expect(controller.travel).toEqual(json);
2020-03-10 13:09:26 +00:00
});
});
2021-02-23 13:54:07 +00:00
describe('onShippedChange()', () => {
2021-02-11 07:32:16 +00:00
it(`should do nothing if there's no agencyModeFk in the travel.`, () => {
controller.travel = {};
controller.onShippedChange();
2021-02-11 07:32:16 +00:00
expect(controller.travel.landed).toBeUndefined();
expect(controller.travel.warehouseInFk).toBeUndefined();
expect(controller.travel.warehouseOutFk).toBeUndefined();
});
2021-02-24 10:32:31 +00:00
it(`should do nothing if there's no response data.`, () => {
2021-02-22 08:53:03 +00:00
controller.travel = {agencyModeFk: 4};
const tomorrow = new Date();
const query = `travels/getAverageDays?agencyModeFk=${controller.travel.agencyModeFk}`;
2021-02-24 10:32:31 +00:00
$httpBackend.expectGET(query).respond(undefined);
2021-02-22 08:53:03 +00:00
controller.onShippedChange(tomorrow);
$httpBackend.flush();
2021-02-24 10:32:31 +00:00
expect(controller.travel.warehouseInFk).toBeUndefined();
expect(controller.travel.warehouseOutFk).toBeUndefined();
expect(controller.travel.dayDuration).toBeUndefined();
2021-02-22 08:53:03 +00:00
});
2021-02-11 07:32:16 +00:00
it(`should fill the fields when it's selected a date and agency.`, () => {
controller.travel = {agencyModeFk: 1};
const tomorrow = new Date();
2021-02-17 10:01:50 +00:00
tomorrow.setDate(tomorrow.getDate() + 9);
2021-02-24 10:32:31 +00:00
const expectedResponse = {
2021-02-17 10:01:50 +00:00
id: 8,
dayDuration: 9,
warehouseInFk: 5,
warehouseOutFk: 1
2021-02-24 10:32:31 +00:00
};
2021-02-12 10:27:24 +00:00
const query = `travels/getAverageDays?agencyModeFk=${controller.travel.agencyModeFk}`;
2021-02-11 07:32:16 +00:00
$httpBackend.expectGET(query).respond(expectedResponse);
controller.onShippedChange(tomorrow);
$httpBackend.flush();
2021-02-24 10:32:31 +00:00
expect(controller.travel.warehouseInFk).toEqual(expectedResponse.warehouseInFk);
expect(controller.travel.warehouseOutFk).toEqual(expectedResponse.warehouseOutFk);
});
});
2019-12-09 11:15:19 +00:00
});