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

111 lines
4.4 KiB
JavaScript
Raw Normal View History

import './index.js';
2018-12-27 11:54:16 +00:00
import crudModel from 'core/mocks/crud-model';
describe('Item', () => {
describe('Component vnItemDiary', () => {
let $scope;
let controller;
beforeEach(ngModule('item'));
2020-03-17 13:43:46 +00:00
beforeEach(angular.mock.inject(($componentController, $rootScope) => {
$scope = $rootScope.$new();
2020-03-17 13:43:46 +00:00
const $element = angular.element('<vn-item-diary></vn-item-diary>');
controller = $componentController('vnItemDiary', {$element, $scope});
controller.$.model = crudModel;
controller.$params = {id: 1};
}));
describe('isToday()', () => {
it(`should call isToday() an return true if an specified date is the current date`, () => {
let date = new Date();
let result = controller.isToday(date);
expect(result).toBeTruthy();
});
it(`should call isToday() an return false if an specified date is the current date`, () => {
let date = '2018-07-03';
let result = controller.isToday(date);
expect(result).toBeFalsy();
});
});
describe('freeLineIndex()', () => {
it(`should call freeLineIndex() and return an index from line with alertLevel 0 and current date`, () => {
2018-09-03 08:55:04 +00:00
let currentDate = new Date();
currentDate.setDate(currentDate.getDate() + 1);
2020-03-17 13:43:46 +00:00
controller.$.model = {data: [
{name: 'My item 1', alertLevel: 3, date: '2018-05-02'},
{name: 'My item 2', alertLevel: 1, date: '2018-05-03'},
2018-09-03 08:55:04 +00:00
{name: 'My item 3', alertLevel: 0, date: currentDate}]
};
let result = controller.freeLineIndex;
expect(result).toEqual(2);
});
});
describe('onPreparationLineIndex()', () => {
it(`should call onPreparationLineIndex() and return an index from line with alertLevel 1 and isPicked true`, () => {
2018-09-03 08:55:04 +00:00
let currentDate = new Date();
currentDate.setDate(currentDate.getDate() + 1);
2020-03-17 13:43:46 +00:00
controller.$.model = {data: [
2018-11-14 10:17:33 +00:00
{name: 'My item 1', alertLevel: 3, isPicked: true, date: currentDate},
{name: 'My item 3', alertLevel: 1, isPicked: true, date: currentDate},
{name: 'My item 4', alertLevel: 1, isPicked: false, date: currentDate},
2018-09-03 08:55:04 +00:00
{name: 'My item 5', alertLevel: 0, isPicked: false, date: currentDate}]
};
let result = controller.onPreparationLineIndex;
2018-11-14 10:17:33 +00:00
expect(result).toEqual(1);
});
});
describe('set item()', () => {
2020-02-26 12:22:52 +00:00
it('should set warehouseFk property based on itemType warehouseFk', () => {
2020-03-17 13:43:46 +00:00
jest.spyOn(controller.$, '$applyAsync');
2018-09-06 13:08:02 +00:00
controller.item = {id: 1, itemType: {warehouseFk: 1}};
2020-03-17 13:43:46 +00:00
expect(controller.$.$applyAsync).toHaveBeenCalledWith(jasmine.any(Function));
$scope.$apply();
2018-09-06 13:08:02 +00:00
expect(controller.warehouseFk).toEqual(1);
expect(controller.item.id).toEqual(1);
});
it(`should set warehouseFk property based on url query warehouseFk`, () => {
2020-03-17 13:43:46 +00:00
jest.spyOn(controller.$, '$applyAsync');
controller.$params.warehouseFk = 4;
2018-09-06 13:08:02 +00:00
controller.item = {id: 1, itemType: {warehouseFk: 1}};
2020-03-17 13:43:46 +00:00
expect(controller.$.$applyAsync).toHaveBeenCalledWith(jasmine.any(Function));
$scope.$apply();
2018-09-06 13:08:02 +00:00
expect(controller.warehouseFk).toEqual(4);
expect(controller.item.id).toEqual(1);
});
});
2018-10-05 14:13:30 +00:00
describe('givenTicketIndex() setter', () => {
it(`should return the index position of the line of a given ticket fk`, () => {
2020-03-17 13:43:46 +00:00
controller.$.model = {data: [
2018-10-05 14:13:30 +00:00
{name: 'My item 1', origin: 1, alertLevel: 3, isPicked: true, date: '2018-05-02'},
{name: 'My item 3', origin: 2, alertLevel: 1, isPicked: true, date: '2018-05-03'},
{name: 'My item 4', origin: 3, alertLevel: 1, isPicked: false, date: '2018-05-03'}]
};
controller.ticketFk = 2;
let index = controller.givenTicketIndex;
2020-03-17 13:43:46 +00:00
expect(controller.$.model.data[index].origin).toEqual(2);
2018-10-05 14:13:30 +00:00
});
});
});
});