83 lines
2.1 KiB
JavaScript
83 lines
2.1 KiB
JavaScript
'use strict';
|
|
|
|
var expect = require('expect.js');
|
|
var Task = require('../../src/task');
|
|
|
|
describe('Task', () => {
|
|
describe('month', () => {
|
|
it('should run a task on month', () => {
|
|
let executed = 0;
|
|
var task = new Task('* * * * *', () => {
|
|
executed += 1;
|
|
});
|
|
var date = new Date(2016, 1, 1);
|
|
date.setMonth(0);
|
|
task.update(date);
|
|
date.setMonth(10);
|
|
task.update(date);
|
|
date.setMonth(12);
|
|
task.update(date);
|
|
expect(3).to.equal(executed);
|
|
});
|
|
|
|
it('should run only on month 9', () => {
|
|
let executed = 0;
|
|
var task = new Task('* * * 9 *', () => {
|
|
executed += 1;
|
|
});
|
|
var date = new Date(2016, 3, 1);
|
|
date.setMonth(3);
|
|
task.update(date);
|
|
date.setMonth(8);
|
|
task.update(date);
|
|
date.setMonth(10);
|
|
task.update(date);
|
|
expect(1).to.equal(executed);
|
|
});
|
|
|
|
it('should run only on months 2, 4 and 6 ', () => {
|
|
let executed = 0;
|
|
var task = new Task('* * * 2,4,6 *', () => {
|
|
executed += 1;
|
|
});
|
|
var date = new Date(2016, 1, 1);
|
|
date.setMonth(0);
|
|
task.update(date);
|
|
date.setMonth(1);
|
|
task.update(date);
|
|
date.setMonth(3);
|
|
task.update(date);
|
|
date.setMonth(5);
|
|
task.update(date);
|
|
date.setMonth(7);
|
|
task.update(date);
|
|
expect(3).to.equal(executed);
|
|
});
|
|
|
|
it('should run in even months', () => {
|
|
let executed = 0;
|
|
var task = new Task('* * * */2 *', () => {
|
|
executed += 1;
|
|
});
|
|
var date = new Date(2016, 1, 1);
|
|
date.setMonth(1);
|
|
task.update(date);
|
|
date.setMonth(9);
|
|
task.update(date);
|
|
date.setMonth(8);
|
|
task.update(date);
|
|
expect(2).to.equal(executed);
|
|
});
|
|
|
|
it('should run on September', () => {
|
|
let executed = 0;
|
|
var task = new Task('* * * Sep *', () => {
|
|
executed += 1;
|
|
});
|
|
task.update(new Date(2016, 8, 1));
|
|
expect(1).to.equal(executed);
|
|
});
|
|
});
|
|
});
|
|
|