2022-01-25 13:27:30 +00:00
|
|
|
import './index';
|
|
|
|
import crudModel from 'core/mocks/crud-model';
|
|
|
|
|
|
|
|
describe('client defaulter', () => {
|
|
|
|
describe('Component vnClientDefaulterIndex', () => {
|
|
|
|
let controller;
|
2022-02-01 07:49:56 +00:00
|
|
|
let $httpBackend;
|
2022-01-25 13:27:30 +00:00
|
|
|
|
|
|
|
beforeEach(ngModule('client'));
|
|
|
|
|
2022-02-01 07:49:56 +00:00
|
|
|
beforeEach(inject(($componentController, _$httpBackend_) => {
|
|
|
|
$httpBackend = _$httpBackend_;
|
2022-01-25 13:27:30 +00:00
|
|
|
const $element = angular.element('<vn-client-defaulter></vn-client-defaulter>');
|
|
|
|
controller = $componentController('vnClientDefaulterIndex', {$element});
|
|
|
|
controller.$.model = crudModel;
|
|
|
|
controller.$.model.data = [
|
|
|
|
{clientFk: 1101, amount: 125},
|
|
|
|
{clientFk: 1102, amount: 500},
|
|
|
|
{clientFk: 1103, amount: 250}
|
|
|
|
];
|
|
|
|
}));
|
|
|
|
|
|
|
|
describe('checked() getter', () => {
|
|
|
|
it('should return the checked lines', () => {
|
|
|
|
const data = controller.$.model.data;
|
|
|
|
data[1].checked = true;
|
|
|
|
data[2].checked = true;
|
|
|
|
|
|
|
|
const checkedRows = controller.checked;
|
|
|
|
|
|
|
|
const firstCheckedRow = checkedRows[0];
|
|
|
|
const secondCheckedRow = checkedRows[1];
|
|
|
|
|
|
|
|
expect(firstCheckedRow.clientFk).toEqual(1102);
|
|
|
|
expect(secondCheckedRow.clientFk).toEqual(1103);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('balanceDueTotal() getter', () => {
|
|
|
|
it('should return balance due total', () => {
|
|
|
|
const data = controller.$.model.data;
|
|
|
|
data[1].checked = true;
|
|
|
|
data[2].checked = true;
|
|
|
|
|
|
|
|
const checkedRows = controller.checked;
|
|
|
|
const expectedAmount = checkedRows[0].amount + checkedRows[1].amount;
|
|
|
|
|
|
|
|
const result = controller.balanceDueTotal;
|
|
|
|
|
|
|
|
expect(result).toEqual(expectedAmount);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('onResponse()', () => {
|
|
|
|
it('should return error for empty message', () => {
|
|
|
|
let error;
|
|
|
|
try {
|
|
|
|
controller.onResponse();
|
|
|
|
} catch (e) {
|
|
|
|
error = e;
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(error).toBeDefined();
|
|
|
|
expect(error.message).toBe(`The message can't be empty`);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should return saved message', () => {
|
2022-02-01 07:49:56 +00:00
|
|
|
const data = controller.$.model.data;
|
|
|
|
data[1].checked = true;
|
|
|
|
controller.defaulter = {observation: 'My new observation'};
|
|
|
|
|
|
|
|
const params = [{text: controller.defaulter.observation, clientFk: data[1].clientFk}];
|
|
|
|
|
2022-01-25 13:27:30 +00:00
|
|
|
jest.spyOn(controller.vnApp, 'showMessage');
|
2022-02-01 07:49:56 +00:00
|
|
|
$httpBackend.expect('POST', `ClientObservations`, params).respond(200, params);
|
|
|
|
|
2022-01-25 13:27:30 +00:00
|
|
|
controller.onResponse();
|
2022-02-01 07:49:56 +00:00
|
|
|
$httpBackend.flush();
|
2022-01-25 13:27:30 +00:00
|
|
|
|
|
|
|
expect(controller.vnApp.showMessage).toHaveBeenCalledWith('Observation saved!');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('exprBuilder()', () => {
|
|
|
|
it('should search by sales person', () => {
|
|
|
|
let expr = controller.exprBuilder('salesPersonFk', '5');
|
|
|
|
|
|
|
|
expect(expr).toEqual({'d.salesPersonFk': '5'});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should search by client name', () => {
|
|
|
|
let expr = controller.exprBuilder('clientName', '1foo');
|
|
|
|
|
|
|
|
expect(expr).toEqual({'d.clientName': '1foo'});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|