Merge "Reorder modifiers"
[so.git] / adapters / mso-sdnc-adapter / src / test / java / org / openecomp / mso / adapters / sdnc / impl / SDNCAdapterRestImplTest.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.sdnc.impl;
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(SDNCAdapterRestImpl.class)
40 public class SDNCAdapterRestImplTest {
41
42     SDNCAdapterRestImpl test;
43
44     @Before
45     public void init(){
46
47         test = new SDNCAdapterRestImpl();
48     }
49
50    @Test
51    public void testBadReqNoServiceRsp() {
52
53        HealthCheckUtils hCU = PowerMockito.mock(HealthCheckUtils.class);
54         try {
55             PowerMockito.whenNew(HealthCheckUtils.class).withNoArguments().thenReturn(hCU);
56             when(hCU.siteStatusCheck(any(MsoLogger.class))).thenReturn(true);
57
58         } catch (Exception e) {
59             e.printStackTrace();
60         }
61
62        String reqXML = "<xml>test</xml>";
63
64        Response response = test.MSORequest(reqXML);
65        assertEquals(400,response.getStatus());
66
67        response = test.healthcheck("1a25a7c0-4c91-4f74-9a78-8c11b7a57f1a");
68        assertEquals(503,response.getStatus());
69
70        response = test.globalHealthcheck(true);
71        assertEquals(503,response.getStatus());
72
73        response = test.nodeHealthcheck();
74        assertEquals(503,response.getStatus());
75
76    }
77
78 }
79