Merge "Audit and metric logs contain everything"
[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.io.FileInputStream;
32 import java.util.Properties;
33 import org.junit.After;
34 import org.junit.Before;
35 import org.junit.Test;
36 import org.onap.policy.common.endpoints.http.server.HttpServletServer;
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 =
67             {"-c", "parameters/PapConfigParameters.json", "-p", "parameters/topic.properties"};
68         final PapCommandLineArguments arguments = new PapCommandLineArguments(papConfigParameters);
69         final PapParameterGroup parGroup = new PapParameterHandler().getParameters(arguments);
70
71         Properties props = new Properties();
72         String propFile = arguments.getFullPropertyFilePath();
73         try (FileInputStream stream = new FileInputStream(propFile)) {
74             props.load(stream);
75         }
76
77         activator = new PapActivator(parGroup, props);
78     }
79
80     /**
81      * Method for cleanup after each test.
82      *
83      * @throws Exception if an error occurs
84      */
85     @After
86     public void teardown() throws Exception {
87         if (activator != null && activator.isAlive()) {
88             activator.stop();
89         }
90     }
91
92     @Test
93     public void testPapActivator() throws PolicyPapException {
94         assertFalse(activator.isAlive());
95         activator.start();
96         assertTrue(activator.isAlive());
97         assertTrue(activator.getParameterGroup().isValid());
98         assertEquals(CommonTestData.PAP_GROUP_NAME, activator.getParameterGroup().getName());
99
100         // ensure items were added to the registry
101         assertNotNull(Registry.get(PapConstants.REG_PDP_MODIFY_LOCK, Object.class));
102         assertNotNull(Registry.get(PapConstants.REG_STATISTICS_MANAGER, PapStatisticsManager.class));
103         assertNotNull(Registry.get(PapConstants.REG_PDP_MODIFY_MAP, PdpModifyRequestMap.class));
104
105         // repeat - should throw an exception
106         assertThatIllegalStateException().isThrownBy(() -> activator.start());
107         assertTrue(activator.isAlive());
108         assertTrue(activator.getParameterGroup().isValid());
109     }
110
111     @Test
112     public void testTerminate() throws Exception {
113         activator.start();
114         activator.stop();
115         assertFalse(activator.isAlive());
116
117         // ensure items have been removed from the registry
118         assertNull(Registry.getOrDefault(PapConstants.REG_PDP_MODIFY_LOCK, Object.class, null));
119         assertNull(Registry.getOrDefault(PapConstants.REG_STATISTICS_MANAGER, PapStatisticsManager.class, null));
120         assertNull(Registry.getOrDefault(PapConstants.REG_PDP_MODIFY_MAP, PdpModifyRequestMap.class, null));
121
122         // repeat - should throw an exception
123         assertThatIllegalStateException().isThrownBy(() -> activator.stop());
124         assertFalse(activator.isAlive());
125     }
126 }