salix/modules/worker/front/calendar/index.spec.js

114 lines
4.1 KiB
JavaScript
Raw Normal View History

import './index';
describe('Worker', () => {
describe('Component vnWorkerCalendar', () => {
let $httpBackend;
let $scope;
2019-10-23 15:38:35 +00:00
let $element;
let controller;
2019-10-23 15:38:35 +00:00
let year = new Date().getFullYear();
2019-09-13 14:09:14 +00:00
beforeEach(angular.mock.module('worker', $translateProvider => {
$translateProvider.translations('en', {});
}));
2019-10-23 15:38:35 +00:00
beforeEach(angular.mock.inject(($componentController, $rootScope, _$httpBackend_) => {
$scope = $rootScope.$new();
$httpBackend = _$httpBackend_;
2019-10-23 15:38:35 +00:00
$element = angular.element('<div></div>');
controller = $componentController('vnWorkerCalendar', {$element, $scope});
}));
2019-10-23 15:38:35 +00:00
afterEach(() => {
$element.remove();
$scope.$destroy();
});
2019-10-23 15:38:35 +00:00
describe('started property', () => {
it(`should return first day and month of current year`, () => {
let started = new Date(year, 0, 1);
expect(controller.started).toEqual(started);
});
});
2019-10-23 15:38:35 +00:00
describe('ended property', () => {
it(`should return last day and month of current year`, () => {
2019-10-23 15:38:35 +00:00
let ended = new Date(year, 11, 31);
expect(controller.ended).toEqual(ended);
});
});
2019-10-23 15:38:35 +00:00
describe('months property', () => {
it(`should return an array of twelve months length`, () => {
2019-10-23 15:38:35 +00:00
const ended = new Date(year, 11, 1);
expect(controller.months.length).toEqual(12);
expect(controller.months[0]).toEqual(controller.started);
expect(controller.months[11]).toEqual(ended);
});
});
describe('worker() setter', () => {
2019-10-23 15:38:35 +00:00
it(`should perform a get query and set the reponse data on the model`, () => {
let today = new Date();
let tomorrow = new Date(today.getTime());
tomorrow.setDate(tomorrow.getDate() + 1);
let yesterday = new Date(today.getTime());
yesterday.setDate(yesterday.getDate() - 1);
let path = `api/WorkerCalendars/absences`;
$httpBackend.whenGET(url => url.startsWith(path))
.respond({
holidays: [
{dated: today, detail: {description: 'New year'}},
{dated: tomorrow, detail: {description: 'Easter'}}
],
absences: [
{dated: today, absenceType: {name: 'Holiday', rgb: '#aaa'}},
{dated: yesterday, absenceType: {name: 'Leave', rgb: '#bbb'}}
]
});
controller.worker = {id: 1};
$httpBackend.flush();
2019-10-23 15:38:35 +00:00
let events = controller.events;
2019-10-23 15:38:35 +00:00
expect(events[today.getTime()].name).toEqual('Holiday');
expect(events[tomorrow.getTime()].name).toEqual('Easter');
expect(events[yesterday.getTime()].name).toEqual('Leave');
expect(events[yesterday.getTime()].color).toEqual('#bbb');
});
});
2019-10-23 15:38:35 +00:00
describe('formatDay()', () => {
it(`should set the day element style`, () => {
let today = new Date();
2019-10-23 15:38:35 +00:00
let path = `api/WorkerCalendars/absences`;
$httpBackend.whenGET(url => url.startsWith(path))
.respond({
absences: [
{dated: today, absenceType: {name: 'Holiday', rgb: '#000'}}
]
});
2019-10-23 15:38:35 +00:00
controller.worker = {id: 1};
$httpBackend.flush();
2019-10-23 15:38:35 +00:00
let dayElement = angular.element('<div><section></section></div>')[0];
let dayNumber = dayElement.firstElementChild;
2019-10-23 15:38:35 +00:00
controller.formatDay(today, dayElement);
2019-10-23 15:38:35 +00:00
expect(dayNumber.title).toEqual('Holiday');
expect(dayNumber.style.backgroundColor).toEqual('rgb(0, 0, 0)');
});
});
});
});