salix/modules/item/front/index/index.spec.js

60 lines
2.1 KiB
JavaScript
Raw Normal View History

import './index.js';
describe('Item', () => {
describe('Component vnItemIndex', () => {
let controller;
let $httpBackend;
2020-03-17 13:43:46 +00:00
let $scope;
beforeEach(ngModule('item'));
2020-03-17 13:43:46 +00:00
beforeEach(angular.mock.inject(($componentController, _$httpBackend_, $rootScope) => {
$httpBackend = _$httpBackend_;
2020-03-17 13:43:46 +00:00
$scope = $rootScope.$new();
const $element = angular.element('<vn-item-index></vn-item-index>');
controller = $componentController('vnItemIndex', {$element, $scope});
}));
describe('onCloneAccept()', () => {
2019-10-30 15:57:14 +00:00
it('should do nothing if response is not accept', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller.$state, 'go');
let response = 'ERROR!';
controller.itemSelected = 'check me';
controller.onCloneAccept(response);
expect(controller.$state.go).not.toHaveBeenCalledWith();
expect(controller.itemSelected).toEqual('check me');
});
2019-10-30 15:57:14 +00:00
it('should do nothing if response is accept but itemSelected is not defined in the controller', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller.$state, 'go');
2019-10-30 15:57:14 +00:00
let response = 'accept';
controller.itemSelected = undefined;
controller.onCloneAccept(response);
expect(controller.$state.go).not.toHaveBeenCalledWith();
expect(controller.itemSelected).toBeUndefined();
});
it('should perform a post query and then call go() then update itemSelected in the controller', () => {
2020-02-26 12:22:52 +00:00
jest.spyOn(controller.$state, 'go');
2019-10-30 15:57:14 +00:00
let response = 'accept';
controller.itemSelected = {id: 1};
$httpBackend.when('POST', `Items/1/clone`).respond({id: 99});
$httpBackend.expect('POST', `Items/1/clone`);
controller.onCloneAccept(response);
$httpBackend.flush();
expect(controller.$state.go).toHaveBeenCalledWith('item.card.tags', {id: 99});
expect(controller.itemSelected).toBeNull();
});
});
});
});