Release Artifact 1.3.1
[holmes/common.git] / holmes-actions / src / test / java / org / onap / holmes / common / utils / MSBRegisterUtilTest.java
1 /**\r
2  * Copyright 2017-2020 ZTE Corporation.\r
3  * <p>\r
4  * Licensed under the Apache License, Version 2.0 (the "License");\r
5  * you may not use this file except in compliance with the License.\r
6  * You may obtain a copy of the License at\r
7  * <p>\r
8  * http://www.apache.org/licenses/LICENSE-2.0\r
9  * <p>\r
10  * Unless required by applicable law or agreed to in writing, software\r
11  * distributed under the License is distributed on an "AS IS" BASIS,\r
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
13  * See the License for the specific language governing permissions and\r
14  * limitations under the License.\r
15  */\r
16 \r
17 package org.onap.holmes.common.utils;\r
18 \r
19 import org.easymock.EasyMock;\r
20 import org.junit.Test;\r
21 import org.junit.runner.RunWith;\r
22 import org.onap.holmes.common.config.MicroServiceConfig;\r
23 import org.onap.holmes.common.exception.CorrelationException;\r
24 import org.onap.msb.sdk.discovery.entity.MicroServiceFullInfo;\r
25 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;\r
26 import org.onap.msb.sdk.httpclient.msb.MSBServiceClient;\r
27 import org.powermock.api.easymock.PowerMock;\r
28 import org.powermock.core.classloader.annotations.PowerMockIgnore;\r
29 import org.powermock.core.classloader.annotations.PrepareForTest;\r
30 import org.powermock.modules.junit4.PowerMockRunner;\r
31 \r
32 @PrepareForTest({MicroServiceConfig.class, MSBServiceClient.class, MSBRegisterUtil.class})\r
33 @PowerMockIgnore({"javax.ws.*"})\r
34 @RunWith(PowerMockRunner.class)\r
35 public class MSBRegisterUtilTest {\r
36 \r
37     private MSBRegisterUtil msbRegisterUtil = new MSBRegisterUtil();\r
38 \r
39     @Test\r
40     public void test_register2Msb_normal() throws Exception {\r
41         MicroServiceInfo msi = new MicroServiceInfo();\r
42         String[] msbAddrInfo = {"127.0.0.1", "80"};\r
43 \r
44         PowerMock.mockStatic(MicroServiceConfig.class);\r
45         EasyMock.expect(MicroServiceConfig.getMsbIpAndPort()).andReturn(msbAddrInfo);\r
46 \r
47         MSBServiceClient client = PowerMock.createMock(MSBServiceClient.class);\r
48         PowerMock.expectNew(MSBServiceClient.class, msbAddrInfo[0], Integer.parseInt(msbAddrInfo[1])).andReturn(client);\r
49 \r
50         EasyMock.expect(client.registerMicroServiceInfo(msi, false)).andReturn(null);\r
51 \r
52         EasyMock.expect(client.registerMicroServiceInfo(msi, false)).andReturn(new MicroServiceFullInfo());\r
53 \r
54         PowerMock.replayAll();\r
55 \r
56         try {\r
57             msbRegisterUtil.register2Msb(msi);\r
58         } catch (CorrelationException e) {\r
59             // Do nothing\r
60         }\r
61 \r
62         PowerMock.verifyAll();\r
63     }\r
64 }