Add DME Participant
[nonrtric/plt/rappmanager.git] / participants / participant-impl-dme / src / test / java / org / oransc / participant / dme / rest / ActuatorControllerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 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
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.oransc.participant.dme.rest;
22
23 import static org.junit.jupiter.api.Assertions.assertEquals;
24
25 import jakarta.ws.rs.core.Response;
26 import org.junit.jupiter.api.BeforeEach;
27 import org.junit.jupiter.api.Test;
28 import org.junit.jupiter.api.extension.ExtendWith;
29 import org.oransc.participant.dme.utils.CommonActuatorController;
30 import org.springframework.boot.test.autoconfigure.actuate.observability.AutoConfigureObservability;
31 import org.springframework.boot.test.context.SpringBootTest;
32 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
33 import org.springframework.boot.test.web.server.LocalServerPort;
34 import org.springframework.test.context.ActiveProfiles;
35 import org.springframework.test.context.junit.jupiter.SpringExtension;
36
37 @AutoConfigureObservability(tracing = false)
38 @ExtendWith(SpringExtension.class)
39 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
40 @ActiveProfiles("test")
41 class ActuatorControllerTest extends CommonActuatorController {
42
43     private static final String HEALTH_ENDPOINT = "health";
44     private static final String METRICS_ENDPOINT = "metrics";
45     private static final String PROMETHEUS_ENDPOINT = "prometheus";
46
47     @LocalServerPort
48     private int randomServerPort;
49
50     @BeforeEach
51     public void setUpPort() {
52         super.setHttpPrefix(randomServerPort);
53     }
54
55     @Test
56     void testGetHealth_Unauthorized() {
57         assertUnauthorizedActGet(HEALTH_ENDPOINT);
58     }
59
60     @Test
61     void testGetMetrics_Unauthorized() {
62         assertUnauthorizedActGet(METRICS_ENDPOINT);
63     }
64
65     @Test
66     void testGetPrometheus_Unauthorized() {
67         assertUnauthorizedActGet(PROMETHEUS_ENDPOINT);
68     }
69
70     @Test
71     void testGetHealth() {
72         var invocationBuilder = super.sendActRequest(HEALTH_ENDPOINT);
73         var rawresp = invocationBuilder.buildGet().invoke();
74         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
75     }
76
77     @Test
78     void testGetMetrics() {
79         var invocationBuilder = super.sendActRequest(METRICS_ENDPOINT);
80         var rawresp = invocationBuilder.buildGet().invoke();
81         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
82     }
83
84     @Test
85     void testGePrometheus() {
86         var invocationBuilder = super.sendActRequest(PROMETHEUS_ENDPOINT);
87         var rawresp = invocationBuilder.buildGet().invoke();
88         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
89     }
90
91 }