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