a3bf6823030b941d4d5ee5a5eb44bf9380311151
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2023-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.sim.rest;
22
23 import static org.springframework.http.MediaType.APPLICATION_JSON;
24 import static org.springframework.http.MediaType.TEXT_PLAIN;
25
26 import org.junit.jupiter.api.BeforeEach;
27 import org.junit.jupiter.api.Test;
28 import org.springframework.beans.factory.annotation.Autowired;
29 import org.springframework.beans.factory.annotation.Value;
30 import org.springframework.boot.test.autoconfigure.actuate.observability.AutoConfigureObservability;
31 import org.springframework.boot.test.autoconfigure.web.reactive.AutoConfigureWebTestClient;
32 import org.springframework.boot.test.context.SpringBootTest;
33 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
34 import org.springframework.test.context.ActiveProfiles;
35 import org.springframework.test.web.reactive.server.WebTestClient;
36 import org.springframework.web.reactive.function.client.ExchangeFilterFunctions;
37
38 @AutoConfigureObservability
39 @AutoConfigureWebTestClient
40 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
41 @ActiveProfiles("test")
42 class ActuatorControllerTest {
43
44     @Autowired
45     private WebTestClient webClient;
46
47     @Value("${spring.security.user.name}")
48     private String username;
49     @Value("${spring.security.user.password}")
50     private String password;
51
52     @BeforeEach
53     void beforeEach() {
54         var filter = ExchangeFilterFunctions.basicAuthentication(username, password);
55         webClient = webClient.mutate().filter(filter).build();
56     }
57
58     @Test
59     void testGetHealth() {
60         webClient.get().uri("/health").accept(APPLICATION_JSON)
61                 .exchange().expectStatus().isOk();
62     }
63
64     @Test
65     void testGetMetrics() {
66         webClient.get().uri("/metrics").accept(APPLICATION_JSON)
67                 .exchange().expectStatus().isOk();
68     }
69
70     @Test
71     void testGetPrometheus() {
72         webClient.get().uri("/prometheus").accept(TEXT_PLAIN)
73                 .exchange().expectStatus().isOk();
74     }
75 }