b26a1f1a2042805e8f9cfa26e2bbd0d01a8bc876
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 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.apex.services.onappf.parameters;
22
23 import java.util.Arrays;
24 import java.util.List;
25 import java.util.Map;
26 import java.util.TreeMap;
27 import org.onap.policy.common.endpoints.parameters.TopicParameters;
28 import org.onap.policy.common.parameters.ParameterGroup;
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  * @author Ajith Sreekumar (ajith.sreekumar@est.tech)
37  */
38 public class CommonTestData {
39
40     public static final String APEX_STARTER_GROUP_NAME = "ApexStarterParameterGroup";
41     public static final long TIME_INTERVAL = 2000;
42     public static final String PDP_NAME = "apex-pdp";
43     public static final String VERSION = "0.0.1";
44     public static final String PDP_TYPE = "apex";
45     public static final String PDP_GROUP = "defaultGroup";
46     public static final String DESCRIPTION = "Pdp status for HealthCheck";
47     public static final String POLICY_NAME = "onap.controllloop.operational.apex.BBS";
48     public static final String POLICY_VERSION = "0.0.1";
49     public static final List<ToscaPolicyTypeIdentifierParameters> SUPPORTED_POLICY_TYPES =
50             Arrays.asList(getSupportedPolicyTypes(POLICY_NAME, POLICY_VERSION));
51     public static final List<TopicParameters> TOPIC_PARAMS = Arrays.asList(getTopicParams());
52     private static final String REST_SERVER_PASSWORD = "zb!XztG34";
53     private static final String REST_SERVER_USER = "healthcheck";
54     private static final int REST_SERVER_PORT = 6969;
55     private static final String REST_SERVER_HOST = "0.0.0.0";
56     private static final boolean REST_SERVER_HTTPS = true;
57     private static final boolean REST_SERVER_AAF = false;
58
59     public static final Coder coder = new StandardCoder();
60
61     /**
62      * Returns supported policy types for test cases.
63      *
64      * @return supported policy types
65      */
66     public static ToscaPolicyTypeIdentifierParameters getSupportedPolicyTypes(final String name, final String version) {
67         final ToscaPolicyTypeIdentifierParameters policyTypeIdentParameters = new ToscaPolicyTypeIdentifierParameters();
68         policyTypeIdentParameters.setName(name);
69         policyTypeIdentParameters.setVersion(version);
70         return policyTypeIdentParameters;
71     }
72
73     /**
74      * Returns topic parameters for test cases.
75      *
76      * @return topic parameters
77      */
78     public static TopicParameters getTopicParams() {
79         final TopicParameters topicParams = new TopicParameters();
80         topicParams.setTopic("POLICY-PDP-PAP");
81         topicParams.setTopicCommInfrastructure("dmaap");
82         topicParams.setServers(Arrays.asList("message-router"));
83         return topicParams;
84     }
85
86     /**
87      * Converts the contents of a map to a parameter class.
88      *
89      * @param source property map
90      * @param clazz class of object to be created from the map
91      * @return a new object represented by the map
92      */
93     public <T extends ParameterGroup> T toObject(final Map<String, Object> source, final Class<T> clazz) {
94         try {
95             return coder.decode(coder.encode(source), clazz);
96
97         } catch (final CoderException e) {
98             throw new RuntimeException("cannot create " + clazz.getName() + " from map", e);
99         }
100     }
101
102     /**
103      * Returns a property map for a ApexStarterParameterGroup map for test cases.
104      *
105      * @param name name of the parameters
106      *
107      * @return a property map suitable for constructing an object
108      */
109     public Map<String, Object> getApexStarterParameterGroupMap(final String name) {
110         final Map<String, Object> map = new TreeMap<>();
111
112         map.put("name", name);
113         map.put("restServerParameters", getRestServerParametersMap(false));
114         map.put("pdpStatusParameters", getPdpStatusParametersMap(false));
115         map.put("topicParameterGroup", getTopicParametersMap(false));
116         return map;
117     }
118
119     /**
120      * Returns a property map for a RestServerParameters map for test cases.
121      *
122      * @param isEmpty boolean value to represent that object created should be empty or not
123      * @return a property map suitable for constructing an object
124      */
125     public Map<String, Object> getRestServerParametersMap(final boolean isEmpty) {
126         final Map<String, Object> map = new TreeMap<>();
127         map.put("https", REST_SERVER_HTTPS);
128         map.put("aaf", REST_SERVER_AAF);
129
130         if (!isEmpty) {
131             map.put("host", REST_SERVER_HOST);
132             map.put("port", REST_SERVER_PORT);
133             map.put("userName", REST_SERVER_USER);
134             map.put("password", REST_SERVER_PASSWORD);
135         }
136
137         return map;
138     }
139
140     /**
141      * Returns a property map for a PdpStatusParameters map for test cases.
142      *
143      * @param isEmpty boolean value to represent that object created should be empty or not
144      * @return a property map suitable for constructing an object
145      */
146     public Map<String, Object> getPdpStatusParametersMap(final boolean isEmpty) {
147         final Map<String, Object> map = new TreeMap<>();
148         if (!isEmpty) {
149             map.put("pdpGroup", PDP_GROUP);
150             map.put("timeIntervalMs", TIME_INTERVAL);
151             map.put("pdpName", PDP_NAME);
152             map.put("version", VERSION);
153             map.put("pdpType", PDP_TYPE);
154             map.put("description", DESCRIPTION);
155             map.put("supportedPolicyTypes", SUPPORTED_POLICY_TYPES);
156         }
157
158         return map;
159     }
160
161     /**
162      * Returns a property map for a TopicParameters map for test cases.
163      *
164      * @param isEmpty boolean value to represent that object created should be empty or not
165      * @return a property map suitable for constructing an object
166      */
167     public Map<String, Object> getTopicParametersMap(final boolean isEmpty) {
168         final Map<String, Object> map = new TreeMap<>();
169         if (!isEmpty) {
170             map.put("topicSources", TOPIC_PARAMS);
171             map.put("topicSinks", TOPIC_PARAMS);
172         }
173         return map;
174     }
175 }