Test decision from main entry
[policy/xacml-pdp.git] / main / src / test / java / org / onap / policy / pdpx / main / startstop / TestXacmlPdpActivator.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
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.pdpx.main.startstop;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertSame;
26 import static org.junit.Assert.assertTrue;
27
28 import java.io.FileInputStream;
29 import java.net.UnknownHostException;
30 import java.util.Properties;
31
32 import org.junit.After;
33 import org.junit.BeforeClass;
34 import org.junit.Test;
35 import org.onap.policy.common.endpoints.event.comm.client.TopicSinkClientException;
36 import org.onap.policy.pdpx.main.PolicyXacmlPdpException;
37 import org.onap.policy.pdpx.main.parameters.CommonTestData;
38 import org.onap.policy.pdpx.main.parameters.XacmlPdpParameterGroup;
39 import org.onap.policy.pdpx.main.parameters.XacmlPdpParameterHandler;
40
41
42 /**
43  * Class to perform unit test of XacmlPdpActivator.
44  *
45  */
46 public class TestXacmlPdpActivator {
47     private static XacmlPdpActivator activator = null;
48
49     /**
50      * Setup the tests.
51      */
52     @BeforeClass
53     public static void setup() throws Exception {
54         final String[] xacmlPdpConfigParameters =
55             {"-c", "parameters/XacmlPdpConfigParameters.json", "-p", "parameters/topic.properties"};
56         final XacmlPdpCommandLineArguments arguments = new XacmlPdpCommandLineArguments(xacmlPdpConfigParameters);
57         final XacmlPdpParameterGroup parGroup = new XacmlPdpParameterHandler().getParameters(arguments);
58
59         Properties props = new Properties();
60         String propFile = arguments.getFullPropertyFilePath();
61         try (FileInputStream stream = new FileInputStream(propFile)) {
62             props.load(stream);
63         }
64
65         activator = new XacmlPdpActivator(parGroup, props);
66     }
67
68     @Test
69     public void testXacmlPdpActivator() throws PolicyXacmlPdpException, TopicSinkClientException, UnknownHostException {
70         assertFalse(activator.isAlive());
71         activator.start();
72         assertTrue(activator.isAlive());
73         assertTrue(activator.getParameterGroup().isValid());
74         assertEquals(CommonTestData.PDPX_GROUP_NAME, activator.getParameterGroup().getName());
75
76     }
77
78     @Test
79     public void testGetCurrent_testSetCurrent() {
80         assertSame(activator, XacmlPdpActivator.getCurrent());
81     }
82
83     @Test
84     public void testTerminate() throws Exception {
85         if (!activator.isAlive()) {
86             activator.start();
87         }
88         activator.stop();
89         assertFalse(activator.isAlive());
90     }
91
92     /**
93      * Teardown tests.
94      * @throws PolicyXacmlPdpException on termination errors
95      */
96     @After
97     public void teardown() throws PolicyXacmlPdpException {
98         if (activator != null && activator.isAlive()) {
99             activator.stop();
100         }
101     }
102 }