0cabac793c2f9a1a7bd4dbe3c641e132c426c090
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-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.onap.policy.clamp.acm.participant.kserve.rest;
22
23 import static org.junit.jupiter.api.Assertions.assertEquals;
24
25 import io.kubernetes.client.openapi.ApiClient;
26 import javax.ws.rs.client.Invocation;
27 import javax.ws.rs.core.Response;
28 import org.junit.jupiter.api.BeforeEach;
29 import org.junit.jupiter.api.Test;
30 import org.junit.jupiter.api.extension.ExtendWith;
31 import org.onap.policy.clamp.acm.participant.kserve.utils.CommonActuatorController;
32 import org.springframework.boot.test.autoconfigure.actuate.metrics.AutoConfigureMetrics;
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.boot.test.web.server.LocalServerPort;
37 import org.springframework.test.context.ActiveProfiles;
38 import org.springframework.test.context.junit.jupiter.SpringExtension;
39
40 @AutoConfigureMetrics
41 @ExtendWith(SpringExtension.class)
42 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
43 @ActiveProfiles("test")
44 class ActuatorControllerTest extends CommonActuatorController {
45
46     private static final String HEALTH_ENDPOINT = "health";
47     private static final String METRICS_ENDPOINT = "metrics";
48     private static final String PROMETHEUS_ENDPOINT = "prometheus";
49
50     @MockBean
51     ApiClient apiClient;
52
53     @LocalServerPort
54     private int randomServerPort;
55
56     @BeforeEach
57     public void setUpPort() {
58         super.setHttpPrefix(randomServerPort);
59     }
60
61     @Test
62     void testGetHealth_Unauthorized() throws Exception {
63         assertUnauthorizedActGet(HEALTH_ENDPOINT);
64     }
65
66     @Test
67     void testGetMetrics_Unauthorized() throws Exception {
68         assertUnauthorizedActGet(METRICS_ENDPOINT);
69     }
70
71     @Test
72     void testGetPrometheus_Unauthorized() throws Exception {
73         assertUnauthorizedActGet(PROMETHEUS_ENDPOINT);
74     }
75
76     @Test
77     void testGetHealth() throws Exception {
78         Invocation.Builder invocationBuilder = super.sendActRequest(HEALTH_ENDPOINT);
79         Response rawresp = invocationBuilder.buildGet().invoke();
80         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
81     }
82
83     @Test
84     void testGetMetrics() throws Exception {
85         Invocation.Builder invocationBuilder = super.sendActRequest(METRICS_ENDPOINT);
86         Response rawresp = invocationBuilder.buildGet().invoke();
87         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
88     }
89
90     @Test
91     void testGePrometheus() throws Exception {
92         Invocation.Builder invocationBuilder = super.sendActRequest(PROMETHEUS_ENDPOINT);
93         Response rawresp = invocationBuilder.buildGet().invoke();
94         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
95     }
96
97 }