mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
58 lines
2.1 KiB
TypeScript
58 lines
2.1 KiB
TypeScript
import CodeGenerator from '../../src';
|
|
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import { IPublicTypeProjectSchema } from '@alilc/lowcode-types';
|
|
import { createDiskPublisher } from '../helpers/solutionHelper';
|
|
import { IceJsProjectBuilderOptions } from '../../src/solutions/icejs';
|
|
|
|
const testCaseBaseName = path.basename(__filename, '.test.ts');
|
|
const inputSchemaJsonFile = path.join(__dirname, `${testCaseBaseName}.schema.json`);
|
|
const outputDir = path.join(__dirname, `${testCaseBaseName}.generated`);
|
|
|
|
jest.setTimeout(60 * 60 * 1000);
|
|
|
|
describe(testCaseBaseName, () => {
|
|
test('methods will be set to context in constructor', async () => {
|
|
await exportProject(inputSchemaJsonFile, outputDir, {}, { inStrictMode: true });
|
|
|
|
const generatedPageFileContent = readOutputTextFile('demo-project/src/pages/Test/index.jsx');
|
|
expect(generatedPageFileContent).not.toContain('_context = this;');
|
|
expect(generatedPageFileContent).toContain('_context = this._createContext();');
|
|
expect(generatedPageFileContent).toContain(
|
|
`
|
|
this._context.onChange = this.onChange;
|
|
this._context.getActions = this.getActions;
|
|
this._context.onCreateOrder = this.onCreateOrder;
|
|
this._context.onCancelModal = this.onCancelModal;
|
|
this._context.onConfirmCreateOrder = this.onConfirmCreateOrder;
|
|
`.trim(),
|
|
);
|
|
});
|
|
});
|
|
|
|
function exportProject(
|
|
importPath: string,
|
|
outputPath: string,
|
|
mergeSchema?: Partial<IPublicTypeProjectSchema>,
|
|
options?: IceJsProjectBuilderOptions,
|
|
) {
|
|
const schemaJsonStr = fs.readFileSync(importPath, { encoding: 'utf8' });
|
|
const schema = { ...JSON.parse(schemaJsonStr), ...mergeSchema };
|
|
const builder = CodeGenerator.solutions.icejs(options);
|
|
|
|
return builder.generateProject(schema).then(async (result) => {
|
|
const publisher = createDiskPublisher();
|
|
await publisher.publish({
|
|
project: result,
|
|
outputPath,
|
|
projectSlug: 'demo-project',
|
|
createProjectFolder: true,
|
|
});
|
|
return result;
|
|
});
|
|
}
|
|
|
|
function readOutputTextFile(outputFilePath: string): string {
|
|
return fs.readFileSync(path.resolve(outputDir, outputFilePath), 'utf-8');
|
|
}
|