CSIT Fix for SDC-2585
[sdc.git] / catalog-fe / src / test / java / org / openecomp / sdc / fe / servlets / HealthCheckServiceTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 Samsung. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.fe.servlets;
22
23 import static org.junit.Assert.assertEquals;
24
25 import javax.servlet.ServletContext;
26 import javax.ws.rs.core.Response;
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.mockito.Mock;
30 import org.mockito.junit.MockitoJUnitRunner;
31
32 @RunWith(MockitoJUnitRunner.class)
33 public class HealthCheckServiceTest {
34
35
36     @Mock
37     private ServletContext context;
38
39     private final HealthCheckService healthCheckService = new HealthCheckService(context);
40     private final Response response = Response.status(500).entity("{}").build();
41
42
43     @Test
44     public void testGetFeHealth() {
45         //given
46         Response feHealth = healthCheckService.getFeHealth();
47
48         //then
49         assertEquals(response.getEntity(), feHealth.getEntity());
50         assertEquals(response.getStatus(), feHealth.getStatus());
51     }
52
53     @Test
54     public void testGetLastHealthStatus() {
55         //given
56         HealthCheckService.HealthStatus healthStatus = healthCheckService.getLastHealthStatus();
57
58         //then
59         assertEquals(response.getEntity(), healthStatus.getBody());
60         assertEquals(response.getStatus(), healthStatus.getStatusCode());
61     }
62
63     @Test
64     public void testGetTask () {
65         //given
66         HealthCheckService.HealthCheckScheduledTask healthCheckScheduledTask = healthCheckService.getTask();
67         HealthCheckService.HealthStatus  healthStatus = healthCheckScheduledTask.checkHealth();
68
69         //then
70         assertEquals(response.getStatus(),healthStatus.getStatusCode());
71     }
72 }