@finos/legend-graph
Version:
Legend graph and graph manager
105 lines • 3.15 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 { hashArray, uuid } from '@finos/legend-shared';
import { CORE_HASH_STRUCTURE } from '../../../../../graph/Core_HashUtils.js';
/**
* TODO: Remove once migration from `ServiceTest_Legacy` to `ServiceTest` is complete
* @deprecated
*/
export class DEPRECATED__ServiceTest {
_OWNER;
constructor(owner) {
this._OWNER = owner;
}
}
/**
* TODO: Remove once migration from `ServiceTest_Legacy` to `ServiceTest` is complete
* @deprecated
*/
export class DEPRECATED__TestContainer {
_UUID = uuid();
parametersValues = []; // Any[*]; // ValueSpecification?
/**
* Studio does not process value specification, they are left in raw JSON form
*
* @discrepancy model
*/
assert;
singleExecutionTestParent;
constructor(assert, parent) {
this.assert = assert;
this.singleExecutionTestParent = parent;
}
get hashCode() {
return hashArray([
CORE_HASH_STRUCTURE.SERVICE_TEST_CONTAINER,
// this.parameterValues,
this.assert,
]);
}
}
/**
* TODO: Remove once migration from `ServiceTest_Legacy` to `ServiceTest` is complete
* @deprecated
*/
export class DEPRECATED__SingleExecutionTest extends DEPRECATED__ServiceTest {
data;
asserts = [];
constructor(owner, data) {
super(owner);
this.data = data;
}
get hashCode() {
return hashArray([
CORE_HASH_STRUCTURE.SERVICE_LEGACY_SINGLE_EXECUTION_TEST,
this.data,
hashArray(this.asserts),
]);
}
}
/**
* TODO: Remove once migration from `ServiceTest_Legacy` to `ServiceTest` is complete
* @deprecated
*/
export class DEPRECATED__KeyedSingleExecutionTest extends DEPRECATED__SingleExecutionTest {
key;
constructor(key, parentService, data) {
super(parentService, data);
this.key = key;
}
get hashCode() {
return hashArray([
CORE_HASH_STRUCTURE.SERVICE_LEGACY_KEYED_SINGLE_EXECUTION_TEST,
this.key,
this.data,
hashArray(this.asserts),
]);
}
}
/**
* TODO: Remove once migration from `ServiceTest_Legacy` to `ServiceTest` is complete
* @deprecated
*/
export class DEPRECATED__MultiExecutionTest extends DEPRECATED__ServiceTest {
tests = [];
get hashCode() {
return hashArray([
CORE_HASH_STRUCTURE.SERVICE_LEGACY_MULTI_EXECUTION_TEST,
hashArray(this.tests),
]);
}
}
//# sourceMappingURL=DEPRECATED__ServiceTest.js.map