import './index'; describe('Ticket', () => { describe('Component vnTicketDmsCreate', () => { let controller; let $scope; let $httpBackend; let $httpParamSerializer; beforeEach(ngModule('ticket')); beforeEach(inject(($componentController, $rootScope, _$httpBackend_, _$httpParamSerializer_) => { $scope = $rootScope.$new(); $httpBackend = _$httpBackend_; $httpParamSerializer = _$httpParamSerializer_; const $element = angular.element(''); controller = $componentController('vnTicketDmsCreate', {$element}); controller._ticket = { id: 15, client: {id: 1101, name: 'Bruce wayne'}, warehouseFk: 1, companyFk: 1 }; })); describe('client() setter', () => { it('should set the ticket data and then call setDefaultParams() and getAllowedContentTypes()', () => { jest.spyOn(controller, 'setDefaultParams'); jest.spyOn(controller, 'getAllowedContentTypes'); controller.ticket = { id: 15, name: 'Bruce wayne' }; expect(controller.ticket).toBeDefined(); 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: { where: {code: 'ticket'} }}; let serializedParams = $httpParamSerializer(params); $httpBackend.expect('GET', `DmsTypes/findOne?${serializedParams}`).respond({id: 14, code: 'ticket'}); controller.setDefaultParams(); $httpBackend.flush(); expect(controller.dms).toBeDefined(); expect(controller.dms.reference).toEqual(15); expect(controller.dms.dmsTypeId).toEqual(14); }); }); describe('onFileChange()', () => { it('should set dms hasFileAttached property to true if has any files', () => { const files = [{id: 1, name: 'MyFile'}]; controller.onFileChange(files); $scope.$apply(); expect(controller.dms.hasFileAttached).toBeTruthy(); }); }); describe('getAllowedContentTypes()', () => { it('should make an HTTP GET request to get the allowed content types', () => { const expectedResponse = ['image/png', 'image/jpg']; $httpBackend.expect('GET', `DmsContainers/allowedContentTypes`).respond(expectedResponse); controller.getAllowedContentTypes(); $httpBackend.flush(); expect(controller.allowedContentTypes).toBeDefined(); expect(controller.allowedContentTypes).toEqual('image/png, image/jpg'); }); }); }); });