2018-05-23 12:26:51 +00:00
|
|
|
import './index';
|
2017-08-29 10:33:48 +00:00
|
|
|
|
|
|
|
describe('Component VnClientWebAccess', () => {
|
|
|
|
let $httpBackend;
|
|
|
|
let $scope;
|
|
|
|
let vnApp;
|
2017-10-17 12:24:40 +00:00
|
|
|
let controller;
|
2017-08-29 10:33:48 +00:00
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
beforeEach(ngModule('client'));
|
2017-08-25 06:42:53 +00:00
|
|
|
|
2018-12-22 10:59:26 +00:00
|
|
|
beforeEach(angular.mock.inject(($componentController, $rootScope, _$httpBackend_, _vnApp_) => {
|
2017-08-29 10:33:48 +00:00
|
|
|
$scope = $rootScope.$new();
|
|
|
|
$httpBackend = _$httpBackend_;
|
|
|
|
vnApp = _vnApp_;
|
|
|
|
spyOn(vnApp, 'showError');
|
2018-12-22 10:59:26 +00:00
|
|
|
controller = $componentController('vnClientWebAccess', {$scope});
|
2017-08-29 10:33:48 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
describe('$onChanges()', () => {
|
2017-09-21 06:48:25 +00:00
|
|
|
it(`should pass client's account data to account then call isCustomer function`, () => {
|
|
|
|
spyOn(controller, 'isCustomer');
|
2017-08-29 10:33:48 +00:00
|
|
|
controller.client = {client: 'Bruce Wayne', account: 'Wayne Industries'};
|
|
|
|
controller.account = {};
|
|
|
|
controller.$onChanges();
|
2017-09-20 12:01:33 +00:00
|
|
|
|
2017-08-29 10:33:48 +00:00
|
|
|
expect(controller.account).toBe('Wayne Industries');
|
2017-09-21 06:48:25 +00:00
|
|
|
expect(controller.isCustomer).toHaveBeenCalledWith();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('isCustomer()', () => {
|
|
|
|
it(`should perform a query if client is defined with an ID`, () => {
|
|
|
|
controller.client = {id: '1234'};
|
|
|
|
controller.isCustomer();
|
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
$httpBackend.when('GET', `Clients/${controller.client.id}/hasCustomerRole`).respond('ok');
|
|
|
|
$httpBackend.expectGET(`Clients/${controller.client.id}/hasCustomerRole`);
|
2017-09-21 06:48:25 +00:00
|
|
|
$httpBackend.flush();
|
2017-08-29 10:33:48 +00:00
|
|
|
});
|
2017-08-25 06:42:53 +00:00
|
|
|
});
|
|
|
|
|
2018-08-08 07:05:31 +00:00
|
|
|
describe('checkConditions()', () => {
|
|
|
|
it(`should perform a query to check if the client is valid and then store a boolean into the controller`, () => {
|
|
|
|
controller.client = {id: '1234'};
|
|
|
|
|
|
|
|
expect(controller.canEnableCheckBox).toBeTruthy();
|
|
|
|
|
2019-10-24 22:53:53 +00:00
|
|
|
$httpBackend.when('GET', `Clients/${controller.client.id}/isValidClient`).respond(false);
|
|
|
|
$httpBackend.expectGET(`Clients/${controller.client.id}/isValidClient`);
|
2018-08-08 07:05:31 +00:00
|
|
|
controller.checkConditions();
|
|
|
|
$httpBackend.flush();
|
|
|
|
|
|
|
|
expect(controller.canEnableCheckBox).toBeFalsy();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2017-08-29 10:33:48 +00:00
|
|
|
describe('onPassOpen()', () => {
|
|
|
|
it('should set passwords to empty values', () => {
|
|
|
|
controller.newPassword = 'm24x8';
|
|
|
|
controller.repeatPassword = 'm24x8';
|
|
|
|
controller.onPassOpen();
|
2017-09-20 12:01:33 +00:00
|
|
|
|
2017-08-29 10:33:48 +00:00
|
|
|
expect(controller.newPassword).toBe('');
|
|
|
|
expect(controller.repeatPassword).toBe('');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('onPassChange()', () => {
|
2017-09-04 12:39:58 +00:00
|
|
|
it('should request to update the password', () => {
|
2017-08-29 10:33:48 +00:00
|
|
|
controller.client = {id: '1234'};
|
|
|
|
controller.newPassword = 'm24x8';
|
|
|
|
controller.repeatPassword = 'm24x8';
|
2017-09-21 06:48:25 +00:00
|
|
|
controller.canChangePassword = true;
|
2019-10-24 22:53:53 +00:00
|
|
|
$httpBackend.when('PATCH', 'Accounts/1234').respond('done');
|
|
|
|
$httpBackend.expectPATCH('Accounts/1234', {password: 'm24x8'});
|
2019-10-30 15:57:14 +00:00
|
|
|
controller.onPassChange('accept');
|
2017-08-29 10:33:48 +00:00
|
|
|
$httpBackend.flush();
|
|
|
|
});
|
|
|
|
|
|
|
|
describe(`when password is empty`, () => {
|
2019-07-11 05:18:07 +00:00
|
|
|
it(`should throw 'You must enter a new password' error`, () => {
|
2017-08-29 10:33:48 +00:00
|
|
|
controller.client = {id: '1234'};
|
|
|
|
controller.newPassword = '';
|
2017-09-21 06:48:25 +00:00
|
|
|
controller.canChangePassword = true;
|
2019-10-30 15:57:14 +00:00
|
|
|
controller.onPassChange('accept');
|
2017-09-20 12:01:33 +00:00
|
|
|
|
2019-07-11 05:18:07 +00:00
|
|
|
expect(vnApp.showError).toHaveBeenCalledWith(`You must enter a new password`);
|
2017-08-29 10:33:48 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe(`when passwords don't match`, () => {
|
2017-09-20 12:01:33 +00:00
|
|
|
it(`should throw Passwords don't match error`, () => {
|
2017-08-29 10:33:48 +00:00
|
|
|
controller.client = {id: '1234'};
|
|
|
|
controller.newPassword = 'm24x8';
|
2017-09-21 06:48:25 +00:00
|
|
|
controller.canChangePassword = true;
|
2017-08-29 10:33:48 +00:00
|
|
|
controller.repeatPassword = 'notMatchingPassword';
|
2019-10-30 15:57:14 +00:00
|
|
|
controller.onPassChange('accept');
|
2017-09-20 12:01:33 +00:00
|
|
|
|
2017-08-29 10:33:48 +00:00
|
|
|
expect(vnApp.showError).toHaveBeenCalledWith(`Passwords don't match`);
|
|
|
|
});
|
|
|
|
});
|
2017-08-25 06:42:53 +00:00
|
|
|
});
|
|
|
|
});
|