Adding statistics endpoint to policy/pap
[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  * ================================================================================
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.pap.main.startstop;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertTrue;
25 import static org.junit.Assert.fail;
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 import org.onap.policy.pap.main.parameters.PapParameterGroup;
32 import org.onap.policy.pap.main.parameters.PapParameterHandler;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35
36
37 /**
38  * Class to perform unit test of {@link PapActivator}}.
39  *
40  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
41  */
42 public class TestPapActivator {
43
44     private static final Logger LOGGER = LoggerFactory.getLogger(TestPapActivator.class);
45     private PapActivator activator;
46
47     /**
48      * Method for cleanup after each test.
49      */
50     @After
51     public void teardown() {
52         try {
53             if (activator != null) {
54                 activator.terminate();
55             }
56         } catch (final PolicyPapException exp) {
57             LOGGER.error("teardown failed", exp);
58         }
59     }
60
61     @Test
62     public void testPapActivator() throws PolicyPapException {
63         final String[] papConfigParameters = { "-c", "parameters/PapConfigParameters.json" };
64         final PapCommandLineArguments arguments = new PapCommandLineArguments(papConfigParameters);
65         final PapParameterGroup parGroup = new PapParameterHandler().getParameters(arguments);
66         activator = new PapActivator(parGroup);
67         try {
68             activator.initialize();
69             assertTrue(activator.getParameterGroup().isValid());
70             assertEquals(CommonTestData.PAP_GROUP_NAME, activator.getParameterGroup().getName());
71         } catch (final Exception exp) {
72             LOGGER.error("testPapActivator failed", exp);
73             fail("Test should not throw an exception");
74         }
75     }
76
77     @Test(expected = PolicyPapException.class)
78     public void testPapActivatorError() throws PolicyPapException {
79         final String[] papConfigParameters = { "-c", "parameters/PapConfigParameters.json" };
80         final PapCommandLineArguments arguments = new PapCommandLineArguments(papConfigParameters);
81         final PapParameterGroup parGroup = new PapParameterHandler().getParameters(arguments);
82         activator = new PapActivator(parGroup);
83         activator.initialize();
84         assertTrue(activator.getParameterGroup().isValid());
85         activator.initialize();
86     }
87 }