import './index'; describe('Client', () => { describe('Component vnClientSms', () => { let controller; let $httpBackend; let $element; beforeEach(ngModule('client')); beforeEach(inject(($componentController, $rootScope, _$httpBackend_) => { $httpBackend = _$httpBackend_; let $scope = $rootScope.$new(); $element = angular.element(''); controller = $componentController('vnClientSms', {$element, $scope}); controller.client = {id: 101}; controller.$params = {id: 101}; controller.$.message = { input: { value: 'My SMS' } }; })); describe('onResponse()', () => { it('should perform a POST query and show a success snackbar', () => { let params = {destinationFk: 101, destination: 111111111, message: 'My SMS'}; controller.sms = {destinationFk: 101, destination: 111111111, message: 'My SMS'}; jest.spyOn(controller.vnApp, 'showMessage'); $httpBackend.expect('POST', `Clients/101/sendSms`, params).respond(200, params); controller.onResponse(); $httpBackend.flush(); expect(controller.vnApp.showMessage).toHaveBeenCalledWith('SMS sent!'); }); it('should call onResponse without the destination and show an error snackbar', () => { controller.sms = {destinationFk: 101, message: 'My SMS'}; jest.spyOn(controller.vnApp, 'showError'); controller.onResponse('accept'); expect(controller.vnApp.showError).toHaveBeenCalledWith(`The destination can't be empty`); }); it('should call onResponse without the message and show an error snackbar', () => { controller.sms = {destinationFk: 101, destination: 222222222}; jest.spyOn(controller.vnApp, 'showError'); controller.onResponse('accept'); expect(controller.vnApp.showError).toHaveBeenCalledWith(`The message can't be empty`); }); }); describe('charactersRemaining()', () => { it('should return the characters remaining in a element', () => { controller.$.message = { input: { value: 'My message 0€' } }; let result = controller.charactersRemaining(); expect(result).toEqual(145); }); }); }); });