50 lines
1.7 KiB
JavaScript
50 lines
1.7 KiB
JavaScript
import './index';
|
|
|
|
describe('Ticket', () => {
|
|
describe('Component vnTicketSms', () => {
|
|
let controller;
|
|
let $httpBackend;
|
|
let $element;
|
|
|
|
beforeEach(ngModule('ticket'));
|
|
|
|
beforeEach(angular.mock.inject(($componentController, $rootScope, _$httpBackend_) => {
|
|
$httpBackend = _$httpBackend_;
|
|
let $scope = $rootScope.$new();
|
|
$element = angular.element('<vn-dialog></vn-dialog>');
|
|
controller = $componentController('vnTicketSms', {$element, $scope});
|
|
controller.$params = {id: 11};
|
|
}));
|
|
|
|
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'};
|
|
|
|
spyOn(controller.vnApp, 'showMessage');
|
|
$httpBackend.expect('POST', `Tickets/11/sendSms`, params).respond(200, params);
|
|
|
|
controller.onResponse('accept');
|
|
$httpBackend.flush();
|
|
|
|
expect(controller.vnApp.showMessage).toHaveBeenCalledWith('SMS sent!');
|
|
});
|
|
});
|
|
|
|
describe('charactersRemaining()', () => {
|
|
it('should return the characters remaining in a element', () => {
|
|
controller.$scope.message = {
|
|
input: {
|
|
textLength: 50
|
|
},
|
|
maxlength: 150
|
|
};
|
|
|
|
let result = controller.charactersRemaining();
|
|
|
|
expect(result).toEqual(100);
|
|
});
|
|
});
|
|
});
|
|
});
|