Removed Dependency: httpclient
[holmes/engine-management.git] / engine-d / src / test / java / org / onap / holmes / engine / InitializerTest.java
1 /**
2  * Copyright 2020 ZTE Corporation.
3  * <p>
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  * <p>
7  * http://www.apache.org/licenses/LICENSE-2.0
8  * <p>
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
15 package org.onap.holmes.engine;
16
17 import org.easymock.EasyMock;
18 import org.junit.Test;
19 import org.junit.runner.RunWith;
20 import org.onap.holmes.common.config.MicroServiceConfig;
21 import org.onap.holmes.common.utils.MsbRegister;
22 import org.onap.msb.sdk.discovery.entity.MicroServiceInfo;
23 import org.powermock.api.easymock.PowerMock;
24 import org.powermock.core.classloader.annotations.PrepareForTest;
25 import org.powermock.modules.junit4.PowerMockRunner;
26 import org.powermock.reflect.internal.WhiteboxImpl;
27
28 @RunWith(PowerMockRunner.class)
29 @PrepareForTest(MicroServiceConfig.class)
30 public class InitializerTest {
31
32     @Test
33     public void process() throws Exception {
34         MsbRegister mockedMsbRegister = PowerMock.createMock(MsbRegister.class);
35         Initializer initializer = new Initializer(mockedMsbRegister);
36
37         PowerMock.mockStaticPartial(MicroServiceConfig.class, "getMicroServiceIpAndPort", "getEnv");
38         EasyMock.expect(MicroServiceConfig.getMicroServiceIpAndPort()).andReturn(new String[]{"127.0.0.1", "443"});
39         System.setProperty("ENABLE_ENCRYPT", "true");
40
41         mockedMsbRegister.register2Msb(EasyMock.anyObject(MicroServiceInfo.class));
42         EasyMock.expectLastCall();
43
44         PowerMock.replayAll();
45
46         WhiteboxImpl.invokeMethod(initializer, "init");
47
48         PowerMock.verifyAll();
49     }
50 }