1bf2294c6d4461dd106cc7c7f103a2302417b681
[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  * ================================================================================
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.pdpx.main.parameters;
22
23 /**
24  * Class to hold/create all parameters for test cases.
25  *
26  */
27 public class CommonTestData {
28
29     private static final String REST_SERVER_PASSWORD = "zb!XztG34";
30     private static final String REST_SERVER_USER = "healthcheck";
31     private static final int REST_SERVER_PORT = 6969;
32     private static final String REST_SERVER_HOST = "0.0.0.0";
33     private static final boolean REST_SERVER_HTTPS = false;
34     private static final boolean REST_SERVER_AAF = false;
35     public static final String PDPX_GROUP_NAME = "XacmlPdpGroup";
36
37     /**
38      * Returns an instance of RestServerParameters for test cases.
39      *
40      * @param isEmpty boolean value to represent that object created should be empty or not
41      * @return the restServerParameters object
42      */
43     public RestServerParameters getRestServerParameters(final boolean isEmpty) {
44         final RestServerBuilder builder;
45         if (!isEmpty) {
46             builder = new RestServerBuilder().setHost(REST_SERVER_HOST).setPort(REST_SERVER_PORT)
47                     .setUserName(REST_SERVER_USER).setPassword(REST_SERVER_PASSWORD).setHttps(REST_SERVER_HTTPS)
48                     .setAaf(REST_SERVER_AAF);
49         } else {
50             builder = new RestServerBuilder().setHost(null).setPort(0).setUserName(null).setPassword(null)
51                     .setHttps(REST_SERVER_HTTPS).setAaf(REST_SERVER_AAF);
52         }
53         final RestServerParameters restServerParameters = new RestServerParameters(builder);
54         return restServerParameters;
55     }
56
57 }