2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2016-2018 Ericsson. All rights reserved.
4 * ================================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
9 * http://www.apache.org/licenses/LICENSE-2.0
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.model.basicmodel.handling;
23 import java.util.UUID;
25 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
26 import org.onap.policy.apex.model.basicmodel.concepts.AxKeyInfo;
27 import org.onap.policy.apex.model.basicmodel.concepts.AxKeyInformation;
28 import org.onap.policy.apex.model.basicmodel.concepts.AxModel;
29 import org.onap.policy.apex.model.basicmodel.test.TestApexModelCreator;
31 public class TestApexBasicModelCreator implements TestApexModelCreator<AxModel> {
34 public AxModel getModel() {
35 AxModel basicModel = new AxModel();
37 basicModel.setKey(new AxArtifactKey("BasicModel", "0.0.1"));
38 basicModel.setKeyInformation(new AxKeyInformation(new AxArtifactKey("KeyInfoMapKey", "0.0.1")));
40 basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKey(), new AxKeyInfo(basicModel.getKey()));
41 basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKeyInformation().getKey(), new AxKeyInfo(basicModel.getKeyInformation().getKey()));
43 AxKeyInfo intKI = new AxKeyInfo(new AxArtifactKey("IntegerKIKey", "0.0.1"), UUID.randomUUID(), "IntegerKIKey description");
44 basicModel.getKeyInformation().getKeyInfoMap().put(intKI.getKey(), new AxKeyInfo(intKI.getKey()));
46 AxKeyInfo floatKI = new AxKeyInfo(new AxArtifactKey("FloatKIKey", "0.0.1"), UUID.randomUUID(), "FloatKIKey description");
47 basicModel.getKeyInformation().getKeyInfoMap().put(floatKI.getKey(), new AxKeyInfo(floatKI.getKey()));
53 public final AxModel getMalstructuredModel() {
54 AxModel basicModel = new AxModel();
56 // Note: No Data types
57 basicModel.setKey(new AxArtifactKey("BasicModelKey", "0.0.1"));
58 basicModel.setKeyInformation(new AxKeyInformation(new AxArtifactKey("KeyInfoMapKey", "0.0.1")));
60 basicModel.getKeyInformation().getKeyInfoMap().put(
64 UUID.fromString("00000000-0000-0000-0000-000000000000"),
65 "\nbasic model description\nThis is a multi line description\nwith another line of text."));
71 public final AxModel getObservationModel() {
72 AxModel basicModel = getModel();
74 // Set key information as blank
75 basicModel.getKeyInformation().getKeyInfoMap().get(basicModel.getKey()).setDescription("");
81 public final AxModel getWarningModel() {
82 AxModel basicModel = getModel();
84 // Add unreferenced key information
85 AxKeyInfo unreferencedKeyInfo0 = new AxKeyInfo(new AxArtifactKey("Unref0", "0.0.1"));
86 AxKeyInfo unreferencedKeyInfo1 = new AxKeyInfo(new AxArtifactKey("Unref1", "0.0.1"));
88 basicModel.getKeyInformation().getKeyInfoMap().put(unreferencedKeyInfo0.getKey(), unreferencedKeyInfo0);
89 basicModel.getKeyInformation().getKeyInfoMap().put(unreferencedKeyInfo1.getKey(), unreferencedKeyInfo1);
95 public final AxModel getInvalidModel() {
96 AxModel basicModel = new AxModel();
98 basicModel.setKey(new AxArtifactKey("BasicModelKey", "0.0.1"));
99 basicModel.setKeyInformation(new AxKeyInformation(new AxArtifactKey("KeyInfoMapKey", "0.0.1")));
101 basicModel.getKeyInformation().getKeyInfoMap().put(
105 UUID.fromString("00000000-0000-0000-0000-000000000000"),
106 "nbasic model description\nThis is a multi line description\nwith another line of text."));
107 basicModel.getKeyInformation().getKeyInfoMap().put(
108 basicModel.getKeyInformation().getKey(),
110 basicModel.getKeyInformation().getKey(),
111 UUID.fromString("00000000-0000-0000-0000-000000000000"),
117 public final AxModelWithReferences getModelWithReferences() {
118 AxModel model = getModel();
120 AxModelWithReferences modelWithReferences = new AxModelWithReferences(model.getKey());
121 modelWithReferences.setKeyInformation(model.getKeyInformation());
122 modelWithReferences.setReferenceKeyList();
124 return modelWithReferences;