Changes for checkstyle 8.32
[policy/apex-pdp.git] / model / basic-model / src / test / java / org / onap / policy / apex / model / basicmodel / handling / DummyApexBasicModelCreator.java
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 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
25 import org.onap.policy.apex.model.basicmodel.concepts.AxKeyInfo;
26 import org.onap.policy.apex.model.basicmodel.concepts.AxKeyInformation;
27 import org.onap.policy.apex.model.basicmodel.concepts.AxModel;
28 import org.onap.policy.apex.model.basicmodel.test.TestApexModelCreator;
29
30 public class DummyApexBasicModelCreator implements TestApexModelCreator<AxModel> {
31
32     @Override
33     public AxModel getModel() {
34         AxModel basicModel = new AxModel();
35
36         basicModel.setKey(new AxArtifactKey("BasicModel", "0.0.1"));
37         basicModel.setKeyInformation(new AxKeyInformation(new AxArtifactKey("KeyInfoMapKey", "0.0.1")));
38
39         basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKey(), new AxKeyInfo(basicModel.getKey()));
40         basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKeyInformation().getKey(),
41                         new AxKeyInfo(basicModel.getKeyInformation().getKey()));
42
43         AxKeyInfo intKeyInfo = new AxKeyInfo(new AxArtifactKey("IntegerKIKey", "0.0.1"), UUID.randomUUID(),
44                         "IntegerKIKey description");
45         basicModel.getKeyInformation().getKeyInfoMap().put(intKeyInfo.getKey(), new AxKeyInfo(intKeyInfo.getKey()));
46
47         AxKeyInfo floatKeyInfo = new AxKeyInfo(new AxArtifactKey("FloatKIKey", "0.0.1"), UUID.randomUUID(),
48                         "FloatKIKey description");
49         basicModel.getKeyInformation().getKeyInfoMap().put(floatKeyInfo.getKey(), new AxKeyInfo(floatKeyInfo.getKey()));
50
51         return basicModel;
52     }
53
54     @Override
55     public final AxModel getMalstructuredModel() {
56         AxModel basicModel = new AxModel();
57
58         // Note: No Data types
59         basicModel.setKey(new AxArtifactKey("BasicModelKey", "0.0.1"));
60         basicModel.setKeyInformation(new AxKeyInformation(new AxArtifactKey("KeyInfoMapKey", "0.0.1")));
61
62         basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKey(), new AxKeyInfo(basicModel.getKey(),
63                         UUID.fromString("00000000-0000-0000-0000-000000000000"),
64                         "\nbasic model description\nThis is a multi line description\nwith another line of text."));
65
66         return basicModel;
67     }
68
69     @Override
70     public final AxModel getObservationModel() {
71         AxModel basicModel = getModel();
72
73         // Set key information as blank
74         basicModel.getKeyInformation().getKeyInfoMap().get(basicModel.getKey()).setDescription("");
75
76         return basicModel;
77     }
78
79     @Override
80     public final AxModel getWarningModel() {
81         AxModel basicModel = getModel();
82
83         // Add unreferenced key information
84         AxKeyInfo unreferencedKeyInfo0 = new AxKeyInfo(new AxArtifactKey("Unref0", "0.0.1"));
85         AxKeyInfo unreferencedKeyInfo1 = new AxKeyInfo(new AxArtifactKey("Unref1", "0.0.1"));
86
87         basicModel.getKeyInformation().getKeyInfoMap().put(unreferencedKeyInfo0.getKey(), unreferencedKeyInfo0);
88         basicModel.getKeyInformation().getKeyInfoMap().put(unreferencedKeyInfo1.getKey(), unreferencedKeyInfo1);
89
90         return basicModel;
91     }
92
93     @Override
94     public final AxModel getInvalidModel() {
95         AxModel basicModel = new AxModel();
96
97         basicModel.setKey(new AxArtifactKey("BasicModelKey", "0.0.1"));
98         basicModel.setKeyInformation(new AxKeyInformation(new AxArtifactKey("KeyInfoMapKey", "0.0.1")));
99
100         basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKey(), new AxKeyInfo(basicModel.getKey(),
101                         UUID.fromString("00000000-0000-0000-0000-000000000000"),
102                         "nbasic model description\nThis is a multi line description\nwith another line of text."));
103         basicModel.getKeyInformation().getKeyInfoMap().put(basicModel.getKeyInformation().getKey(),
104                         new AxKeyInfo(basicModel.getKeyInformation().getKey(),
105                                         UUID.fromString("00000000-0000-0000-0000-000000000000"), ""));
106
107         return basicModel;
108     }
109
110     /**
111      * Get the model with its references.
112      * @return the model with its references
113      */
114     public final DummyAxModelWithReferences getModelWithReferences() {
115         AxModel model = getModel();
116
117         DummyAxModelWithReferences modelWithReferences = new DummyAxModelWithReferences(model.getKey());
118         modelWithReferences.setKeyInformation(model.getKeyInformation());
119         modelWithReferences.setReferenceKeyList();
120
121         return modelWithReferences;
122     }
123 }