Change RestServerParameters to BusTopicParams
[policy/xacml-pdp.git] / main / src / test / java / org / onap / policy / pdpx / main / parameters / CommonTestData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved.
4  * Modifications Copyright (C) 2019 Nordix Foundation.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.pdpx.main.parameters;
23
24 import java.util.Arrays;
25 import java.util.Collections;
26 import java.util.List;
27 import java.util.Map;
28 import java.util.TreeMap;
29 import org.onap.policy.common.endpoints.parameters.TopicParameters;
30 import org.onap.policy.common.utils.coder.Coder;
31 import org.onap.policy.common.utils.coder.CoderException;
32 import org.onap.policy.common.utils.coder.StandardCoder;
33
34 /**
35  * Class to hold/create all parameters for test cases.
36  *
37  */
38 public class CommonTestData {
39
40     private static final String PASS_KEY = "password";
41     private static final String USER_KEY = "userName";
42     private static final String PORT_KEY = "port";
43     private static final String SERVER_HOST_KEY = "host";
44     private static final String API_HOST_KEY = "hostname";
45     private static final String AAF_KEY = "aaf";
46     private static final String HTTPS_KEY = "useHttps";
47
48     private static final String REST_SERVER_PASS = "zb!XztG34";
49     private static final String REST_SERVER_USER = "healthcheck";
50     private static final int REST_SERVER_PORT = 6969;
51     private static final String REST_SERVER_HOST = "0.0.0.0";
52     private static final boolean REST_SERVER_HTTPS = false;
53     private static final boolean REST_SERVER_AAF = false;
54
55     private static final String POLICY_API_PASS = "zb!XztG34";
56     private static final String POLICY_API_USER = "healthcheck";
57     private static final int POLICY_API_PORT = 6970;
58     private static final String POLICY_API_HOST = "0.0.0.0";
59     private static final boolean POLICY_API_HTTPS = false;
60     private static final boolean POLICY_API_AAF = false;
61
62     public static final String PDPX_PARAMETER_GROUP_NAME = "XacmlPdpParameters";
63     public static final String PDPX_GROUP = "XacmlPdpGroup";
64     public static final String PDPX_TYPE = "xacml";
65     public static final List<TopicParameters> TOPIC_PARAMS =
66                     Collections.unmodifiableList(Arrays.asList(getTopicParams()));
67
68     public static final Coder coder = new StandardCoder();
69
70     /**
71      * Returns topic parameters for test cases.
72      *
73      * @return topic parameters
74      */
75     public static TopicParameters getTopicParams() {
76         final TopicParameters topicParams = new TopicParameters();
77         topicParams.setTopic("POLICY-PDP-PAP");
78         topicParams.setTopicCommInfrastructure("noop");
79         topicParams.setServers(Arrays.asList("message-router"));
80         return topicParams;
81     }
82
83     /**
84      * Returns a property map for a RestServerParameters map for test cases.
85      *
86      * @param isEmpty boolean value to represent that object created should be empty or not
87      * @return a property map suitable for constructing an object
88      */
89     public Map<String, Object> getRestServerParametersMap(final boolean isEmpty) {
90         final Map<String, Object> map = new TreeMap<>();
91         map.put(HTTPS_KEY, REST_SERVER_HTTPS);
92         map.put(AAF_KEY, REST_SERVER_AAF);
93
94         if (!isEmpty) {
95             map.put(SERVER_HOST_KEY, REST_SERVER_HOST);
96             map.put(PORT_KEY, REST_SERVER_PORT);
97             map.put(USER_KEY, REST_SERVER_USER);
98             map.put(PASS_KEY, REST_SERVER_PASS);
99         }
100
101         return map;
102     }
103
104     /**
105      * Returns a property map for a RestServerParameters map for test cases.
106      *
107      * @param port the port for RestServer
108      * @return a property map suitable for constructing an object
109      */
110     public Map<String, Object> getRestServerParametersMap(final int port) {
111         final Map<String, Object> map = new TreeMap<>();
112         map.put(HTTPS_KEY, REST_SERVER_HTTPS);
113         map.put(AAF_KEY, REST_SERVER_AAF);
114         map.put(SERVER_HOST_KEY, REST_SERVER_HOST);
115         map.put(PORT_KEY, port);
116         map.put(USER_KEY, REST_SERVER_USER);
117         map.put(PASS_KEY, REST_SERVER_PASS);
118
119         return map;
120     }
121
122     /**
123      * Converts the contents of a map to a parameter class.
124      *
125      * @param source property map
126      * @param clazz class of object to be created from the map
127      * @return a new object represented by the map
128      */
129     public <T> T toObject(final Map<String, Object> source, final Class<T> clazz) {
130         try {
131             return coder.decode(coder.encode(source), clazz);
132
133         } catch (final CoderException e) {
134             throw new RuntimeException("cannot create " + clazz.getName() + " from map", e);
135         }
136     }
137
138     /**
139      * Returns a property map for a RestServerParameters map for test cases.
140      *
141      * @param isEmpty boolean value to represent that object created should be empty or not
142      * @return a property map suitable for constructing an object
143      */
144     public Map<String, Object> getPolicyApiParametersMap(final boolean isEmpty) {
145         final Map<String, Object> map = new TreeMap<>();
146         map.put(HTTPS_KEY, POLICY_API_HTTPS);
147         map.put(AAF_KEY, POLICY_API_AAF);
148
149         if (!isEmpty) {
150             map.put(API_HOST_KEY, POLICY_API_HOST);
151             map.put(PORT_KEY, POLICY_API_PORT);
152             map.put(USER_KEY, POLICY_API_USER);
153             map.put(PASS_KEY, POLICY_API_PASS);
154         }
155
156         return map;
157     }
158
159     /**
160      * Returns a property map for a TopicParameters map for test cases.
161      *
162      * @param isEmpty boolean value to represent that object created should be empty or not
163      * @return a property map suitable for constructing an object
164      */
165     public Map<String, Object> getTopicParametersMap(final boolean isEmpty) {
166         final Map<String, Object> map = new TreeMap<>();
167         if (!isEmpty) {
168             map.put("topicSources", TOPIC_PARAMS);
169             map.put("topicSinks", TOPIC_PARAMS);
170         }
171         return map;
172     }
173 }