Configuration as argument to BRMS Gateway
[policy/engine.git] / BRMSGateway / src / test / java / org / onap / policy / brms / api / 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.brms.api;
22
23 import static org.junit.Assert.assertNull;
24 import static org.junit.Assert.fail;
25 import static org.mockito.Matchers.any;
26
27 import org.junit.Test;
28 import org.junit.runner.RunWith;
29 import org.mockito.Mockito;
30 import org.powermock.api.mockito.PowerMockito;
31 import org.powermock.core.classloader.annotations.PrepareForTest;
32 import org.powermock.modules.junit4.PowerMockRunner;
33
34 @RunWith(PowerMockRunner.class)
35 public class BrmsGatewayTest {
36     @Test
37     public void testGet() {
38         assertNull(BrmsGateway.getPolicyEngine());
39     }
40
41     @PrepareForTest({Thread.class, BrmsGateway.class})
42     @Test
43     public void testMain() throws Exception {
44         // Mock Thread
45         PowerMockito.spy(Thread.class);
46         PowerMockito.doNothing().when(Thread.class);
47         Thread.sleep(1000);
48
49         // Mock handler
50         final BrmsHandler handler = Mockito.mock(BrmsHandler.class);
51         PowerMockito.whenNew(BrmsHandler.class).withArguments(any()).thenReturn(handler);
52
53         // Run app
54         try {
55             final String[] args = new String[0];
56             BrmsGateway.main(args);
57         } catch (final Exception ex) {
58             fail("Not expected an exception: " + ex);
59         }
60     }
61 }