| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- const src_1 = require("../src");
- class TestingArchitectHost {
- /**
- * Can provide a backend host, in case of integration tests.
- * @param workspaceRoot The workspace root to use.
- * @param currentDirectory The current directory to use.
- * @param _backendHost A host to defer calls that aren't resolved here.
- */
- constructor(workspaceRoot = '', currentDirectory = workspaceRoot, _backendHost = null) {
- this.workspaceRoot = workspaceRoot;
- this.currentDirectory = currentDirectory;
- this._backendHost = _backendHost;
- this._builderImportMap = new Map();
- this._builderMap = new Map();
- this._targetMap = new Map();
- }
- addBuilder(builderName, builder, description = 'Testing only builder.', optionSchema = { type: 'object' }) {
- this._builderImportMap.set(builderName, builder);
- this._builderMap.set(builderName, { builderName, description, optionSchema });
- }
- async addBuilderFromPackage(packageName) {
- const packageJson = await Promise.resolve().then(() => require(packageName + '/package.json'));
- if (!('builders' in packageJson)) {
- throw new Error('Invalid package.json, builders key not found.');
- }
- if (!packageJson.name) {
- throw new Error('Invalid package name');
- }
- const builderJsonPath = packageName + '/' + packageJson['builders'];
- const builderJson = await Promise.resolve().then(() => require(builderJsonPath));
- const builders = builderJson['builders'];
- if (!builders) {
- throw new Error('Invalid builders.json, builders key not found.');
- }
- for (const builderName of Object.keys(builders)) {
- const b = builders[builderName];
- // TODO: remove this check as v1 is not supported anymore.
- if (!b.implementation) {
- continue;
- }
- const handler = (await Promise.resolve().then(() => require(builderJsonPath + '/../' + b.implementation))).default;
- const optionsSchema = await Promise.resolve().then(() => require(builderJsonPath + '/../' + b.schema));
- this.addBuilder(`${packageJson.name}:${builderName}`, handler, b.description, optionsSchema);
- }
- }
- addTarget(target, builderName, options = {}) {
- this._targetMap.set(src_1.targetStringFromTarget(target), { builderName, options });
- }
- async getBuilderNameForTarget(target) {
- const name = src_1.targetStringFromTarget(target);
- const maybeTarget = this._targetMap.get(name);
- if (!maybeTarget) {
- return this._backendHost && this._backendHost.getBuilderNameForTarget(target);
- }
- return maybeTarget.builderName;
- }
- /**
- * Resolve a builder. This needs to return a string which will be used in a dynamic `import()`
- * clause. This should throw if no builder can be found. The dynamic import will throw if
- * it is unsupported.
- * @param builderName The name of the builder to be used.
- * @returns All the info needed for the builder itself.
- */
- async resolveBuilder(builderName) {
- return this._builderMap.get(builderName)
- || (this._backendHost && this._backendHost.resolveBuilder(builderName));
- }
- async getCurrentDirectory() {
- return this.currentDirectory;
- }
- async getWorkspaceRoot() {
- return this.workspaceRoot;
- }
- async getOptionsForTarget(target) {
- const name = src_1.targetStringFromTarget(target);
- const maybeTarget = this._targetMap.get(name);
- if (!maybeTarget) {
- return this._backendHost && this._backendHost.getOptionsForTarget(target);
- }
- return maybeTarget.options;
- }
- async loadBuilder(info) {
- return this._builderImportMap.get(info.builderName)
- || (this._backendHost && this._backendHost.loadBuilder(info));
- }
- }
- exports.TestingArchitectHost = TestingArchitectHost;
|