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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.apex.services.onappf.rest;
24 import static org.assertj.core.api.Assertions.assertThat;
25 import static org.junit.Assert.assertEquals;
27 import javax.ws.rs.client.Invocation;
28 import org.junit.Test;
29 import org.onap.policy.common.endpoints.report.HealthCheckReport;
32 * Class to perform unit test of {@link ApexStarterRestServer}.
34 * @author Ajith Sreekumar (ajith.sreekumar@est.tech)
36 public class TestHealthCheckRestControllerV1 extends CommonApexStarterRestServer {
38 private static final String HEALTHCHECK_ENDPOINT = "healthcheck";
41 public void testSwagger() throws Exception {
42 super.testSwagger(HEALTHCHECK_ENDPOINT);
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);
51 // verify it fails when no authorization info is included
52 checkUnauthRequest(HEALTHCHECK_ENDPOINT, req -> req.get());
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());