2018-05-23 12:26:51 +00:00
|
|
|
import './index';
|
2019-02-28 07:55:34 +00:00
|
|
|
import watcher from 'core/mocks/watcher';
|
2017-08-29 10:33:48 +00:00
|
|
|
|
2017-09-04 13:06:43 +00:00
|
|
|
describe('Client', () => {
|
2018-05-24 13:02:38 +00:00
|
|
|
describe('Component vnClientAddressCreate', () => {
|
2017-10-17 12:24:40 +00:00
|
|
|
let controller;
|
2017-09-04 13:06:43 +00:00
|
|
|
let $componentController;
|
|
|
|
let $state;
|
2017-08-29 10:33:48 +00:00
|
|
|
|
2018-12-22 10:59:26 +00:00
|
|
|
beforeEach(ngModule('client'));
|
2017-08-29 10:33:48 +00:00
|
|
|
|
2017-09-04 13:06:43 +00:00
|
|
|
beforeEach(angular.mock.inject((_$componentController_, _$state_) => {
|
|
|
|
$componentController = _$componentController_;
|
|
|
|
$state = _$state_;
|
|
|
|
$state.params.id = '1234';
|
2018-05-24 13:02:38 +00:00
|
|
|
controller = $componentController('vnClientAddressCreate', {$state});
|
2019-06-13 11:08:11 +00:00
|
|
|
controller.$.watcher = watcher;
|
|
|
|
controller.$.watcher.submit = () => {
|
2019-02-28 07:55:34 +00:00
|
|
|
return {
|
|
|
|
then: callback => {
|
|
|
|
callback({data: {id: 124}});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
controller.client = {id: 101, defaultAddressFk: 121};
|
2017-09-04 13:06:43 +00:00
|
|
|
}));
|
2017-08-29 10:33:48 +00:00
|
|
|
|
2017-09-04 13:06:43 +00:00
|
|
|
it('should define and set address property', () => {
|
2019-02-28 07:55:34 +00:00
|
|
|
expect(controller.data.address.clientFk).toBe(1234);
|
|
|
|
expect(controller.data.address.isActive).toBe(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('onSubmit()', () => {
|
|
|
|
it('should perform a PATCH and not set value to defaultAddressFk property', () => {
|
|
|
|
spyOn(controller.$state, 'go');
|
|
|
|
controller.data.isDefaultAddress = false;
|
|
|
|
controller.onSubmit();
|
|
|
|
|
|
|
|
expect(controller.client.defaultAddressFk).toEqual(121);
|
|
|
|
expect(controller.$state.go).toHaveBeenCalledWith('client.card.address.index');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should perform a PATCH and set a value to defaultAddressFk property', () => {
|
|
|
|
spyOn(controller.$state, 'go');
|
|
|
|
controller.data.isDefaultAddress = true;
|
|
|
|
controller.onSubmit();
|
|
|
|
|
|
|
|
expect(controller.client.defaultAddressFk).toEqual(124);
|
|
|
|
expect(controller.$state.go).toHaveBeenCalledWith('client.card.address.index');
|
|
|
|
});
|
2017-09-04 13:06:43 +00:00
|
|
|
});
|
2017-08-31 06:53:17 +00:00
|
|
|
});
|
|
|
|
});
|