120aba2f0aff7c8f4bd2cc7c1161c4b476979a71
[holmes/rule-management.git] / rulemgt / src / test / java / org / onap / holmes / rulemgt / 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.rulemgt;
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.core.classloader.annotations.SuppressStaticInitializationFor;
26 import org.powermock.modules.junit4.PowerMockRunner;
27 import org.powermock.reflect.internal.WhiteboxImpl;
28
29 @RunWith(PowerMockRunner.class)
30 @PrepareForTest(MicroServiceConfig.class)
31 @SuppressStaticInitializationFor("org.onap.holmes.common.utils.CommonUtils")
32 public class InitializerTest {
33
34     @Test
35     public void process() throws Exception {
36         MsbRegister mockedMsbRegister = PowerMock.createMock(MsbRegister.class);
37         Initializer initializer = new Initializer(mockedMsbRegister);
38
39         PowerMock.mockStaticPartial(MicroServiceConfig.class, "getMicroServiceIpAndPort", "getEnv");
40         EasyMock.expect(MicroServiceConfig.getMicroServiceIpAndPort()).andReturn(new String[]{"127.0.0.1", "443"});
41         System.setProperty("ENABLE_ENCRYPT", "true");
42
43         mockedMsbRegister.register2Msb(EasyMock.anyObject(MicroServiceInfo.class));
44         EasyMock.expectLastCall();
45
46         PowerMock.replayAll();
47
48         WhiteboxImpl.invokeMethod(initializer, "init");
49
50         PowerMock.verifyAll();
51     }
52 }