Add PDP Group Deploy and Delete REST API stubs
[policy/pap.git] / main / src / test / java / org / onap / policy / pap / main / startstop / TestMain.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.pap.main.startstop;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertTrue;
26
27 import org.junit.After;
28 import org.junit.Test;
29 import org.onap.policy.pap.main.PolicyPapException;
30 import org.onap.policy.pap.main.parameters.CommonTestData;
31
32 /**
33  * Class to perform unit test of {@link Main}}.
34  *
35  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
36  */
37 public class TestMain {
38     private Main main;
39
40     /**
41      * Shuts "main" down.
42      * @throws Exception if an error occurs
43      */
44     @After
45     public void tearDown() throws Exception {
46         // shut down activator
47         PapActivator activator = PapActivator.getCurrent();
48         if (activator != null && activator.isAlive()) {
49             activator.terminate();
50         }
51     }
52
53     @Test
54     public void testMain() throws PolicyPapException {
55         final String[] papConfigParameters =
56             {"-c", "parameters/PapConfigParameters.json", "-p", "parameters/topic.properties"};
57         main = new Main(papConfigParameters);
58         assertTrue(main.getParameters().isValid());
59         assertEquals(CommonTestData.PAP_GROUP_NAME, main.getParameters().getName());
60
61         main.shutdown();
62     }
63
64     @Test
65     public void testMain_NoArguments() {
66         final String[] papConfigParameters = {};
67         main = new Main(papConfigParameters);
68         assertTrue(main.getParameters() == null);
69     }
70
71     @Test
72     public void testMain_InvalidArguments() {
73         final String[] papConfigParameters = {"parameters/PapConfigParameters.json"};
74         main = new Main(papConfigParameters);
75         assertTrue(main.getParameters() == null);
76     }
77
78     @Test
79     public void testMain_Help() {
80         final String[] papConfigParameters = {"-h"};
81         Main.main(papConfigParameters);
82     }
83
84     @Test
85     public void testMain_InvalidParameters() {
86         final String[] papConfigParameters = {"-c", "parameters/PapConfigParameters_InvalidName.json"};
87         main = new Main(papConfigParameters);
88         assertTrue(main.getParameters() == null);
89     }
90 }