salix/modules/ticket/front/dms/edit/index.spec.js

82 lines
3.2 KiB
JavaScript
Raw Normal View History

2019-07-15 09:40:11 +00:00
import './index';
describe('Ticket', () => {
describe('Component vnTicketDmsEdit', () => {
2019-07-15 09:40:11 +00:00
let controller;
let $scope;
let $httpBackend;
beforeEach(ngModule('ticket'));
2019-07-15 09:40:11 +00:00
2020-07-23 14:46:16 +00:00
beforeEach(inject(($componentController, $rootScope, _$httpBackend_) => {
2019-07-15 09:40:11 +00:00
$scope = $rootScope.$new();
$httpBackend = _$httpBackend_;
2020-03-18 07:35:59 +00:00
const $element = angular.element('<vn-ticket-dms-edit></vn-ticket-dms-edit>');
controller = $componentController('vnTicketDmsEdit', {$element});
controller._ticket = {id: 1, ticketFk: 16};
2020-03-18 07:35:59 +00:00
controller.$params = {dmsId: 1};
2019-07-15 09:40:11 +00:00
}));
describe('ticket() setter', () => {
it('should set the ticket data and then call setDefaultParams() and getAllowedContentTypes()', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller, 'setDefaultParams');
jest.spyOn(controller, 'getAllowedContentTypes');
controller._ticket = undefined;
controller.ticket = {
id: 15
2019-07-15 09:40:11 +00:00
};
expect(controller.setDefaultParams).toHaveBeenCalledWith();
expect(controller.ticket).toBeDefined();
expect(controller.getAllowedContentTypes).toHaveBeenCalledWith();
2019-07-15 09:40:11 +00:00
});
});
describe('setDefaultParams()', () => {
it('should perform a GET query and define the dms property on controller', () => {
const dmsId = 1;
const expectedResponse = {
reference: 101,
warehouseFk: 1,
companyFk: 442,
dmsTypeFk: 14,
description: 'Test',
hasFile: false,
hasFileAttached: false
};
$httpBackend.expect('GET', `Dms/${dmsId}`).respond(expectedResponse);
2019-07-15 09:40:11 +00:00
controller.setDefaultParams();
$httpBackend.flush();
expect(controller.dms).toBeDefined();
expect(controller.dms.reference).toEqual(101);
expect(controller.dms.dmsTypeId).toEqual(14);
2019-07-15 09:40:11 +00:00
});
});
describe('onFileChange()', () => {
2019-07-16 12:12:58 +00:00
it('should set dms hasFileAttached property to true if has any files', () => {
2019-07-15 09:40:11 +00:00
const files = [{id: 1, name: 'MyFile'}];
controller.dms = {hasFileAttached: false};
2019-07-15 09:40:11 +00:00
controller.onFileChange(files);
$scope.$apply();
2019-07-16 12:12:58 +00:00
expect(controller.dms.hasFileAttached).toBeTruthy();
2019-07-15 09:40:11 +00:00
});
});
describe('getAllowedContentTypes()', () => {
it('should make an HTTP GET request to get the allowed content types', () => {
const expectedResponse = ['image/png', 'image/jpg'];
2020-12-18 17:02:41 +00:00
$httpBackend.expect('GET', `DmsContainers/allowedContentTypes`).respond(expectedResponse);
controller.getAllowedContentTypes();
$httpBackend.flush();
expect(controller.allowedContentTypes).toBeDefined();
expect(controller.allowedContentTypes).toEqual('image/png, image/jpg');
});
});
2019-07-15 09:40:11 +00:00
});
});