1efa9e14d27ad0db3b4927be486ca4fd76a30514
[policy/pap.git] / main / src / test / java / org / onap / policy / pap / main / startstop / TestMain.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019-2020 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.assertNotNull;
26 import static org.junit.Assert.assertNull;
27 import static org.junit.Assert.assertTrue;
28
29 import org.junit.After;
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.onap.policy.common.endpoints.http.server.HttpServletServerFactoryInstance;
33 import org.onap.policy.common.utils.services.Registry;
34 import org.onap.policy.pap.main.PapConstants;
35 import org.onap.policy.pap.main.PolicyPapException;
36 import org.onap.policy.pap.main.parameters.CommonTestData;
37
38 /**
39  * Class to perform unit test of {@link Main}}.
40  *
41  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
42  */
43 public class TestMain {
44     private Main main;
45
46     /**
47      * Set up.
48      */
49     @Before
50     public void setUp() {
51         Registry.newRegistry();
52         HttpServletServerFactoryInstance.getServerFactory().destroy();
53     }
54
55     /**
56      * Shuts "main" down.
57      * @throws Exception if an error occurs
58      */
59     @After
60     public void tearDown() throws Exception {
61         // shut down activator
62         PapActivator activator = Registry.getOrDefault(PapConstants.REG_PAP_ACTIVATOR, PapActivator.class, null);
63         if (activator != null && activator.isAlive()) {
64             activator.stop();
65         }
66     }
67
68     @Test
69     public void testMain() throws PolicyPapException {
70         final String[] papConfigParameters = {"-c", "parameters/PapConfigParameters.json"};
71         main = new Main(papConfigParameters);
72         assertTrue(main.getParameters().isValid());
73         assertEquals(CommonTestData.PAP_GROUP_NAME, main.getParameters().getName());
74
75         // ensure items were added to the registry
76         assertNotNull(Registry.get(PapConstants.REG_PAP_ACTIVATOR, PapActivator.class));
77
78         main.shutdown();
79     }
80
81     @Test
82     public void testMain_NoArguments() {
83         final String[] papConfigParameters = {};
84         main = new Main(papConfigParameters);
85         assertNull(main.getParameters());
86     }
87
88     @Test
89     public void testMain_InvalidArguments() {
90         final String[] papConfigParameters = {"parameters/PapConfigParameters.json"};
91         main = new Main(papConfigParameters);
92         assertNull(main.getParameters());
93     }
94
95     @Test
96     public void testMain_Help() {
97         final String[] papConfigParameters = {"-h"};
98         main = new Main(papConfigParameters);
99         assertNull(main.getParameters());
100     }
101
102     @Test
103     public void testMain_InvalidParameters() {
104         final String[] papConfigParameters = {"-c", "parameters/PapConfigParameters_InvalidName.json"};
105         main = new Main(papConfigParameters);
106         assertNull(main.getParameters());
107     }
108 }