2019-05-01 16:49:39 +00:00
|
|
|
import './index';
|
2019-07-30 06:51:38 +00:00
|
|
|
import crudModel from 'core/mocks/crud-model';
|
2019-05-01 16:49:39 +00:00
|
|
|
|
2019-07-30 06:51:38 +00:00
|
|
|
describe('Ticket', () => {
|
|
|
|
describe('Component vnTicketDmsIndex', () => {
|
2019-05-01 16:49:39 +00:00
|
|
|
let $httpBackend;
|
|
|
|
let controller;
|
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
beforeEach(ngModule('ticket'));
|
2019-05-01 16:49:39 +00:00
|
|
|
|
2020-03-20 11:00:53 +00:00
|
|
|
beforeEach(angular.mock.inject(($componentController, _$httpBackend_) => {
|
2019-05-01 16:49:39 +00:00
|
|
|
$httpBackend = _$httpBackend_;
|
2020-04-28 12:26:02 +00:00
|
|
|
controller = $componentController('vnTicketDmsIndex', {$element: null});
|
2019-07-30 06:51:38 +00:00
|
|
|
controller.$.model = crudModel;
|
2019-05-01 16:49:39 +00:00
|
|
|
}));
|
|
|
|
|
2019-07-30 06:51:38 +00:00
|
|
|
describe('deleteDms()', () => {
|
|
|
|
it('should make an HTTP Post query', () => {
|
2020-02-26 12:22:52 +00:00
|
|
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
jest.spyOn(controller.$.model, 'remove');
|
2020-04-28 12:26:02 +00:00
|
|
|
|
|
|
|
const dmsId = 1;
|
|
|
|
const dmsIndex = 0;
|
2019-07-30 06:51:38 +00:00
|
|
|
controller.ticketDms = [{dmsFk: 1}];
|
|
|
|
|
2020-04-28 12:26:02 +00:00
|
|
|
$httpBackend.expectPOST(`ticketDms/${dmsId}/removeFile`).respond({});
|
|
|
|
controller.deleteDms(dmsIndex);
|
2019-05-01 16:49:39 +00:00
|
|
|
$httpBackend.flush();
|
|
|
|
|
2019-07-30 06:51:38 +00:00
|
|
|
expect(controller.$.model.remove).toHaveBeenCalledWith(dmsIndex);
|
2020-04-28 12:26:02 +00:00
|
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalled();
|
2019-05-01 16:49:39 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|