Updated unit tests
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
parent
17542472da
commit
ac181bb845
|
@ -0,0 +1,76 @@
|
||||||
|
import './index';
|
||||||
|
|
||||||
|
describe('Client', () => {
|
||||||
|
describe('Component vnClientBalancCreate', () => {
|
||||||
|
let controller;
|
||||||
|
let $httpBackend;
|
||||||
|
let $httpParamSerializer;
|
||||||
|
|
||||||
|
beforeEach(ngModule('client'));
|
||||||
|
|
||||||
|
beforeEach(inject(($componentController, $rootScope, _$httpBackend_, _$httpParamSerializer_) => {
|
||||||
|
$httpBackend = _$httpBackend_;
|
||||||
|
$httpParamSerializer = _$httpParamSerializer_;
|
||||||
|
let $scope = $rootScope.$new();
|
||||||
|
const $element = angular.element('<vn-client-balance-create></vn-client-balance-create>');
|
||||||
|
const $transclude = {
|
||||||
|
$$boundTransclude: {
|
||||||
|
$$slots: []
|
||||||
|
}
|
||||||
|
};
|
||||||
|
controller = $componentController('vnClientBalanceCreate', {$element, $scope, $transclude});
|
||||||
|
controller.receipt = {
|
||||||
|
clientFk: 101,
|
||||||
|
companyFk: 442
|
||||||
|
};
|
||||||
|
}));
|
||||||
|
|
||||||
|
describe('bankSelection() setter', () => {
|
||||||
|
it('should set the receipt description property', () => {
|
||||||
|
controller.bankSelection = {
|
||||||
|
id: 1,
|
||||||
|
bank: 'Cash',
|
||||||
|
accountingType: {
|
||||||
|
id: 2,
|
||||||
|
receiptDescription: 'Cash'
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
expect(controller.receipt.description).toEqual('Cash');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('getAmountPaid()', () => {
|
||||||
|
it('should make an http GET query and then set the receipt amountPaid property', () => {
|
||||||
|
controller.$params = {id: 101};
|
||||||
|
const receipt = controller.receipt;
|
||||||
|
const filter = {
|
||||||
|
where: {
|
||||||
|
clientFk: 101,
|
||||||
|
companyFk: 442
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const serializedParams = $httpParamSerializer({filter});
|
||||||
|
$httpBackend.expect('GET', `ClientRisks?${serializedParams}`,).respond([{amount: 20}]);
|
||||||
|
controller.getAmountPaid();
|
||||||
|
$httpBackend.flush();
|
||||||
|
|
||||||
|
expect(receipt.amountPaid).toEqual(20);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('responseHandler()', () => {
|
||||||
|
it('should make an http POST query and then call to the parent responseHandler() method', () => {
|
||||||
|
jest.spyOn(controller.vnApp, 'showSuccess');
|
||||||
|
|
||||||
|
controller.$params = {id: 101};
|
||||||
|
|
||||||
|
$httpBackend.expect('POST', `Receipts`,).respond({id: 1});
|
||||||
|
controller.responseHandler('accept');
|
||||||
|
$httpBackend.flush();
|
||||||
|
|
||||||
|
expect(controller.vnApp.showSuccess).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -58,7 +58,7 @@ class Controller extends Section {
|
||||||
return balance.companyFk === selectedCompany;
|
return balance.companyFk === selectedCompany;
|
||||||
});
|
});
|
||||||
|
|
||||||
return currentBalance.amount;
|
return currentBalance && currentBalance.amount;
|
||||||
}
|
}
|
||||||
|
|
||||||
getBalances() {
|
getBalances() {
|
||||||
|
|
|
@ -3,10 +3,12 @@ import './index';
|
||||||
describe('Client', () => {
|
describe('Client', () => {
|
||||||
describe('Component vnClientBalanceIndex', () => {
|
describe('Component vnClientBalanceIndex', () => {
|
||||||
let controller;
|
let controller;
|
||||||
|
let $httpBackend;
|
||||||
|
|
||||||
beforeEach(ngModule('client'));
|
beforeEach(ngModule('client'));
|
||||||
|
|
||||||
beforeEach(inject(($componentController, $rootScope) => {
|
beforeEach(inject(($componentController, $rootScope, _$httpBackend_) => {
|
||||||
|
$httpBackend = _$httpBackend_;
|
||||||
let $scope = $rootScope.$new();
|
let $scope = $rootScope.$new();
|
||||||
const $element = angular.element('<vn-client-balance-index></vn-client-balance-index>');
|
const $element = angular.element('<vn-client-balance-index></vn-client-balance-index>');
|
||||||
controller = $componentController('vnClientBalanceIndex', {$element, $scope});
|
controller = $componentController('vnClientBalanceIndex', {$element, $scope});
|
||||||
|
@ -133,5 +135,21 @@ describe('Client', () => {
|
||||||
expect(controller.getBalances).toHaveBeenCalledWith();
|
expect(controller.getBalances).toHaveBeenCalledWith();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe('changeDescription()', () => {
|
||||||
|
it('should make an http PATCH query', () => {
|
||||||
|
const expectedParams = {description: 'Web'};
|
||||||
|
|
||||||
|
$httpBackend.expect('PATCH', `Receipts/1`, expectedParams).respond(200);
|
||||||
|
controller.changeDescription({
|
||||||
|
id: 1,
|
||||||
|
description: 'Web',
|
||||||
|
accountingType: {
|
||||||
|
description: 'Cash'
|
||||||
|
}
|
||||||
|
});
|
||||||
|
$httpBackend.flush();
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue