81c4b087cd00fb0e19f9fdeff49701cae1853e30
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2022 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.element.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.element.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.ActiveProfiles;
36 import org.springframework.test.context.junit.jupiter.SpringExtension;
37
38 @AutoConfigureMetrics
39 @ExtendWith(SpringExtension.class)
40 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
41 @ActiveProfiles("test")
42 class ActuatorControllerTest extends CommonActuatorController {
43
44     private static final String HEALTH_ENDPOINT = "onap/policy/clamp/acelement/v2/health/";
45     private static final String METRICS_ENDPOINT = "onap/policy/clamp/acelement/v2/metrics/";
46     private static final String PROMETHEUS_ENDPOINT = "onap/policy/clamp/acelement/v2/prometheus/";
47     private static final String SWAGGER_ENDPOINT = "onap/policy/clamp/acelement/v2/v3/api-docs/";
48
49     @LocalServerPort
50     private int randomServerPort;
51
52     @BeforeEach
53     public void setUpPort() {
54         super.setHttpPrefix(randomServerPort);
55     }
56
57     @Test
58     void testGetHealth_Unauthorized() throws Exception {
59         assertUnauthorizedActGet(HEALTH_ENDPOINT);
60     }
61
62     @Test
63     void testGetMetrics_Unauthorized() throws Exception {
64         assertUnauthorizedActGet(METRICS_ENDPOINT);
65     }
66
67     @Test
68     void testGetPrometheus_Unauthorized() throws Exception {
69         assertUnauthorizedActGet(PROMETHEUS_ENDPOINT);
70     }
71
72     @Test
73     void testGetSwagger_Unauthorized() throws Exception {
74         assertUnauthorizedActGet(SWAGGER_ENDPOINT);
75     }
76
77     @Test
78     void testGetHealth() throws Exception {
79         Invocation.Builder invocationBuilder = super.sendActRequest(HEALTH_ENDPOINT);
80         Response rawresp = invocationBuilder.buildGet().invoke();
81         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
82     }
83
84     @Test
85     void testGetMetrics() throws Exception {
86         Invocation.Builder invocationBuilder = super.sendActRequest(METRICS_ENDPOINT);
87         Response rawresp = invocationBuilder.buildGet().invoke();
88         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
89     }
90
91     @Test
92     void testGetPrometheus() throws Exception {
93         Invocation.Builder invocationBuilder = super.sendActRequest(PROMETHEUS_ENDPOINT);
94         Response rawresp = invocationBuilder.buildGet().invoke();
95         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
96     }
97
98     @Test
99     void testGetSwagger() throws Exception {
100         Invocation.Builder invocationBuilder = super.sendActRequest(SWAGGER_ENDPOINT);
101         Response rawresp = invocationBuilder.buildGet().invoke();
102         assertEquals(Response.Status.OK.getStatusCode(), rawresp.getStatus());
103     }
104 }