@bitloops/bl-transpiler
Version:
The one and only Bitloops Language transpiler
70 lines • 2.95 kB
JavaScript
/**
* Bitloops Language CLI
* Copyright (C) 2022 Bitloops S.A.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* For further information you can contact legal(at)bitloops.com.
*/
import { ClassTypes } from '../../src/helpers/mappings.js';
import Transpiler from '../../src/Transpiler.js';
import { transpiler } from '../../src/index.js';
import { SupportedLanguages } from '../../src/target/supportedLanguages.js';
import { formatString } from '../../src/target/typescript-nest/core/codeFormatting.js';
import { VALUE_OBJECT_PRIMITIVES_END_TO_END_TEST_CASES } from './mocks/value-object-primitives/index.js';
describe('Valid fromPrimitives & toPrimitives of value objects End To End', () => {
const boundedContext = 'Hello world';
const module = 'demo';
const fileId = 'fileName';
const options = {
formatterConfig: null,
targetLanguage: SupportedLanguages.TypeScriptNest,
};
let targetCode;
VALUE_OBJECT_PRIMITIVES_END_TO_END_TEST_CASES.forEach((testCase) => {
it(`${testCase.description}`, () => {
// given
const input = {
core: [
{
boundedContext,
module,
fileId,
fileContents: testCase.input,
},
],
setup: [],
};
// when
const result = transpiler.transpile(input, options);
if (!Transpiler.isTranspileError(result)) {
targetCode = result;
}
else {
throw new Error('Transpile error');
}
// then
for (const output of testCase.outputs) {
const formattedOutput = formatString(output.content, options.formatterConfig);
const entityOutput = targetCode.core.find((item) => item.classType === ClassTypes.ValueObject && item.className === output.className);
expect(entityOutput).toBeDefined();
if (!entityOutput) {
throw new Error('Entity output not found');
}
expect(entityOutput.fileContent).toEqual(formattedOutput);
}
});
});
});
//# sourceMappingURL=value-object-primitives.steps.js.map