7ccfe85b33e502f3a91f63bdc431b556eb12e445
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.services.onappf.rest;
23
24 import static org.assertj.core.api.Assertions.assertThat;
25 import static org.junit.Assert.assertEquals;
26
27 import javax.ws.rs.client.Invocation;
28 import org.junit.Test;
29 import org.onap.policy.common.endpoints.report.HealthCheckReport;
30
31 /**
32  * Class to perform unit test of {@link ApexStarterRestServer}.
33  *
34  * @author Ajith Sreekumar (ajith.sreekumar@est.tech)
35  */
36 public class TestHealthCheckRestControllerV1 extends CommonApexStarterRestServer {
37
38     private static final String HEALTHCHECK_ENDPOINT = "healthcheck";
39
40     @Test
41     public void testSwagger() throws Exception {
42         super.testSwagger(HEALTHCHECK_ENDPOINT);
43     }
44
45     @Test
46     public void testHealthCheckSuccess() throws Exception {
47         final Invocation.Builder invocationBuilder = sendRequest(HEALTHCHECK_ENDPOINT);
48         final HealthCheckReport report = invocationBuilder.get(HealthCheckReport.class);
49         validateHealthCheckReport(SELF, true, 200, ALIVE, report);
50
51         // verify it fails when no authorization info is included
52         checkUnauthRequest(HEALTHCHECK_ENDPOINT, req -> req.get());
53     }
54
55     private void validateHealthCheckReport(final String url, final boolean healthy, final int code,
56             final String message, final HealthCheckReport report) {
57         assertThat(report.getName()).isNotBlank();
58         assertEquals(url, report.getUrl());
59         assertEquals(healthy, report.isHealthy());
60         assertEquals(code, report.getCode());
61         assertEquals(message, report.getMessage());
62     }
63 }