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

97 lines
4.3 KiB
JavaScript
Raw Normal View History

2020-01-17 07:43:10 +00:00
import './index';
describe('Ticket', () => {
2020-01-22 08:04:26 +00:00
describe('Component vnTravelThermographCreate', () => {
2020-01-17 07:43:10 +00:00
let controller;
let $httpBackend;
let $httpParamSerializer;
2020-01-22 08:04:26 +00:00
const travelId = 3;
const dmsTypeId = 5;
2020-01-17 07:43:10 +00:00
2020-01-22 08:04:26 +00:00
beforeEach(ngModule('travel'));
2020-01-17 07:43:10 +00:00
2020-03-18 11:55:22 +00:00
beforeEach(angular.mock.inject(($componentController, _$httpBackend_, _$httpParamSerializer_) => {
2020-01-17 07:43:10 +00:00
$httpBackend = _$httpBackend_;
$httpParamSerializer = _$httpParamSerializer_;
2020-03-18 11:55:22 +00:00
const $element = angular.element('<vn-travel-thermograph-create></vn-travel-thermograph-create>');
controller = $componentController('vnTravelThermographCreate', {$element});
2020-01-22 08:04:26 +00:00
controller._travel = {
id: travelId
2020-01-17 07:43:10 +00:00
};
}));
2020-01-22 08:04:26 +00:00
describe('travel() setter', () => {
it('should set the travel data and then call setDefaultParams() and getAllowedContentTypes()', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'setDefaultParams');
jest.spyOn(controller, 'getAllowedContentTypes');
2020-01-22 08:04:26 +00:00
controller.travel = {
id: travelId
2020-01-17 07:43:10 +00:00
};
2020-01-22 08:04:26 +00:00
expect(controller.travel).toBeDefined();
2020-01-17 07:43:10 +00:00
expect(controller.setDefaultParams).toHaveBeenCalledWith();
expect(controller.getAllowedContentTypes).toHaveBeenCalledWith();
});
});
describe('setDefaultParams()', () => {
it('should perform a GET query and define the dms property on controller', () => {
const params = {filter: {
2020-01-22 08:04:26 +00:00
where: {code: 'miscellaneous'}
2020-01-17 07:43:10 +00:00
}};
let serializedParams = $httpParamSerializer(params);
2020-01-22 08:04:26 +00:00
$httpBackend.when('GET', `DmsTypes/findOne?${serializedParams}`).respond({id: dmsTypeId, code: 'miscellaneous'});
2020-01-17 07:43:10 +00:00
$httpBackend.expect('GET', `DmsTypes/findOne?${serializedParams}`);
controller.setDefaultParams();
$httpBackend.flush();
expect(controller.dms).toBeDefined();
2020-01-22 08:04:26 +00:00
expect(controller.dms.reference).toEqual(travelId);
expect(controller.dms.dmsTypeId).toEqual(dmsTypeId);
2020-01-17 07:43:10 +00:00
});
});
describe('getAllowedContentTypes()', () => {
it('should make an HTTP GET request to get the allowed content types', () => {
2020-01-22 08:04:26 +00:00
const expectedResponse = ['application/pdf', 'image/png', 'image/jpg'];
$httpBackend.when('GET', `TravelThermographs/allowedContentTypes`).respond(expectedResponse);
$httpBackend.expect('GET', `TravelThermographs/allowedContentTypes`);
2020-01-17 07:43:10 +00:00
controller.getAllowedContentTypes();
$httpBackend.flush();
expect(controller.allowedContentTypes).toBeDefined();
2020-01-22 08:04:26 +00:00
expect(controller.allowedContentTypes).toEqual('application/pdf, image/png, image/jpg');
2020-01-17 07:43:10 +00:00
});
});
describe('onAddThermographClick()', () => {
it('should call the show() function of the create thermograph dialog', () => {
controller.$.newThermographDialog = {show: jest.fn()};
controller.$.modelsModel = {refresh: jest.fn()};
controller.$.temperaturesModel = {refresh: jest.fn()};
// jest.spyOn(controller.$.newThermographDialog, 'show');
// jest.spyOn(controller.$.modelsModel, 'refresh');
// jest.spyOn(controller.$.temperaturesModel, 'refresh');
const event = new Event('click');
jest.spyOn(event, 'preventDefault');
controller.onAddThermographClick(event);
expect(event.preventDefault).toHaveBeenCalledTimes(1);
expect(controller.$.newThermographDialog.show).toHaveBeenCalledTimes(1);
});
});
describe('onNewThermographAccept()', () => {
it('should set the created thermograph id on to the controller for the autocomplete to use it', () => {
const response = {id: 'the created id'};
$httpBackend.when('POST', `Thermographs/createThermograph`).respond(response);
controller.onNewThermographAccept();
$httpBackend.flush();
expect(controller.dms.thermographId).toEqual(response.id);
});
});
2020-01-17 07:43:10 +00:00
});
});