Configuration as argument to BRMS Gateway
[policy/engine.git] / BRMSGateway / src / test / java / org / onap / policy / brms / api / BrmsGatewayMainTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2018 Ericsson. 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.assertEquals;
24 import static org.junit.Assert.fail;
25
26 import org.junit.Test;
27 import org.onap.policy.api.PolicyException;
28
29 public class BrmsGatewayMainTest {
30
31     @Test
32     public void testTooManyArguments() {
33         try {
34             String[] args = {"aaa", "bbb"};
35             BrmsGateway.main(args);
36             fail("test should throw an exception");
37         }
38         catch (PolicyException e) {
39             assertEquals("usage: org.onap.policy.brms.api.BrmsGateway [configFile]", e.getMessage());
40         }
41         catch (Exception e) {
42             fail("test should throw a PolicyException");
43         }
44
45         try {
46             String[] args = {"aaa"};
47             BrmsGateway.main(args);
48             fail("test should throw an exception");
49         }
50         catch (PolicyException e) {
51             assertEquals("Check your property file: PE300 - Data Issue: "
52                             + "Config File doesn't Exist in the specified Path aaa", e.getMessage());
53         }
54         catch (Exception e) {
55             fail("test should throw a PolicyException");
56         }
57     }
58
59 }