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