Merge "Reorder modifiers"
[so.git] / adapters / mso-requests-db-adapter / src / test / java / org / openecomp / mso / adapters / requestsdb / HealthCheckHandlerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2018 Huawei Technologies Co., Ltd. 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.mso.adapters.requestsdb;
22
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.junit.runner.RunWith;
26 import org.openecomp.mso.HealthCheckUtils;
27 import org.openecomp.mso.logger.MsoLogger;
28 import org.powermock.api.mockito.PowerMockito;
29 import org.powermock.core.classloader.annotations.PrepareForTest;
30 import org.powermock.modules.junit4.PowerMockRunner;
31
32 import javax.ws.rs.core.Response;
33
34 import static org.junit.Assert.assertEquals;
35 import static org.mockito.Matchers.any;
36 import static org.mockito.Mockito.when;
37
38 @RunWith(PowerMockRunner.class)
39 @PrepareForTest(HealthCheckHandler.class)
40 public class HealthCheckHandlerTest {
41
42     HealthCheckHandler hcH;
43
44     @Before
45     public void init(){
46
47         hcH = new HealthCheckHandler();
48     }
49
50     @Test
51     public void testNoServiceResp() {
52
53         HealthCheckUtils test = PowerMockito.mock(HealthCheckUtils.class);
54         try {
55             PowerMockito.whenNew(HealthCheckUtils.class).withNoArguments().thenReturn(test);
56             when(test.siteStatusCheck(any(MsoLogger.class))).thenReturn(true);
57
58         } catch (Exception e) {
59             e.printStackTrace();
60         }
61        Response response =  hcH.healthcheck("request");
62        assertEquals(503,response.getStatus());
63     }
64
65 }
66
67