You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
946 B
33 lines
946 B
2 years ago
|
'use strict';
|
||
|
|
||
|
const { expect } = require('chai');
|
||
|
const validate = require('../../src/pattern-validation');
|
||
|
|
||
|
describe('pattern-validation.js', () => {
|
||
|
describe('validate day of month', () => {
|
||
|
it('should fail with invalid day of month', () => {
|
||
|
expect(() => {
|
||
|
validate('* * 32 * *');
|
||
|
}).to.throw('32 is a invalid expression for day of month');
|
||
|
});
|
||
|
|
||
|
it('should not fail with valid day of month', () => {
|
||
|
expect(() => {
|
||
|
validate('0 * * 15 * *');
|
||
|
}).to.not.throw();
|
||
|
});
|
||
|
|
||
|
it('should not fail with * for day of month', () => {
|
||
|
expect(() => {
|
||
|
validate('* * * * * *');
|
||
|
}).to.not.throw();
|
||
|
});
|
||
|
|
||
|
it('should not fail with */2 for day of month', () => {
|
||
|
expect(() => {
|
||
|
validate('* * */2 * *');
|
||
|
}).to.not.throw();
|
||
|
});
|
||
|
});
|
||
|
});
|