2018-05-23 12:26:51 +00:00
|
|
|
import './index';
|
2017-08-29 10:33:48 +00:00
|
|
|
|
2018-11-07 12:04:16 +00:00
|
|
|
describe('Client', () => {
|
2017-09-04 13:06:43 +00:00
|
|
|
describe('Component vnClientBillingData', () => {
|
|
|
|
let $httpBackend;
|
|
|
|
let $scope;
|
2017-10-17 12:24:40 +00:00
|
|
|
let controller;
|
2018-10-17 10:49:18 +00:00
|
|
|
let vnApp;
|
2017-08-29 10:33:48 +00:00
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
beforeEach(ngModule('client'));
|
2017-08-29 10:33:48 +00:00
|
|
|
|
2020-07-23 14:46:16 +00:00
|
|
|
beforeEach(inject(($componentController, $rootScope, _$httpBackend_, _vnApp_) => {
|
2019-11-28 11:54:34 +00:00
|
|
|
let $element = angular.element('<vn-client-billing-data></vn-client-billing-data>');
|
2017-09-04 13:06:43 +00:00
|
|
|
$httpBackend = _$httpBackend_;
|
2018-10-17 10:49:18 +00:00
|
|
|
vnApp = _vnApp_;
|
2019-09-13 14:09:14 +00:00
|
|
|
$scope = $rootScope.$new();
|
|
|
|
$scope.watcher = {};
|
2020-02-26 12:22:52 +00:00
|
|
|
jest.spyOn(vnApp, 'showError');
|
2019-11-28 11:54:34 +00:00
|
|
|
controller = $componentController('vnClientBillingData', {$element, $scope});
|
2018-07-10 12:13:47 +00:00
|
|
|
controller.client = {id: 101, name: 'Client name', payMethodFk: 4};
|
2018-10-08 11:09:30 +00:00
|
|
|
$scope.watcher.orgData = {id: 101, name: 'Client name', payMethodFk: 4};
|
2017-09-04 13:06:43 +00:00
|
|
|
}));
|
2017-08-29 10:33:48 +00:00
|
|
|
|
2018-10-08 11:09:30 +00:00
|
|
|
describe('hasPaymethodChanges()', () => {
|
|
|
|
it(`should return true if there are changes on payMethod data`, () => {
|
2018-07-10 12:13:47 +00:00
|
|
|
controller.client.payMethodFk = 5;
|
|
|
|
|
2018-10-08 11:09:30 +00:00
|
|
|
expect(controller.hasPaymethodChanges()).toBeTruthy();
|
2017-08-30 06:38:41 +00:00
|
|
|
});
|
2017-08-30 10:30:48 +00:00
|
|
|
|
2018-10-08 11:09:30 +00:00
|
|
|
it(`should return false if there are no changes on payMethod data`, () => {
|
2018-07-10 12:13:47 +00:00
|
|
|
controller.client.payMethodFk = 4;
|
2017-09-20 12:01:33 +00:00
|
|
|
|
2018-10-08 11:09:30 +00:00
|
|
|
expect(controller.hasPaymethodChanges()).toBeFalsy();
|
2017-09-04 13:06:43 +00:00
|
|
|
});
|
2018-07-10 12:13:47 +00:00
|
|
|
});
|
2018-10-17 10:49:18 +00:00
|
|
|
|
2019-11-28 11:54:34 +00:00
|
|
|
describe('onBankEntityAccept()', () => {
|
2018-10-17 10:49:18 +00:00
|
|
|
it('should request to create a new bank entity', () => {
|
|
|
|
let newBankEntity = {
|
|
|
|
name: 'My new bank entity',
|
|
|
|
bic: 'ES123',
|
2019-03-07 11:11:06 +00:00
|
|
|
countryFk: 1,
|
|
|
|
id: 999
|
2018-10-17 10:49:18 +00:00
|
|
|
};
|
|
|
|
controller.newBankEntity = newBankEntity;
|
2019-11-28 11:54:34 +00:00
|
|
|
$httpBackend.expectPOST('BankEntities', newBankEntity).respond({id: 999});
|
|
|
|
controller.onBankEntityAccept();
|
2018-10-17 10:49:18 +00:00
|
|
|
$httpBackend.flush();
|
2019-11-28 11:54:34 +00:00
|
|
|
|
|
|
|
expect(controller.client.bankEntityFk).toEqual(newBankEntity.id);
|
2018-10-17 10:49:18 +00:00
|
|
|
});
|
|
|
|
});
|
2018-11-07 08:17:07 +00:00
|
|
|
|
2019-11-28 11:54:34 +00:00
|
|
|
describe('autofillBic()', () => {
|
|
|
|
it(`Should do nothing if there is not client`, () => {
|
|
|
|
controller.client = undefined;
|
|
|
|
|
|
|
|
controller.autofillBic();
|
|
|
|
|
|
|
|
expect(controller.client).toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`Should do nothing if the iban is not spanish`, () => {
|
|
|
|
controller.client.iban = 'FR9121000418450200051332';
|
|
|
|
|
|
|
|
controller.autofillBic();
|
|
|
|
|
|
|
|
expect(controller.client.bankEntityFk).toBeUndefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it(`Should set the bankEntityId in the client`, () => {
|
2018-11-07 08:17:07 +00:00
|
|
|
controller.client.iban = 'ES9121000418450200051332';
|
|
|
|
|
2019-11-28 11:54:34 +00:00
|
|
|
$httpBackend.whenRoute('GET', `BankEntities`).respond([{id: 123}]);
|
2018-11-07 08:17:07 +00:00
|
|
|
controller.autofillBic();
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
2019-11-28 11:54:34 +00:00
|
|
|
expect(controller.client.bankEntityFk).toEqual(123);
|
2018-11-07 08:17:07 +00:00
|
|
|
});
|
|
|
|
|
2019-11-28 11:54:34 +00:00
|
|
|
it(`Should set clients bankEntityFk to null if no bank entity founds`, () => {
|
|
|
|
controller.client.iban = 'ES9121000418450200051332';
|
2018-11-07 08:17:07 +00:00
|
|
|
|
2019-11-28 11:54:34 +00:00
|
|
|
$httpBackend.whenRoute('GET', `BankEntities`).respond([]);
|
2018-11-07 08:17:07 +00:00
|
|
|
controller.autofillBic();
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
2019-11-28 11:54:34 +00:00
|
|
|
expect(controller.client.bankEntityFk).toBeNull();
|
2018-11-07 08:17:07 +00:00
|
|
|
});
|
|
|
|
});
|
2018-11-23 07:44:19 +00:00
|
|
|
|
|
|
|
describe('ibanCountry()', () => {
|
|
|
|
it('should return a country code from iban', () => {
|
|
|
|
controller.client.iban = 'ES123';
|
|
|
|
let countryCode = controller.ibanCountry;
|
|
|
|
|
|
|
|
expect(countryCode).toEqual('ES');
|
|
|
|
});
|
|
|
|
});
|
2017-08-30 13:30:49 +00:00
|
|
|
});
|
|
|
|
});
|