a8223ebe77b7b529230491e50878318ab7b34223
[msb/apigateway.git] / apiroute / apiroute-service / src / test / java / org / onap / msb / apiroute / health / ApiRouteHealthCheckTest.java
1 /*******************************************************************************
2  * Copyright 2016-2017 ZTE, Inc. and others.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  * 
7  * http://www.apache.org/licenses/LICENSE-2.0
8  * 
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  ******************************************************************************/
14 package org.onap.msb.apiroute.health;
15
16 import org.junit.Test;
17 import org.junit.runner.RunWith;
18 import org.mockito.Mockito;
19 import org.onap.msb.apiroute.wrapper.util.HttpClientUtil;
20 import org.powermock.api.mockito.PowerMockito;
21 import org.powermock.core.classloader.annotations.PrepareForTest;
22 import org.powermock.modules.junit4.PowerMockRunner;
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25
26 import com.codahale.metrics.health.HealthCheck.Result;
27
28 @RunWith(PowerMockRunner.class)
29 @PrepareForTest({HttpClientUtil.class})
30 public class ApiRouteHealthCheckTest {
31     private static final Logger LOGGER = LoggerFactory.getLogger(ApiRouteHealthCheckTest.class);
32
33     @Test
34     public void testchecksuccess() {
35         PowerMockito.mockStatic(HttpClientUtil.class);
36         try {
37
38             PowerMockito.when(HttpClientUtil.httpGetStatus(Mockito.anyString())).thenReturn(200);
39         } catch (Exception e) {
40             // TODO Auto-generated catch block
41             e.printStackTrace();
42         }
43
44         ApiRouteHealthCheck check = new ApiRouteHealthCheck();
45         Result rst = check.execute();
46
47         if (!rst.isHealthy()) {
48             LOGGER.warn("testchecksuccess health check failed:" + rst.getMessage());
49         } else {
50             LOGGER.debug(" testchecksuccess health");
51         }
52     }
53
54     @Test
55     public void testcheckfailed() {
56         PowerMockito.mockStatic(HttpClientUtil.class);
57         try {
58
59             PowerMockito.when(HttpClientUtil.httpGetStatus(Mockito.anyString())).thenReturn(400);
60         } catch (Exception e) {
61             // TODO Auto-generated catch block
62             e.printStackTrace();
63         }
64
65         ApiRouteHealthCheck check = new ApiRouteHealthCheck();
66         Result rst = check.execute();
67
68         if (!rst.isHealthy()) {
69             LOGGER.warn("testcheckfailed health check failed:" + rst.getMessage());
70         } else {
71             LOGGER.debug(" testcheckfailed health");
72         }
73     }
74 }