Xacml PDP Register/Unregister Changes
[policy/xacml-pdp.git] / main / src / test / java / org / onap / policy / pdpx / main / startstop / TestMain.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pdpx.main.startstop;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNull;
25 import static org.junit.Assert.assertTrue;
26
27 import org.junit.Assert;
28 import org.junit.BeforeClass;
29 import org.junit.Test;
30 import org.onap.policy.common.endpoints.event.comm.client.TopicSinkClientException;
31 import org.onap.policy.pdpx.main.PolicyXacmlPdpException;
32 import org.onap.policy.pdpx.main.parameters.CommonTestData;
33
34 /**
35  * Class to perform unit test of Main.
36  *
37  */
38 public class TestMain {
39
40     /**
41      * setup.
42      */
43     @BeforeClass
44     public static void setUp() {
45         System.setProperty("org.eclipse.jetty.util.log.class", "org.eclipse.jetty.util.log.StdErrLog");
46         System.setProperty("org.eclipse.jetty.LEVEL", "OFF");
47
48     }
49
50     @Test
51     public void testMain() throws PolicyXacmlPdpException, TopicSinkClientException {
52         final String[] xacmlPdpConfigParameters = {"-c", "parameters/XacmlPdpConfigParameters.json"};
53         final Main main = new Main(xacmlPdpConfigParameters);
54         assertTrue(main.getParameters().isValid());
55         assertEquals(CommonTestData.PDPX_GROUP_NAME, main.getParameters().getName());
56         main.shutdown();
57     }
58
59     @Test
60     public void testMain_NoArguments() throws PolicyXacmlPdpException, TopicSinkClientException {
61         final String[] xacmlPdpConfigParameters = {};
62         final Main main = new Main(xacmlPdpConfigParameters);
63         assertNull(main.getParameters());
64         main.shutdown();
65     }
66
67     @Test
68     public void testMain_InvalidArguments() throws TopicSinkClientException {
69         final String[] xacmlPdpConfigParameters = {"parameters/XacmlPdpConfigParameters.json"};
70         final Main main = new Main(xacmlPdpConfigParameters);
71         assertNull(main.getParameters());
72     }
73
74     @Test
75     public void testMain_Help() throws TopicSinkClientException {
76         final String[] xacmlPdpConfigParameters = {"-h"};
77         final Main main = new Main(xacmlPdpConfigParameters);
78         final String message = "-h,--help                     outputs the usage of this command";
79         Assert.assertTrue(main.getArgumentMessage().contains(message));
80
81     }
82
83     @Test
84     public void testMain_InvalidParameters() throws TopicSinkClientException {
85         final String[] xacmlPdpConfigParameters = {"-c", "parameters/XacmlPdpConfigParameters_InvalidName.json"};
86         final Main main = new Main(xacmlPdpConfigParameters);
87         assertNull(main.getParameters());
88     }
89 }