732dd7bbd6fb76b57edf180990e9333ef5e444c9
[policy/clamp.git] /
1 /*-
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
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.clamp.acm.participant.kserve.rest;
22
23 import static org.springframework.http.MediaType.APPLICATION_JSON;
24 import static org.springframework.http.MediaType.TEXT_PLAIN;
25
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;
39
40 @AutoConfigureObservability
41 @AutoConfigureWebTestClient
42 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
43 @ActiveProfiles("test")
44 class ActuatorControllerTest {
45
46     @Autowired
47     private WebTestClient webClient;
48
49     @MockBean
50     private ApiClient apiClient;
51
52     @Value("${spring.security.user.name}")
53     private String username;
54     @Value("${spring.security.user.password}")
55     private String password;
56
57     @BeforeEach
58     void beforeEach() {
59         var filter = ExchangeFilterFunctions.basicAuthentication(username, password);
60         webClient = webClient.mutate().filter(filter).build();
61     }
62
63     @Test
64     void testGetHealth() {
65         webClient.get().uri("/health").accept(APPLICATION_JSON)
66                 .exchange().expectStatus().isOk();
67     }
68
69     @Test
70     void testGetMetrics() {
71         webClient.get().uri("/metrics").accept(APPLICATION_JSON)
72                 .exchange().expectStatus().isOk();
73     }
74
75     @Test
76     void testGetPrometheus() {
77         webClient.get().uri("/prometheus").accept(TEXT_PLAIN)
78                 .exchange().expectStatus().isOk();
79     }
80 }