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
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.sim.rest;
23 import static org.springframework.http.MediaType.APPLICATION_JSON;
24 import static org.springframework.http.MediaType.TEXT_PLAIN;
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;
38 @AutoConfigureObservability
39 @AutoConfigureWebTestClient
40 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
41 @ActiveProfiles("test")
42 class ActuatorControllerTest {
45 private WebTestClient webClient;
47 @Value("${spring.security.user.name}")
48 private String username;
49 @Value("${spring.security.user.password}")
50 private String password;
54 var filter = ExchangeFilterFunctions.basicAuthentication(username, password);
55 webClient = webClient.mutate().filter(filter).build();
59 void testGetHealth() {
60 webClient.get().uri("/health").accept(APPLICATION_JSON)
61 .exchange().expectStatus().isOk();
65 void testGetMetrics() {
66 webClient.get().uri("/metrics").accept(APPLICATION_JSON)
67 .exchange().expectStatus().isOk();
71 void testGetPrometheus() {
72 webClient.get().uri("/prometheus").accept(TEXT_PLAIN)
73 .exchange().expectStatus().isOk();