762c7555f95ebdabf6542fa3b090b6ad16e505be
[policy/apex-pdp.git] /
1 /*
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
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  * 
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.
16  * 
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.model.basicmodel.handling;
22
23 import java.util.UUID;
24
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;
30
31 public class TestApexBasicModelCreator implements TestApexModelCreator<AxModel> {
32
33     @Override
34     public AxModel getModel() {
35         AxModel basicModel = new AxModel();
36
37         basicModel.setKey(new AxArtifactKey("BasicModel", "0.0.1"));
38         basicModel.setKeyInformation(new AxKeyInformation(new AxArtifactKey("KeyInfoMapKey", "0.0.1")));
39
40         basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKey(), new AxKeyInfo(basicModel.getKey()));
41         basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKeyInformation().getKey(), new AxKeyInfo(basicModel.getKeyInformation().getKey()));
42
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()));
45
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()));
48
49         return basicModel;
50     }
51
52     @Override
53     public final AxModel getMalstructuredModel() {
54         AxModel basicModel = new AxModel();
55
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")));
59
60         basicModel.getKeyInformation().getKeyInfoMap().put(
61                 basicModel.getKey(),
62                 new AxKeyInfo(
63                         basicModel.getKey(),
64                         UUID.fromString("00000000-0000-0000-0000-000000000000"),
65                         "\nbasic model description\nThis is a multi line description\nwith another line of text."));
66
67         return basicModel;
68     }
69
70     @Override
71     public final AxModel getObservationModel() {
72         AxModel basicModel = getModel();
73
74         // Set key information as blank
75         basicModel.getKeyInformation().getKeyInfoMap().get(basicModel.getKey()).setDescription("");
76
77         return basicModel;
78     }
79
80     @Override
81     public final AxModel getWarningModel() {
82         AxModel basicModel = getModel();
83
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"));
87
88         basicModel.getKeyInformation().getKeyInfoMap().put(unreferencedKeyInfo0.getKey(), unreferencedKeyInfo0);
89         basicModel.getKeyInformation().getKeyInfoMap().put(unreferencedKeyInfo1.getKey(), unreferencedKeyInfo1);
90
91         return basicModel;
92     }
93
94     @Override
95     public final AxModel getInvalidModel() {
96         AxModel basicModel = new AxModel();
97
98         basicModel.setKey(new AxArtifactKey("BasicModelKey", "0.0.1"));
99         basicModel.setKeyInformation(new AxKeyInformation(new AxArtifactKey("KeyInfoMapKey", "0.0.1")));
100
101         basicModel.getKeyInformation().getKeyInfoMap().put(
102                 basicModel.getKey(),
103                 new AxKeyInfo(
104                         basicModel.getKey(),
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(),
109                 new AxKeyInfo(
110                         basicModel.getKeyInformation().getKey(),
111                         UUID.fromString("00000000-0000-0000-0000-000000000000"),
112                         ""));
113
114         return basicModel;
115     }
116     
117     public final AxModelWithReferences getModelWithReferences() {
118         AxModel model = getModel();
119         
120         AxModelWithReferences modelWithReferences = new AxModelWithReferences(model.getKey());
121         modelWithReferences.setKeyInformation(model.getKeyInformation());
122         modelWithReferences.setReferenceKeyList();
123         
124         return modelWithReferences;
125     }
126 }