Changed Xacml-pdp to report pdp group defined in XacmlPdpParameters config file
[policy/xacml-pdp.git] / main / src / test / java / org / onap / policy / pdpx / main / parameters / CommonTestData.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 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.parameters.ParameterGroup;
31 import org.onap.policy.common.utils.coder.Coder;
32 import org.onap.policy.common.utils.coder.CoderException;
33 import org.onap.policy.common.utils.coder.StandardCoder;
34
35 /**
36  * Class to hold/create all parameters for test cases.
37  *
38  */
39 public class CommonTestData {
40
41     private static final String PASS_KEY = "password";
42     private static final String USER_KEY = "userName";
43     private static final String PORT_KEY = "port";
44     private static final String HOST_KEY = "host";
45     private static final String AAF_KEY = "aaf";
46     private static final String HTTPS_KEY = "https";
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 List<TopicParameters> TOPIC_PARAMS =
65                     Collections.unmodifiableList(Arrays.asList(getTopicParams()));
66
67     public static final Coder coder = new StandardCoder();
68
69     /**
70      * Returns topic parameters for test cases.
71      *
72      * @return topic parameters
73      */
74     public static TopicParameters getTopicParams() {
75         final TopicParameters topicParams = new TopicParameters();
76         topicParams.setTopic("POLICY-PDP-PAP");
77         topicParams.setTopicCommInfrastructure("noop");
78         topicParams.setServers(Arrays.asList("message-router"));
79         return topicParams;
80     }
81
82     /**
83      * Returns a property map for a RestServerParameters map for test cases.
84      *
85      * @param isEmpty boolean value to represent that object created should be empty or not
86      * @return a property map suitable for constructing an object
87      */
88     public Map<String, Object> getRestServerParametersMap(final boolean isEmpty) {
89         final Map<String, Object> map = new TreeMap<>();
90         map.put(HTTPS_KEY, REST_SERVER_HTTPS);
91         map.put(AAF_KEY, REST_SERVER_AAF);
92
93         if (!isEmpty) {
94             map.put(HOST_KEY, REST_SERVER_HOST);
95             map.put(PORT_KEY, REST_SERVER_PORT);
96             map.put(USER_KEY, REST_SERVER_USER);
97             map.put(PASS_KEY, REST_SERVER_PASS);
98         }
99
100         return map;
101     }
102
103     /**
104      * Returns a property map for a RestServerParameters map for test cases.
105      *
106      * @param port the port for RestServer
107      * @return a property map suitable for constructing an object
108      */
109     public Map<String, Object> getRestServerParametersMap(final int port) {
110         final Map<String, Object> map = new TreeMap<>();
111         map.put(HTTPS_KEY, REST_SERVER_HTTPS);
112         map.put(AAF_KEY, REST_SERVER_AAF);
113         map.put(HOST_KEY, REST_SERVER_HOST);
114         map.put(PORT_KEY, port);
115         map.put(USER_KEY, REST_SERVER_USER);
116         map.put(PASS_KEY, REST_SERVER_PASS);
117
118         return map;
119     }
120
121     /**
122      * Converts the contents of a map to a parameter class.
123      *
124      * @param source property map
125      * @param clazz class of object to be created from the map
126      * @return a new object represented by the map
127      */
128     public <T extends ParameterGroup> T toObject(final Map<String, Object> source, final Class<T> clazz) {
129         try {
130             return coder.decode(coder.encode(source), clazz);
131
132         } catch (final CoderException e) {
133             throw new RuntimeException("cannot create " + clazz.getName() + " from map", e);
134         }
135     }
136
137     /**
138      * Returns a property map for a RestServerParameters map for test cases.
139      *
140      * @param isEmpty boolean value to represent that object created should be empty or not
141      * @return a property map suitable for constructing an object
142      */
143     public Map<String, Object> getPolicyApiParametersMap(final boolean isEmpty) {
144         final Map<String, Object> map = new TreeMap<>();
145         map.put(HTTPS_KEY, POLICY_API_HTTPS);
146         map.put(AAF_KEY, POLICY_API_AAF);
147
148         if (!isEmpty) {
149             map.put(HOST_KEY, POLICY_API_HOST);
150             map.put(PORT_KEY, POLICY_API_PORT);
151             map.put(USER_KEY, POLICY_API_USER);
152             map.put(PASS_KEY, POLICY_API_PASS);
153         }
154
155         return map;
156     }
157
158     /**
159      * Returns a property map for a TopicParameters map for test cases.
160      *
161      * @param isEmpty boolean value to represent that object created should be empty or not
162      * @return a property map suitable for constructing an object
163      */
164     public Map<String, Object> getTopicParametersMap(final boolean isEmpty) {
165         final Map<String, Object> map = new TreeMap<>();
166         if (!isEmpty) {
167             map.put("topicSources", TOPIC_PARAMS);
168             map.put("topicSinks", TOPIC_PARAMS);
169         }
170         return map;
171     }
172 }