2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2021-2023 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.participant.kserve.rest;
23 import static org.junit.jupiter.api.Assertions.assertEquals;
25 import io.kubernetes.client.openapi.ApiClient;
26 import jakarta.ws.rs.core.Response;
27 import org.junit.jupiter.api.BeforeEach;
28 import org.junit.jupiter.api.Test;
29 import org.junit.jupiter.api.extension.ExtendWith;
30 import org.onap.policy.clamp.acm.participant.kserve.utils.CommonActuatorController;
31 import org.springframework.boot.test.autoconfigure.actuate.observability.AutoConfigureObservability;
32 import org.springframework.boot.test.context.SpringBootTest;
33 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
34 import org.springframework.boot.test.mock.mockito.MockBean;
35 import org.springframework.boot.test.web.server.LocalServerPort;
36 import org.springframework.test.context.ActiveProfiles;
37 import org.springframework.test.context.junit.jupiter.SpringExtension;
39 @AutoConfigureObservability(tracing = false)
40 @ExtendWith(SpringExtension.class)
41 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
42 @ActiveProfiles("test")
43 class ActuatorControllerTest extends CommonActuatorController {
45 private static final String HEALTH_ENDPOINT = "health";
46 private static final String METRICS_ENDPOINT = "metrics";
47 private static final String PROMETHEUS_ENDPOINT = "prometheus";
53 private int randomServerPort;
56 public void setUpPort() {
57 super.setHttpPrefix(randomServerPort);
61 void testGetHealth_Unauthorized() throws Exception {
62 assertUnauthorizedActGet(HEALTH_ENDPOINT);
66 void testGetMetrics_Unauthorized() throws Exception {
67 assertUnauthorizedActGet(METRICS_ENDPOINT);
71 void testGetPrometheus_Unauthorized() throws Exception {
72 assertUnauthorizedActGet(PROMETHEUS_ENDPOINT);
76 void testGetHealth() throws Exception {
77 var invocationBuilder = super.sendActRequest(HEALTH_ENDPOINT);
78 var rawresp = invocationBuilder.buildGet().invoke();
79 assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
83 void testGetMetrics() throws Exception {
84 var invocationBuilder = super.sendActRequest(METRICS_ENDPOINT);
85 var rawresp = invocationBuilder.buildGet().invoke();
86 assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
90 void testGePrometheus() throws Exception {
91 var invocationBuilder = super.sendActRequest(PROMETHEUS_ENDPOINT);
92 var rawresp = invocationBuilder.buildGet().invoke();
93 assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());