2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2022-2024 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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.clamp.acm.element.rest;
23 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import jakarta.ws.rs.core.Response;
26 import org.junit.jupiter.api.BeforeEach;
27 import org.junit.jupiter.api.Test;
28 import org.junit.jupiter.api.extension.ExtendWith;
29 import org.onap.policy.clamp.acm.element.utils.CommonActuatorController;
30 import org.springframework.boot.test.autoconfigure.actuate.observability.AutoConfigureObservability;
31 import org.springframework.boot.test.context.SpringBootTest;
32 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
33 import org.springframework.boot.test.web.server.LocalServerPort;
34 import org.springframework.test.context.ActiveProfiles;
35 import org.springframework.test.context.junit.jupiter.SpringExtension;
37 @AutoConfigureObservability(tracing = false)
38 @ExtendWith(SpringExtension.class)
39 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
40 @ActiveProfiles({ "test", "default" })
41 class ActuatorControllerTest extends CommonActuatorController {
43 private static final String HEALTH_ENDPOINT = "onap/policy/clamp/acelement/v2/health";
44 private static final String METRICS_ENDPOINT = "onap/policy/clamp/acelement/v2/metrics";
45 private static final String PROMETHEUS_ENDPOINT = "onap/policy/clamp/acelement/v2/prometheus";
46 private static final String SWAGGER_ENDPOINT = "onap/policy/clamp/acelement/v2/v3/api-docs";
48 private static final String WRONG_ENDPOINT = "onap/policy/clamp/acelement/v2/wrong";
51 private int randomServerPort;
54 public void setUpPort() {
55 super.setHttpPrefix(randomServerPort);
59 void testGetHealth_Unauthorized() {
60 assertUnauthorizedActGet(HEALTH_ENDPOINT);
64 void testGetMetrics_Unauthorized() {
65 assertUnauthorizedActGet(METRICS_ENDPOINT);
69 void testGetPrometheus_Unauthorized() {
70 assertUnauthorizedActGet(PROMETHEUS_ENDPOINT);
74 void testGetSwagger_Unauthorized() {
75 assertUnauthorizedActGet(SWAGGER_ENDPOINT);
79 void testGetHealth() {
80 var invocationBuilder = super.sendActRequest(HEALTH_ENDPOINT);
81 try (var rawresp = invocationBuilder.buildGet().invoke()) {
82 assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
87 void testGetMetrics() {
88 var invocationBuilder = super.sendActRequest(METRICS_ENDPOINT);
89 try (var rawresp = invocationBuilder.buildGet().invoke()) {
90 assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
95 void testGetPrometheus() {
96 var invocationBuilder = super.sendActRequest(PROMETHEUS_ENDPOINT);
97 try (var rawresp = invocationBuilder.buildGet().invoke()) {
98 assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
103 void testGetSwagger() {
104 var invocationBuilder = super.sendActRequest(SWAGGER_ENDPOINT);
105 try (var rawresp = invocationBuilder.buildGet().invoke()) {
106 assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
111 void testWrongEndPoint() {
112 var invocationBuilder = super.sendActRequest(WRONG_ENDPOINT);
113 try (var rawresp = invocationBuilder.buildGet().invoke()) {
114 assertEquals(Response.Status.NOT_FOUND.getStatusCode(), rawresp.getStatus());