2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2021-2025 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.springframework.http.MediaType.APPLICATION_JSON;
24 import static org.springframework.http.MediaType.TEXT_PLAIN;
26 import io.kubernetes.client.openapi.ApiClient;
27 import org.junit.jupiter.api.BeforeEach;
28 import org.junit.jupiter.api.Test;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.beans.factory.annotation.Value;
31 import org.springframework.boot.test.autoconfigure.actuate.observability.AutoConfigureObservability;
32 import org.springframework.boot.test.autoconfigure.web.reactive.AutoConfigureWebTestClient;
33 import org.springframework.boot.test.context.SpringBootTest;
34 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
35 import org.springframework.boot.test.mock.mockito.MockBean;
36 import org.springframework.test.context.ActiveProfiles;
37 import org.springframework.test.web.reactive.server.WebTestClient;
38 import org.springframework.web.reactive.function.client.ExchangeFilterFunctions;
40 @AutoConfigureObservability
41 @AutoConfigureWebTestClient
42 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
43 @ActiveProfiles("test")
44 class ActuatorControllerTest {
47 private WebTestClient webClient;
50 private ApiClient apiClient;
52 @Value("${spring.security.user.name}")
53 private String username;
54 @Value("${spring.security.user.password}")
55 private String password;
59 var filter = ExchangeFilterFunctions.basicAuthentication(username, password);
60 webClient = webClient.mutate().filter(filter).build();
64 void testGetHealth() {
65 webClient.get().uri("/health").accept(APPLICATION_JSON)
66 .exchange().expectStatus().isOk();
70 void testGetMetrics() {
71 webClient.get().uri("/metrics").accept(APPLICATION_JSON)
72 .exchange().expectStatus().isOk();
76 void testGetPrometheus() {
77 webClient.get().uri("/prometheus").accept(TEXT_PLAIN)
78 .exchange().expectStatus().isOk();