2018-09-05 11:47:15 +00:00
|
|
|
import './index.js';
|
2019-10-18 07:53:30 +00:00
|
|
|
import crudModel from 'core/mocks/crud-model';
|
2018-09-05 11:47:15 +00:00
|
|
|
|
|
|
|
describe('Claim', () => {
|
|
|
|
describe('Component summary', () => {
|
|
|
|
let controller;
|
|
|
|
let $httpBackend;
|
2020-03-16 10:58:14 +00:00
|
|
|
let $scope;
|
2018-09-05 11:47:15 +00:00
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
beforeEach(ngModule('claim'));
|
2018-09-05 11:47:15 +00:00
|
|
|
|
2020-03-16 10:58:14 +00:00
|
|
|
beforeEach(angular.mock.inject(($componentController, _$httpBackend_, $rootScope) => {
|
|
|
|
$scope = $rootScope.$new();
|
2018-09-05 11:47:15 +00:00
|
|
|
$httpBackend = _$httpBackend_;
|
2020-03-16 10:58:14 +00:00
|
|
|
const $element = angular.element('<vn-claim-summary></vn-claim-summary>');
|
|
|
|
controller = $componentController('vnClaimSummary', {$element, $scope});
|
2020-03-17 10:17:50 +00:00
|
|
|
controller.claim = {id: 1};
|
2019-10-18 07:53:30 +00:00
|
|
|
controller.$.model = crudModel;
|
2018-09-05 11:47:15 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
describe('getSummary()', () => {
|
2018-12-22 10:59:26 +00:00
|
|
|
it('should perform a query to set summary', () => {
|
2019-10-24 22:53:53 +00:00
|
|
|
$httpBackend.when('GET', `Claims/1/getSummary`).respond(200, 24);
|
|
|
|
$httpBackend.expect('GET', `Claims/1/getSummary`);
|
2018-09-05 11:47:15 +00:00
|
|
|
controller.getSummary();
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.summary).toEqual(24);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('$onChanges()', () => {
|
2018-12-22 10:59:26 +00:00
|
|
|
it('should call getSummary when item.id is defined', () => {
|
2020-02-26 12:22:52 +00:00
|
|
|
jest.spyOn(controller, 'getSummary');
|
2020-03-16 10:58:14 +00:00
|
|
|
|
2018-09-05 11:47:15 +00:00
|
|
|
controller.$onChanges();
|
|
|
|
|
|
|
|
expect(controller.getSummary).toHaveBeenCalledWith();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|