e0b38b6663a782b5a2770a4f6865481d7a323b77
[policy/engine.git] / BRMSGateway / src / test / java / org / onap / policy / brmsInterface / BRMSGatewayTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. 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.onap.policy.brmsInterface;
22
23 import static org.junit.Assert.assertNull;
24 import static org.junit.Assert.fail;
25 import static org.mockito.Matchers.any;
26 import org.junit.Test;
27 import org.junit.runner.RunWith;
28 import org.mockito.Mockito;
29 import org.powermock.api.mockito.PowerMockito;
30 import org.powermock.core.classloader.annotations.PrepareForTest;
31 import org.powermock.modules.junit4.PowerMockRunner;
32
33 @RunWith(PowerMockRunner.class)
34 public class BRMSGatewayTest {
35         @Test
36         public void testGet() {
37                 assertNull(BRMSGateway.getPolicyEngine());
38         }
39
40         @PrepareForTest({Thread.class, BRMSGateway.class})
41         @Test
42         public void testMain() throws Exception {
43                 // Mock Thread
44                 PowerMockito.spy(Thread.class);
45                 PowerMockito.doNothing().when(Thread.class);
46                 Thread.sleep(1000);
47
48                 // Mock handler
49                 BRMSHandler handler = Mockito.mock(BRMSHandler.class);
50                 PowerMockito.whenNew(BRMSHandler.class).withArguments(any()).thenReturn(handler);
51
52                 // Run app
53                 try {
54                         String[] args = null;
55                         BRMSGateway.main(args);
56                 }
57                 catch (Exception ex) {
58                         fail("Not expected an exception: " + ex);
59                 }
60         }
61 }