@finos/legend-graph
Version:
Legend graph and graph manager
38 lines • 1.76 kB
JavaScript
/**
* Copyright (c) 2020-present, Goldman Sachs
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { isNonNullable } from '@finos/legend-shared';
import { PackageableElement } from '../../graph/metamodel/pure/packageableElements/PackageableElement.js';
export const DEFAULT_TEST_SUITE_PREFIX = 'testSuite';
export const DEFAULT_TEST_PREFIX = 'test';
export const DEFAULT_TEST_ASSERTION_PREFIX = 'assertion';
export const getNullableTestable = (id, graph, plugins) =>
// TODO: REMOVE functions once function test runner has been completed in backend
// ...this.ownFunctions,
[...graph.ownTestables, ...graph.ownFunctions].find((e) => e instanceof PackageableElement && e.path === id) ??
plugins
.flatMap((plugin) => plugin.getExtraTestableFinders?.() ?? [])
.map((getter) => getter(id, graph))
.filter(isNonNullable)[0];
export const getNullableIDFromTestable = (testable, graph, plugins) => {
if (testable instanceof PackageableElement) {
return testable.path;
}
return plugins
.flatMap((plugin) => plugin.getExtraTestableIDBuilders?.() ?? [])
.map((getter) => getter(testable, graph))
.filter(isNonNullable)[0];
};
//# sourceMappingURL=DSL_Data_GraphManagerHelper.js.map