0ddfb3b570dc8d8cbe497e7a50f4c745c6d1d1a4
[policy/pap.git] / main / src / test / java / org / onap / policy / pap / main / rest / TestHealthCheckRestControllerV1.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property.
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.pap.main.rest;
23
24 import static org.junit.Assert.assertEquals;
25
26 import javax.ws.rs.client.Invocation;
27 import org.junit.Test;
28 import org.onap.policy.common.endpoints.report.HealthCheckReport;
29
30 /**
31  * Class to perform unit test of {@link PapRestServer}.
32  *
33  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
34  */
35 public class TestHealthCheckRestControllerV1 extends CommonPapRestServer {
36
37     private static final String HEALTHCHECK_ENDPOINT = "healthcheck";
38
39     @Test
40     public void testSwagger() throws Exception {
41         super.testSwagger(HEALTHCHECK_ENDPOINT);
42     }
43
44     @Test
45     public void testHealthCheckSuccess() throws Exception {
46         final Invocation.Builder invocationBuilder = sendRequest(HEALTHCHECK_ENDPOINT);
47         final HealthCheckReport report = invocationBuilder.get(HealthCheckReport.class);
48         validateHealthCheckReport(NAME, SELF, true, 200, ALIVE, report);
49     }
50
51     @Test
52     public void testHealthCheck_500() throws Exception {
53
54         markActivatorDead();
55
56         final Invocation.Builder invocationBuilder = sendRequest(HEALTHCHECK_ENDPOINT);
57         final HealthCheckReport report = invocationBuilder.get(HealthCheckReport.class);
58         validateHealthCheckReport(NAME, SELF, false, 500, NOT_ALIVE, report);
59     }
60
61     private void validateHealthCheckReport(final String name, final String url, final boolean healthy, final int code,
62             final String message, final HealthCheckReport report) {
63         assertEquals(name, report.getName());
64         assertEquals(url, report.getUrl());
65         assertEquals(healthy, report.isHealthy());
66         assertEquals(code, report.getCode());
67         assertEquals(message, report.getMessage());
68     }
69 }