Major refactoring using ESLint with rules from AirBnb and Vue. Enable most of the ESLint rules and do necessary linting in the code. Also add more information for rules that are disabled to describe what they are and why they are disabled. Allow logging (`console.log`) in test files, and in development mode (e.g. when working with `npm run serve`), but disable it when environment is production (as pre-configured by Vue). Also add flag (`--mode production`) in `lint:eslint` command so production linting is executed earlier in lifecycle. Disable rules that requires a separate work. Such as ESLint rules that are broken in TypeScript: no-useless-constructor (eslint/eslint#14118) and no-shadow (eslint/eslint#13014).
122 lines
4.3 KiB
TypeScript
122 lines
4.3 KiB
TypeScript
import 'mocha';
|
|
import { expect } from 'chai';
|
|
import { Category } from '@/domain/Category';
|
|
import { CategoryStub } from '@tests/unit/stubs/CategoryStub';
|
|
import { ScriptStub } from '@tests/unit/stubs/ScriptStub';
|
|
|
|
describe('Category', () => {
|
|
describe('ctor', () => {
|
|
it('throws when name is empty', () => {
|
|
const expectedError = 'undefined or empty name';
|
|
const construct = () => new Category(5, '', [], [new CategoryStub(5)], []);
|
|
expect(construct).to.throw(expectedError);
|
|
});
|
|
it('throws when has no children', () => {
|
|
const expectedError = 'A category must have at least one sub-category or script';
|
|
const construct = () => new Category(5, 'category', [], [], []);
|
|
expect(construct).to.throw(expectedError);
|
|
});
|
|
});
|
|
describe('getAllScriptsRecursively', () => {
|
|
it('gets child scripts', () => {
|
|
// arrange
|
|
const expected = [new ScriptStub('1'), new ScriptStub('2')];
|
|
const sut = new Category(0, 'category', [], [], expected);
|
|
// act
|
|
const actual = sut.getAllScriptsRecursively();
|
|
// assert
|
|
expect(actual).to.have.deep.members(expected);
|
|
});
|
|
it('gets child categories', () => {
|
|
// arrange
|
|
const expectedScriptIds = ['1', '2', '3', '4'];
|
|
const categories = [
|
|
new CategoryStub(31).withScriptIds('1', '2'),
|
|
new CategoryStub(32).withScriptIds('3', '4'),
|
|
];
|
|
const sut = new Category(0, 'category', [], categories, []);
|
|
// act
|
|
const actualIds = sut.getAllScriptsRecursively().map((s) => s.id);
|
|
// assert
|
|
expect(actualIds).to.have.deep.members(expectedScriptIds);
|
|
});
|
|
it('gets child scripts and categories', () => {
|
|
// arrange
|
|
const expectedScriptIds = ['1', '2', '3', '4', '5', '6'];
|
|
const categories = [
|
|
new CategoryStub(31).withScriptIds('1', '2'),
|
|
new CategoryStub(32).withScriptIds('3', '4'),
|
|
];
|
|
const scripts = [new ScriptStub('5'), new ScriptStub('6')];
|
|
const sut = new Category(0, 'category', [], categories, scripts);
|
|
// act
|
|
const actualIds = sut.getAllScriptsRecursively().map((s) => s.id);
|
|
// assert
|
|
expect(actualIds).to.have.deep.members(expectedScriptIds);
|
|
});
|
|
it('gets child categories recursively', () => {
|
|
// arrange
|
|
const expectedScriptIds = ['1', '2', '3', '4', '5', '6'];
|
|
const categories = [
|
|
new CategoryStub(31)
|
|
.withScriptIds('1', '2')
|
|
.withCategory(
|
|
new CategoryStub(32)
|
|
.withScriptIds('3', '4'),
|
|
),
|
|
new CategoryStub(33)
|
|
.withCategories(
|
|
new CategoryStub(34)
|
|
.withScriptIds('5')
|
|
.withCategory(
|
|
new CategoryStub(35)
|
|
.withCategory(
|
|
new CategoryStub(35).withScriptIds('6'),
|
|
),
|
|
),
|
|
),
|
|
];
|
|
// assert
|
|
const sut = new Category(0, 'category', [], categories, []);
|
|
// act
|
|
const actualIds = sut.getAllScriptsRecursively().map((s) => s.id);
|
|
// assert
|
|
expect(actualIds).to.have.deep.members(expectedScriptIds);
|
|
});
|
|
});
|
|
describe('includes', () => {
|
|
it('return false when does not include', () => {
|
|
// assert
|
|
const script = new ScriptStub('3');
|
|
const sut = new Category(0, 'category', [], [new CategoryStub(33).withScriptIds('1', '2')], []);
|
|
// act
|
|
const actual = sut.includes(script);
|
|
// assert
|
|
expect(actual).to.equal(false);
|
|
});
|
|
it('return true when includes as subscript', () => {
|
|
// assert
|
|
const script = new ScriptStub('3');
|
|
const sut = new Category(0, 'category', [], [
|
|
new CategoryStub(33).withScript(script).withScriptIds('non-related'),
|
|
], []);
|
|
// act
|
|
const actual = sut.includes(script);
|
|
// assert
|
|
expect(actual).to.equal(true);
|
|
});
|
|
it('return true when includes as nested category script', () => {
|
|
// assert
|
|
const script = new ScriptStub('3');
|
|
const innerCategory = new CategoryStub(22)
|
|
.withScriptIds('non-related')
|
|
.withCategory(new CategoryStub(33).withScript(script));
|
|
const sut = new Category(11, 'category', [], [innerCategory], []);
|
|
// act
|
|
const actual = sut.includes(script);
|
|
// assert
|
|
expect(actual).to.equal(true);
|
|
});
|
|
});
|
|
});
|