Remove topic.properties and incorporate into overall config file
[policy/pap.git] / main / src / test / java / org / onap / policy / pap / main / startstop / TestPapActivator.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.assertj.core.api.Assertions.assertThatIllegalStateException;
25 import static org.junit.Assert.assertEquals;
26 import static org.junit.Assert.assertFalse;
27 import static org.junit.Assert.assertNotNull;
28 import static org.junit.Assert.assertNull;
29 import static org.junit.Assert.assertTrue;
30
31 import java.util.Properties;
32 import org.junit.After;
33 import org.junit.Before;
34 import org.junit.Test;
35 import org.onap.policy.common.endpoints.http.server.HttpServletServer;
36 import org.onap.policy.common.endpoints.utils.ParameterUtils;
37 import org.onap.policy.common.utils.services.Registry;
38 import org.onap.policy.pap.main.PapConstants;
39 import org.onap.policy.pap.main.PolicyPapException;
40 import org.onap.policy.pap.main.comm.PdpModifyRequestMap;
41 import org.onap.policy.pap.main.parameters.CommonTestData;
42 import org.onap.policy.pap.main.parameters.PapParameterGroup;
43 import org.onap.policy.pap.main.parameters.PapParameterHandler;
44 import org.onap.policy.pap.main.rest.PapStatisticsManager;
45
46
47 /**
48  * Class to perform unit test of {@link PapActivator}}.
49  *
50  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
51  */
52 public class TestPapActivator {
53
54     private PapActivator activator;
55
56     /**
57      * Initializes an activator.
58      *
59      * @throws Exception if an error occurs
60      */
61     @Before
62     public void setUp() throws Exception {
63         Registry.newRegistry();
64         HttpServletServer.factory.destroy();
65
66         final String[] papConfigParameters = {"-c", "parameters/PapConfigParameters.json"};
67         final PapCommandLineArguments arguments = new PapCommandLineArguments(papConfigParameters);
68         final PapParameterGroup parGroup = new PapParameterHandler().getParameters(arguments);
69
70         Properties props = ParameterUtils.getTopicProperties(parGroup.getTopicParameterGroup());
71
72         activator = new PapActivator(parGroup, props);
73     }
74
75     /**
76      * Method for cleanup after each test.
77      *
78      * @throws Exception if an error occurs
79      */
80     @After
81     public void teardown() throws Exception {
82         if (activator != null && activator.isAlive()) {
83             activator.stop();
84         }
85     }
86
87     @Test
88     public void testPapActivator() throws PolicyPapException {
89         assertFalse(activator.isAlive());
90         activator.start();
91         assertTrue(activator.isAlive());
92         assertTrue(activator.getParameterGroup().isValid());
93         assertEquals(CommonTestData.PAP_GROUP_NAME, activator.getParameterGroup().getName());
94
95         // ensure items were added to the registry
96         assertNotNull(Registry.get(PapConstants.REG_PDP_MODIFY_LOCK, Object.class));
97         assertNotNull(Registry.get(PapConstants.REG_STATISTICS_MANAGER, PapStatisticsManager.class));
98         assertNotNull(Registry.get(PapConstants.REG_PDP_MODIFY_MAP, PdpModifyRequestMap.class));
99
100         // repeat - should throw an exception
101         assertThatIllegalStateException().isThrownBy(() -> activator.start());
102         assertTrue(activator.isAlive());
103         assertTrue(activator.getParameterGroup().isValid());
104     }
105
106     @Test
107     public void testTerminate() throws Exception {
108         activator.start();
109         activator.stop();
110         assertFalse(activator.isAlive());
111
112         // ensure items have been removed from the registry
113         assertNull(Registry.getOrDefault(PapConstants.REG_PDP_MODIFY_LOCK, Object.class, null));
114         assertNull(Registry.getOrDefault(PapConstants.REG_STATISTICS_MANAGER, PapStatisticsManager.class, null));
115         assertNull(Registry.getOrDefault(PapConstants.REG_PDP_MODIFY_MAP, PdpModifyRequestMap.class, null));
116
117         // repeat - should throw an exception
118         assertThatIllegalStateException().isThrownBy(() -> activator.stop());
119         assertFalse(activator.isAlive());
120     }
121 }