75 lines
2.6 KiB
JavaScript
75 lines
2.6 KiB
JavaScript
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('<vn-dialog></vn-dialog>');
|
|
controller = $componentController('vnClientSms', {$element, $scope});
|
|
controller.client = {id: 1101};
|
|
controller.$params = {id: 1101};
|
|
controller.$.message = {
|
|
input: {
|
|
value: 'My SMS'
|
|
}
|
|
};
|
|
}));
|
|
|
|
describe('onResponse()', () => {
|
|
it('should perform a POST query and show a success snackbar', () => {
|
|
let params = {destinationFk: 1101, destination: 111111111, message: 'My SMS'};
|
|
controller.sms = {destinationFk: 1101, destination: 111111111, message: 'My SMS'};
|
|
|
|
jest.spyOn(controller.vnApp, 'showMessage');
|
|
$httpBackend.expect('POST', `Clients/1101/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: 1101, 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: 1101, 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);
|
|
});
|
|
});
|
|
});
|
|
});
|