Alias would remove unnecessary repetitions and less relative paths make changes easier when moving around files. This commit cleans also up some relative paths ('../../../') by using the alias and orders imports. It updates both path alias in tsconfig and module alias in Vue CLI's bundler (vuejs/vue-cli#2398).
88 lines
3.5 KiB
TypeScript
88 lines
3.5 KiB
TypeScript
import 'mocha';
|
|
import { expect } from 'chai';
|
|
import { IExpression } from '@/application/Parser/Script/Compiler/Expressions/Expression/IExpression';
|
|
import { IExpressionParser } from '@/application/Parser/Script/Compiler/Expressions/Parser/IExpressionParser';
|
|
import { CompositeExpressionParser } from '@/application/Parser/Script/Compiler/Expressions/Parser/CompositeExpressionParser';
|
|
import { ExpressionStub } from '@tests/unit/stubs/ExpressionStub';
|
|
|
|
describe('CompositeExpressionParser', () => {
|
|
describe('ctor', () => {
|
|
it('throws if one of the parsers is undefined', () => {
|
|
// arrange
|
|
const expectedError = 'undefined leaf';
|
|
const parsers: readonly IExpressionParser[] = [ undefined, mockParser() ];
|
|
// act
|
|
const act = () => new CompositeExpressionParser(parsers);
|
|
// assert
|
|
expect(act).to.throw(expectedError);
|
|
});
|
|
});
|
|
describe('findExpressions', () => {
|
|
describe('returns result from parsers as expected', () => {
|
|
// arrange
|
|
const pool = [
|
|
new ExpressionStub(), new ExpressionStub(), new ExpressionStub(),
|
|
new ExpressionStub(), new ExpressionStub(),
|
|
];
|
|
const testCases = [
|
|
{
|
|
name: 'from single parsing none',
|
|
parsers: [ mockParser() ],
|
|
expected: [],
|
|
},
|
|
{
|
|
name: 'from single parsing single',
|
|
parsers: [ mockParser(pool[0]) ],
|
|
expected: [ pool[0] ],
|
|
},
|
|
{
|
|
name: 'from single parsing multiple',
|
|
parsers: [ mockParser(pool[0], pool[1]) ],
|
|
expected: [ pool[0], pool[1] ],
|
|
},
|
|
{
|
|
name: 'from multiple parsers with each parsing single',
|
|
parsers: [
|
|
mockParser(pool[0]),
|
|
mockParser(pool[1]),
|
|
mockParser(pool[2]),
|
|
],
|
|
expected: [ pool[0], pool[1], pool[2] ],
|
|
},
|
|
{
|
|
name: 'from multiple parsers with each parsing multiple',
|
|
parsers: [
|
|
mockParser(pool[0], pool[1]),
|
|
mockParser(pool[2], pool[3], pool[4]) ],
|
|
expected: [ pool[0], pool[1], pool[2], pool[3], pool[4] ],
|
|
},
|
|
{
|
|
name: 'from multiple parsers with only some parsing',
|
|
parsers: [
|
|
mockParser(pool[0], pool[1]),
|
|
mockParser(),
|
|
mockParser(pool[2]),
|
|
mockParser(),
|
|
],
|
|
expected: [ pool[0], pool[1], pool[2] ],
|
|
},
|
|
];
|
|
for (const testCase of testCases) {
|
|
it(testCase.name, () => {
|
|
const sut = new CompositeExpressionParser(testCase.parsers);
|
|
// act
|
|
const result = sut.findExpressions('non-important-code');
|
|
// expect
|
|
expect(result).to.deep.equal(testCase.expected);
|
|
});
|
|
}
|
|
});
|
|
});
|
|
});
|
|
|
|
function mockParser(...result: IExpression[]): IExpressionParser {
|
|
return {
|
|
findExpressions: () => result,
|
|
};
|
|
}
|