2019-07-30 06:51:38 +00:00
|
|
|
import './index';
|
|
|
|
import crudModel from 'core/mocks/crud-model';
|
|
|
|
|
|
|
|
describe('Claim', () => {
|
2020-01-10 10:29:11 +00:00
|
|
|
describe('Component vnClaimPhotos', () => {
|
2019-07-30 06:51:38 +00:00
|
|
|
let $componentController;
|
|
|
|
let $scope;
|
|
|
|
let $httpBackend;
|
|
|
|
let controller;
|
2019-09-30 12:57:54 +00:00
|
|
|
let $httpParamSerializer;
|
2019-07-30 06:51:38 +00:00
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
beforeEach(ngModule('claim'));
|
2019-07-30 06:51:38 +00:00
|
|
|
|
2019-09-30 12:57:54 +00:00
|
|
|
beforeEach(angular.mock.inject((_$componentController_, $rootScope, _$httpBackend_, _$httpParamSerializer_) => {
|
2019-07-30 06:51:38 +00:00
|
|
|
$componentController = _$componentController_;
|
2019-09-30 12:57:54 +00:00
|
|
|
$httpParamSerializer = _$httpParamSerializer_;
|
2019-07-30 06:51:38 +00:00
|
|
|
$httpBackend = _$httpBackend_;
|
|
|
|
$scope = $rootScope.$new();
|
2020-01-10 10:29:11 +00:00
|
|
|
controller = $componentController('vnClaimPhotos', {$: $scope});
|
2019-07-30 06:51:38 +00:00
|
|
|
controller.$.model = crudModel;
|
2019-09-30 12:57:54 +00:00
|
|
|
controller.claim = {
|
|
|
|
id: 1,
|
|
|
|
client: {id: 101, name: 'Bruce Wayne'}
|
|
|
|
};
|
2019-07-30 06:51:38 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
describe('deleteDms()', () => {
|
|
|
|
it('should make an HTTP Post query', () => {
|
|
|
|
const dmsId = 1;
|
|
|
|
const dmsIndex = 0;
|
|
|
|
spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
spyOn(controller.$.model, 'remove');
|
2019-09-30 12:57:54 +00:00
|
|
|
controller.photos = [{dmsFk: 1}];
|
2019-07-30 06:51:38 +00:00
|
|
|
controller.dmsIndex = dmsIndex;
|
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
$httpBackend.when('POST', `claimDms/${dmsId}/removeFile`).respond({});
|
|
|
|
$httpBackend.expect('POST', `claimDms/${dmsId}/removeFile`);
|
2019-10-30 15:57:14 +00:00
|
|
|
controller.deleteDms('accept');
|
2019-07-30 06:51:38 +00:00
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.$.model.remove).toHaveBeenCalledWith(dmsIndex);
|
2019-09-30 18:55:41 +00:00
|
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Photo deleted');
|
2019-09-30 12:57:54 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('setDefaultParams()', () => {
|
|
|
|
it('should make an HTTP GET query, then set all dms properties', () => {
|
|
|
|
const params = {filter: {
|
|
|
|
where: {code: 'claim'}
|
|
|
|
}};
|
|
|
|
let serializedParams = $httpParamSerializer(params);
|
2019-10-24 22:53:53 +00:00
|
|
|
$httpBackend.when('GET', `DmsTypes/findOne?${serializedParams}`).respond({});
|
|
|
|
$httpBackend.expect('GET', `DmsTypes/findOne?${serializedParams}`);
|
2019-09-30 12:57:54 +00:00
|
|
|
controller.setDefaultParams();
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.dms).toBeDefined();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('create()', () => {
|
|
|
|
it('should make an HTTP Post query, then refresh the model data', () => {
|
|
|
|
const claimId = 1;
|
|
|
|
const dmsIndex = 0;
|
|
|
|
spyOn(controller.vnApp, 'showSuccess');
|
|
|
|
spyOn(controller.$.model, 'refresh');
|
|
|
|
controller.photos = [{dmsFk: 1}];
|
|
|
|
controller.dmsIndex = dmsIndex;
|
|
|
|
controller.dms = {files: []};
|
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
$httpBackend.when('POST', `claims/${claimId}/uploadFile`).respond({});
|
|
|
|
$httpBackend.expect('POST', `claims/${claimId}/uploadFile`);
|
2019-09-30 12:57:54 +00:00
|
|
|
controller.create();
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.$.model.refresh).toHaveBeenCalledWith();
|
|
|
|
expect(controller.vnApp.showSuccess).toHaveBeenCalledWith('Photo uploaded!');
|
2019-07-30 06:51:38 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|