2019-10-29 00:31:47 +00:00
|
|
|
import { expect } from 'chai';
|
2019-11-17 17:55:33 +00:00
|
|
|
import { ConsoleLogger, LogLevel, NullLogger } from 'noicejs';
|
2019-10-29 00:31:47 +00:00
|
|
|
|
2019-11-17 17:55:33 +00:00
|
|
|
import { createRuleSelector, createRuleSources, resolveRules, validateRules } from '../../src/rule';
|
2019-11-02 12:48:12 +00:00
|
|
|
import { SchemaRule } from '../../src/rule/SchemaRule';
|
2019-11-17 17:55:33 +00:00
|
|
|
import { VisitorContext } from '../../src/visitor/VisitorContext';
|
2019-11-02 03:02:25 +00:00
|
|
|
import { describeLeaks, itLeaks } from '../helpers/async';
|
2019-10-29 00:31:47 +00:00
|
|
|
|
2019-11-02 03:02:25 +00:00
|
|
|
const TEST_RULES = [new SchemaRule({
|
2019-10-29 00:31:47 +00:00
|
|
|
check: {},
|
|
|
|
desc: '',
|
2019-11-11 03:52:56 +00:00
|
|
|
level: LogLevel.Info,
|
2019-10-29 00:31:47 +00:00
|
|
|
name: 'foo',
|
|
|
|
select: '$',
|
|
|
|
tags: ['all', 'foo'],
|
2019-11-02 03:02:25 +00:00
|
|
|
}), new SchemaRule({
|
2019-10-29 00:31:47 +00:00
|
|
|
check: {},
|
|
|
|
desc: '',
|
2019-11-11 03:52:56 +00:00
|
|
|
level: LogLevel.Warn,
|
2019-10-29 00:31:47 +00:00
|
|
|
name: 'bar',
|
|
|
|
select: '$',
|
|
|
|
tags: ['all', 'test'],
|
2019-11-02 03:02:25 +00:00
|
|
|
}), new SchemaRule({
|
2019-10-29 00:31:47 +00:00
|
|
|
check: {},
|
|
|
|
desc: '',
|
2019-11-11 03:52:56 +00:00
|
|
|
level: LogLevel.Warn,
|
2019-10-29 00:31:47 +00:00
|
|
|
name: 'bin',
|
|
|
|
select: '$',
|
|
|
|
tags: ['all', 'test'],
|
|
|
|
})];
|
|
|
|
|
|
|
|
describeLeaks('rule resolver', async () => {
|
|
|
|
describeLeaks('include by level', async () => {
|
|
|
|
itLeaks('should include info rules', async () => {
|
2019-11-02 12:48:12 +00:00
|
|
|
const info = await resolveRules(TEST_RULES, createRuleSelector({
|
2019-11-11 03:52:56 +00:00
|
|
|
includeLevel: [LogLevel.Info],
|
2019-10-29 00:31:47 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
expect(info.length).to.equal(1);
|
|
|
|
expect(info[0]).to.equal(TEST_RULES[0]);
|
|
|
|
});
|
|
|
|
|
|
|
|
itLeaks('should include warn rules', async () => {
|
2019-11-02 12:48:12 +00:00
|
|
|
const info = await resolveRules(TEST_RULES, createRuleSelector({
|
2019-11-11 03:52:56 +00:00
|
|
|
includeLevel: [LogLevel.Warn],
|
2019-10-29 00:31:47 +00:00
|
|
|
}));
|
|
|
|
|
|
|
|
expect(info.length).to.equal(2);
|
|
|
|
expect(info[0]).to.equal(TEST_RULES[1]);
|
|
|
|
expect(info[1]).to.equal(TEST_RULES[2]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describeLeaks('include by name', async () => {
|
|
|
|
itLeaks('should include foo rules', async () => {
|
2019-11-02 12:48:12 +00:00
|
|
|
const rules = await resolveRules(TEST_RULES, createRuleSelector({
|
2019-10-29 00:31:47 +00:00
|
|
|
includeName: ['foo'],
|
|
|
|
}));
|
|
|
|
|
|
|
|
expect(rules.length).to.equal(1);
|
|
|
|
expect(rules[0].name).to.equal('foo');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describeLeaks('include by tag', async () => {
|
|
|
|
itLeaks('should include test rules', async () => {
|
2019-11-02 12:48:12 +00:00
|
|
|
const rules = await resolveRules(TEST_RULES, createRuleSelector({
|
2019-10-29 00:31:47 +00:00
|
|
|
includeTag: ['test'],
|
|
|
|
}));
|
|
|
|
|
|
|
|
expect(rules.length).to.equal(2);
|
|
|
|
expect(rules[0]).to.equal(TEST_RULES[1]);
|
|
|
|
expect(rules[1]).to.equal(TEST_RULES[2]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describeLeaks('exclude by name', async () => {
|
|
|
|
itLeaks('should exclude foo rules', async () => {
|
2019-11-02 12:48:12 +00:00
|
|
|
const rules = await resolveRules(TEST_RULES, createRuleSelector({
|
2019-10-29 00:31:47 +00:00
|
|
|
excludeName: ['foo'],
|
|
|
|
includeTag: ['all'],
|
|
|
|
}));
|
|
|
|
|
|
|
|
expect(rules.length).to.equal(2);
|
|
|
|
expect(rules[0]).to.equal(TEST_RULES[1]);
|
|
|
|
expect(rules[1]).to.equal(TEST_RULES[2]);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describeLeaks('exclude by tag', async () => {
|
|
|
|
itLeaks('should exclude test rules', async () => {
|
2019-11-02 12:48:12 +00:00
|
|
|
const rules = await resolveRules(TEST_RULES, createRuleSelector({
|
2019-10-29 00:31:47 +00:00
|
|
|
excludeTag: ['test'],
|
|
|
|
includeTag: ['all'],
|
|
|
|
}));
|
|
|
|
|
|
|
|
expect(rules.length).to.equal(1);
|
|
|
|
expect(rules[0]).to.equal(TEST_RULES[0]);
|
|
|
|
});
|
|
|
|
});
|
2019-11-17 00:27:39 +00:00
|
|
|
|
|
|
|
describeLeaks('exclude by level', async () => {
|
|
|
|
itLeaks('should exclude warn rules', async () => {
|
|
|
|
const rules = await resolveRules(TEST_RULES, createRuleSelector({
|
|
|
|
excludeLevel: [LogLevel.Warn],
|
|
|
|
includeTag: ['all'],
|
|
|
|
}));
|
|
|
|
|
|
|
|
expect(rules.length).to.equal(1);
|
|
|
|
expect(rules[0]).to.equal(TEST_RULES[0]);
|
|
|
|
});
|
|
|
|
});
|
2019-10-29 00:31:47 +00:00
|
|
|
});
|
|
|
|
|
2019-11-03 19:05:11 +00:00
|
|
|
describe('create rule sources helper', () => {
|
|
|
|
it('should ensure every field is an array', () => {
|
|
|
|
const sources = createRuleSources({});
|
|
|
|
|
|
|
|
expect(sources).to.have.deep.property('ruleFile', []);
|
|
|
|
expect(sources).to.have.deep.property('ruleModule', []);
|
|
|
|
expect(sources).to.have.deep.property('rulePath', []);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
describe('create rule selector helper', () => {
|
|
|
|
it('should ensure every field is an array', () => {
|
|
|
|
const sources = createRuleSelector({});
|
|
|
|
|
|
|
|
expect(sources).to.have.deep.property('excludeLevel', []);
|
|
|
|
expect(sources).to.have.deep.property('excludeName', []);
|
|
|
|
expect(sources).to.have.deep.property('excludeTag', []);
|
|
|
|
expect(sources).to.have.deep.property('includeLevel', []);
|
|
|
|
expect(sources).to.have.deep.property('includeName', []);
|
|
|
|
expect(sources).to.have.deep.property('includeTag', []);
|
2019-10-29 03:23:10 +00:00
|
|
|
});
|
2019-10-29 00:31:47 +00:00
|
|
|
});
|
2019-11-17 17:55:33 +00:00
|
|
|
|
|
|
|
describeLeaks('validate rule helper', async () => {
|
|
|
|
itLeaks('should accept valid modules', async () => {
|
|
|
|
const ctx = new VisitorContext({
|
|
|
|
logger: ConsoleLogger.global,
|
|
|
|
schemaOptions: {
|
|
|
|
coerce: false,
|
|
|
|
defaults: false,
|
|
|
|
mutate: false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(validateRules(ctx, {
|
|
|
|
name: 'test',
|
|
|
|
rules: [],
|
|
|
|
})).to.equal(true);
|
|
|
|
});
|
|
|
|
|
|
|
|
itLeaks('should reject partial modules', async () => {
|
|
|
|
const ctx = new VisitorContext({
|
|
|
|
logger: NullLogger.global,
|
|
|
|
schemaOptions: {
|
|
|
|
coerce: false,
|
|
|
|
defaults: false,
|
|
|
|
mutate: false,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(validateRules(ctx, {})).to.equal(false);
|
|
|
|
expect(validateRules(ctx, {
|
|
|
|
name: '',
|
|
|
|
})).to.equal(false);
|
|
|
|
});
|
|
|
|
});
|