2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2019,2023 Nordix Foundation.
4 * Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.apex.services.onappf.rest;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
27 import jakarta.ws.rs.client.Client;
28 import jakarta.ws.rs.client.ClientBuilder;
29 import jakarta.ws.rs.client.Invocation;
30 import jakarta.ws.rs.client.WebTarget;
31 import jakarta.ws.rs.core.MediaType;
32 import jakarta.ws.rs.core.Response;
34 import java.security.SecureRandom;
36 import java.util.Properties;
37 import java.util.concurrent.atomic.AtomicBoolean;
38 import java.util.function.Function;
39 import javax.net.ssl.SSLContext;
40 import org.glassfish.jersey.client.ClientProperties;
41 import org.glassfish.jersey.client.authentication.HttpAuthenticationFeature;
42 import org.junit.After;
43 import org.junit.AfterClass;
44 import org.junit.Before;
45 import org.junit.BeforeClass;
46 import org.onap.policy.apex.services.onappf.ApexStarterActivator;
47 import org.onap.policy.apex.services.onappf.ApexStarterConstants;
48 import org.onap.policy.apex.services.onappf.ApexStarterMain;
49 import org.onap.policy.apex.services.onappf.exception.ApexStarterException;
50 import org.onap.policy.apex.services.onappf.parameters.CommonTestData;
51 import org.onap.policy.common.gson.GsonMessageBodyHandler;
52 import org.onap.policy.common.utils.coder.Coder;
53 import org.onap.policy.common.utils.coder.StandardCoder;
54 import org.onap.policy.common.utils.network.NetworkUtil;
55 import org.onap.policy.common.utils.security.SelfSignedKeyStore;
56 import org.onap.policy.common.utils.services.Registry;
57 import org.slf4j.Logger;
58 import org.slf4j.LoggerFactory;
59 import org.springframework.test.util.ReflectionTestUtils;
62 * Class to perform unit test of {@link ApexStarterRestServer}.
64 * @author Ajith Sreekumar (ajith.sreekumar@est.tech)
66 public class CommonApexStarterRestServer {
68 private static final Logger LOGGER = LoggerFactory.getLogger(CommonApexStarterRestServer.class);
70 private static Coder coder = new StandardCoder();
72 public static final String NOT_ALIVE = "not alive";
73 public static final String ALIVE = "alive";
74 public static final String SELF = "self";
75 public static final String ENDPOINT_PREFIX = "policy/apex-pdp/v1/";
77 private static int port;
78 protected static String httpsPrefix;
80 private static ApexStarterMain main;
82 private boolean activatorWasAlive;
85 * Allocates a port for the server, writes a config file, and then starts Main.
87 * @throws Exception if an error occurs
90 public static void setUpBeforeClass() throws Exception {
91 port = NetworkUtil.allocPort();
93 httpsPrefix = "https://localhost:" + port + "/";
104 public static void teardownAfterClass() {
108 } catch (final ApexStarterException exp) {
109 LOGGER.error("cannot stop main", exp);
116 * @throws Exception if an error occurs
119 public void setUp() throws Exception {
120 // restart, if not currently running
126 Registry.get(ApexStarterConstants.REG_APEX_STARTER_ACTIVATOR, ApexStarterActivator.class).isAlive();
130 * Restores the activator's "alive" state.
133 public void tearDown() {
134 markActivator(activatorWasAlive);
138 * Verifies that an endpoint appears within the swagger response.
140 * @param endpoint the endpoint of interest
141 * @throws Exception if an error occurs
143 protected void testSwagger(final String endpoint) throws Exception {
144 final Invocation.Builder invocationBuilder = sendFqeRequest(httpsPrefix + "swagger", true);
145 final String resp = invocationBuilder.get(String.class);
147 assertTrue(resp.contains(ENDPOINT_PREFIX + endpoint + ":"));
151 * Makes a parameter configuration file.
153 * @throws Exception if an error occurs
155 private static void makeConfigFile() throws Exception {
156 final Map<String, Object> config =
157 new CommonTestData().getApexStarterParameterGroupMap("ApexStarterParameterGroup");
159 @SuppressWarnings("unchecked")
160 final Map<String, Object> restParams = (Map<String, Object>) config.get("restServerParameters");
161 restParams.put("port", port);
163 final File file = new File("src/test/resources/TestConfigParams.json");
166 coder.encode(file, config);
172 * @throws Exception if an error occurs
174 private static void startMain() throws Exception {
175 Registry.newRegistry();
177 // make sure port is available
178 if (NetworkUtil.isTcpPortOpen("localhost", port, 1, 1L)) {
179 throw new IllegalStateException("port " + port + " is still in use");
182 final Properties systemProps = System.getProperties();
183 systemProps.put("javax.net.ssl.keyStore", new SelfSignedKeyStore().getKeystoreName());
184 systemProps.put("javax.net.ssl.keyStorePassword", SelfSignedKeyStore.KEYSTORE_PASSWORD);
185 System.setProperties(systemProps);
187 final String[] apexStarterConfigParameters = { "-c", "src/test/resources/TestConfigParams.json" };
189 main = new ApexStarterMain(apexStarterConfigParameters);
191 if (!NetworkUtil.isTcpPortOpen("localhost", port, 6, 10000L)) {
192 throw new IllegalStateException("server is not listening on port " + port);
199 * @throws Exception if an error occurs
201 private static void stopMain() throws ApexStarterException {
203 final ApexStarterMain main2 = main;
210 private void markActivator(final boolean wasAlive) {
211 final Object manager = ReflectionTestUtils.getField(
212 Registry.get(ApexStarterConstants.REG_APEX_STARTER_ACTIVATOR, ApexStarterActivator.class), "manager");
213 AtomicBoolean running = (AtomicBoolean) ReflectionTestUtils.getField(manager, "running");
214 running.set(wasAlive);
218 * Verifies that unauthorized requests fail.
220 * @param endpoint the target end point
221 * @param sender function that sends the requests to the target
222 * @throws Exception if an error occurs
224 protected void checkUnauthRequest(final String endpoint, final Function<Invocation.Builder, Response> sender)
226 assertEquals(Response.Status.UNAUTHORIZED.getStatusCode(),
227 sender.apply(sendNoAuthRequest(endpoint)).getStatus());
231 * Sends a request to an endpoint.
233 * @param endpoint the target endpoint
234 * @return a request builder
235 * @throws Exception if an error occurs
237 protected Invocation.Builder sendRequest(final String endpoint) throws Exception {
238 return sendFqeRequest(httpsPrefix + ENDPOINT_PREFIX + endpoint, true);
242 * Sends a request to an endpoint, without any authorization header.
244 * @param endpoint the target endpoint
245 * @return a request builder
246 * @throws Exception if an error occurs
248 protected Invocation.Builder sendNoAuthRequest(final String endpoint) throws Exception {
249 return sendFqeRequest(httpsPrefix + ENDPOINT_PREFIX + endpoint, false);
253 * Sends a request to a fully qualified endpoint.
255 * @param fullyQualifiedEndpoint the fully qualified target endpoint
256 * @param includeAuth if authorization header should be included
257 * @return a request builder
258 * @throws Exception if an error occurs
260 protected Invocation.Builder sendFqeRequest(final String fullyQualifiedEndpoint, final boolean includeAuth)
262 final SSLContext sc = SSLContext.getInstance("TLSv1.2");
263 sc.init(null, NetworkUtil.getAlwaysTrustingManager(), new SecureRandom());
264 final ClientBuilder clientBuilder =
265 ClientBuilder.newBuilder().sslContext(sc).hostnameVerifier((host, session) -> true);
266 final Client client = clientBuilder.build();
268 client.property(ClientProperties.METAINF_SERVICES_LOOKUP_DISABLE, "true");
269 client.register(GsonMessageBodyHandler.class);
272 final HttpAuthenticationFeature feature = HttpAuthenticationFeature.basic("healthcheck", "zb!XztG34");
273 client.register(feature);
276 final WebTarget webTarget = client.target(fullyQualifiedEndpoint);
278 return webTarget.request(MediaType.APPLICATION_JSON);