296a6609343f922fae199c1b139a85b51791ca4f
[policy/pap.git] / main / src / test / java / org / onap / policy / pap / main / rest / e2e / HealthCheckTest.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP PAP
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2022 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.pap.main.rest.e2e;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27 import java.net.HttpURLConnection;
28 import javax.ws.rs.client.Invocation;
29 import org.junit.Test;
30 import org.onap.policy.common.endpoints.report.HealthCheckReport;
31
32 public class HealthCheckTest extends End2EndBase {
33     private static final String HEALTHCHECK_ENDPOINT = "healthcheck";
34
35     @Test
36     public void testHealthCheckSuccess() throws Exception {
37         final Invocation.Builder invocationBuilder = sendRequest(HEALTHCHECK_ENDPOINT);
38         final HealthCheckReport report = invocationBuilder.get(HealthCheckReport.class);
39
40         assertEquals(NAME, report.getName());
41         assertEquals(SELF, report.getUrl());
42         assertTrue(report.isHealthy());
43         assertEquals(HttpURLConnection.HTTP_OK, report.getCode());
44         assertEquals(ALIVE, report.getMessage());
45     }
46 }