2019-03-29 06:29:09 +00:00
|
|
|
import './index';
|
|
|
|
|
|
|
|
describe('Client', () => {
|
|
|
|
describe('Component vnClientSms', () => {
|
|
|
|
let controller;
|
|
|
|
let $httpBackend;
|
|
|
|
let $element;
|
|
|
|
|
2019-09-13 14:09:14 +00:00
|
|
|
beforeEach(angular.mock.module('client', $translateProvider => {
|
|
|
|
$translateProvider.translations('en', {});
|
|
|
|
}));
|
2019-03-29 06:29:09 +00:00
|
|
|
|
|
|
|
beforeEach(angular.mock.inject(($componentController, _$httpBackend_) => {
|
|
|
|
$httpBackend = _$httpBackend_;
|
|
|
|
$element = angular.element('<vn-dialog></vn-dialog>');
|
|
|
|
controller = $componentController('vnClientSms', {$element});
|
|
|
|
controller.client = {id: 101};
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe('onResponse()', () => {
|
|
|
|
it('should perform a POST query and show a success snackbar', () => {
|
2019-04-16 06:21:20 +00:00
|
|
|
let params = {destinationFk: 101, destination: 111111111, message: 'My SMS'};
|
|
|
|
controller.sms = {destinationFk: 101, destination: 111111111, message: 'My SMS'};
|
2019-03-29 06:29:09 +00:00
|
|
|
|
|
|
|
spyOn(controller.vnApp, 'showMessage');
|
|
|
|
$httpBackend.when('POST', `/client/api/Sms/send`, params).respond(200, params);
|
|
|
|
$httpBackend.expect('POST', `/client/api/Sms/send`, params).respond(params);
|
|
|
|
|
|
|
|
controller.onResponse('ACCEPT');
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.vnApp.showMessage).toHaveBeenCalledWith('SMS sent!');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|