3b2550db56924fda02ec4d40f7baa9f41bd61945
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-2023 Nordix Foundation.
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.clamp.acm.participant.policy.main.parameters;
22
23 import java.util.ArrayList;
24 import java.util.List;
25 import java.util.Map;
26 import java.util.TreeMap;
27 import java.util.UUID;
28 import org.onap.policy.common.endpoints.parameters.TopicParameters;
29 import org.onap.policy.common.utils.coder.Coder;
30 import org.onap.policy.common.utils.coder.CoderException;
31 import org.onap.policy.common.utils.coder.StandardCoder;
32
33 /**
34  * Class to hold/create all parameters for test cases.
35  */
36 public class CommonTestData {
37     public static final String PARTICIPANT_GROUP_NAME = "AutomationCompositionParticipantGroup";
38     public static final String DESCRIPTION = "Participant description";
39     public static final long TIME_INTERVAL = 2000;
40     public static final List<TopicParameters> TOPIC_PARAMS = List.of(getTopicParams());
41
42     public static final Coder CODER = new StandardCoder();
43
44     /**
45      * Get ParticipantPolicyParameters.
46      *
47      * @return ParticipantPolicyParameters
48      */
49     public ParticipantPolicyParameters getParticipantPolicyParameters() {
50         try {
51             return CODER.convert(getParticipantPolicyParametersMap(PARTICIPANT_GROUP_NAME),
52                     ParticipantPolicyParameters.class);
53         } catch (final CoderException e) {
54             throw new RuntimeException("cannot create ParticipantPolicyParameters from map", e);
55         }
56     }
57
58     /**
59      * Returns a property map for a ParticipantPolicyParameters map for test cases.
60      *
61      * @param name name of the parameters
62      *
63      * @return a property map suitable for constructing an object
64      */
65     public Map<String, Object> getParticipantPolicyParametersMap(final String name) {
66         final Map<String, Object> map = new TreeMap<>();
67
68         map.put("name", name);
69         map.put("intermediaryParameters", getIntermediaryParametersMap(false));
70         map.put("policyApiParameters", getPolicyApiParametersMap());
71         map.put("policyPapParameters", getPolicyPapParametersMap());
72         map.put("pdpGroup", "defaultGroup");
73         map.put("pdpType", "apex");
74         return map;
75     }
76
77     /**
78      * Returns a property map for a policyPapParameters map for test cases.
79      *
80      * @return a property map suitable for constructing an object
81      */
82     public Map<String, Object> getPolicyPapParametersMap() {
83         final Map<String, Object> map = new TreeMap<>();
84         map.put("clientName", "pap");
85         map.put("hostname", "localhost");
86         map.put("port", 6968);
87         map.put("userName", "policyadmin");
88         map.put("password", "zb!XztG34");
89         map.put("https", false);
90         map.put("allowSelfSignedCerts", true);
91         return map;
92     }
93
94     /**
95      * Returns a property map for a policyApiParameters map for test cases.
96      *
97      * @return a property map suitable for constructing an object
98      */
99     public Map<String, Object> getPolicyApiParametersMap() {
100         final Map<String, Object> map = new TreeMap<>();
101         map.put("clientName", "api");
102         map.put("hostname", "localhost");
103         map.put("port", 6969);
104         map.put("userName", "policyadmin");
105         map.put("password", "zb!XztG34");
106         map.put("https", false);
107         map.put("allowSelfSignedCerts", true);
108
109         return map;
110     }
111
112     /**
113      * Returns a property map for a intermediaryParameters map for test cases.
114      *
115      * @param isEmpty boolean value to represent that object created should be empty or not
116      * @return a property map suitable for constructing an object
117      */
118     public Map<String, Object> getIntermediaryParametersMap(final boolean isEmpty) {
119         final Map<String, Object> map = new TreeMap<>();
120         if (!isEmpty) {
121             map.put("name", "Participant parameters");
122             map.put("reportingTimeIntervalMs", TIME_INTERVAL);
123             map.put("description", DESCRIPTION);
124             map.put("participantId", getParticipantId());
125             map.put("clampAutomationCompositionTopics", getTopicParametersMap(false));
126             map.put("participantSupportedElementTypes", new ArrayList<>());
127         }
128
129         return map;
130     }
131
132     /**
133      * Returns a property map for a TopicParameters map for test cases.
134      *
135      * @param isEmpty boolean value to represent that object created should be empty or not
136      * @return a property map suitable for constructing an object
137      */
138     public Map<String, Object> getTopicParametersMap(final boolean isEmpty) {
139         final Map<String, Object> map = new TreeMap<>();
140         if (!isEmpty) {
141             map.put("topicSources", TOPIC_PARAMS);
142             map.put("topicSinks", TOPIC_PARAMS);
143         }
144         return map;
145     }
146
147     /**
148      * Returns topic parameters for test cases.
149      *
150      * @return topic parameters
151      */
152     public static TopicParameters getTopicParams() {
153         final TopicParameters topicParams = new TopicParameters();
154         topicParams.setTopic("policy-acruntime-participant");
155         topicParams.setTopicCommInfrastructure("NOOP");
156         topicParams.setServers(List.of("localhost"));
157         return topicParams;
158     }
159
160     /**
161      * Returns participantId for test cases.
162      *
163      * @return participant Id
164      */
165     public static UUID getParticipantId() {
166         return UUID.fromString("101c62b3-8918-41b9-a747-d21eb79c6c03");
167     }
168 }