salix/modules/zone/front/summary/index.spec.js

55 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-11-25 07:35:34 +00:00
import './index';
describe('component vnZoneSummary', () => {
let $scope;
let controller;
let $httpBackend;
let $httpParamSerializer;
2020-02-25 07:08:13 +00:00
beforeEach(ngModule('zone'));
2019-11-25 07:35:34 +00:00
beforeEach(angular.mock.inject(($componentController, $rootScope, _$httpBackend_, _$httpParamSerializer_) => {
$httpBackend = _$httpBackend_;
$httpParamSerializer = _$httpParamSerializer_;
$scope = $rootScope.$new();
2020-03-18 11:55:22 +00:00
const $element = angular.element(`<vn-zone-summary></vn-zone-summary>`);
2019-11-25 07:35:34 +00:00
controller = $componentController('vnZoneSummary', {$element, $scope});
}));
describe('zone setter', () => {
it('should set the zone and then call both getSummary() and getWarehouses()', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'getSummary');
jest.spyOn(controller, 'getWarehouses');
2019-11-25 07:35:34 +00:00
controller.zone = {id: 1};
expect(controller.getSummary).toHaveBeenCalledWith();
expect(controller.getWarehouses).toHaveBeenCalledWith();
});
});
describe('getSummary()', () => {
it('should perform a get and then store data on the controller', () => {
controller._zone = {id: 1};
let params = {
filter: {
include: {
relation: 'agencyMode',
fields: ['name']
},
where: {
id: controller._zone.id
}
}
};
const serializedParams = $httpParamSerializer(params);
const query = `Zones/findOne?${serializedParams}`;
$httpBackend.expectGET(query).respond({id: 1});
controller.getSummary();
$httpBackend.flush();
expect(controller.summary).toBeDefined();
});
});
});