Changes for checkstyle 8.32
[policy/apex-pdp.git] / testsuites / integration / integration-context-test / src / test / java / org / onap / policy / apex / testsuites / integration / context / distribution / InfinispanContextDistributorTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. 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.apex.testsuites.integration.context.distribution;
22
23 import java.io.IOException;
24 import org.junit.After;
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.onap.policy.apex.context.impl.schema.java.JavaSchemaHelperParameters;
28 import org.onap.policy.apex.context.parameters.ContextParameterConstants;
29 import org.onap.policy.apex.context.parameters.ContextParameters;
30 import org.onap.policy.apex.context.parameters.SchemaParameters;
31 import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
32 import org.onap.policy.apex.model.basicmodel.handling.ApexModelException;
33 import org.onap.policy.apex.plugins.context.distribution.infinispan.InfinispanContextDistributor;
34 import org.onap.policy.apex.plugins.context.distribution.infinispan.InfinispanDistributorParameters;
35 import org.onap.policy.common.parameters.ParameterService;
36 import org.slf4j.ext.XLogger;
37 import org.slf4j.ext.XLoggerFactory;
38
39 /**
40  * The Class InfinispanContextDistributorTest.
41  */
42 public class InfinispanContextDistributorTest {
43     private static final XLogger logger = XLoggerFactory.getXLogger(InfinispanContextDistributorTest.class);
44
45     private static final String PLUGIN_CLASS = InfinispanContextDistributor.class.getName();
46
47     private SchemaParameters schemaParameters;
48     private ContextParameters contextParameters;
49
50     /**
51      * Before test.
52      */
53     @Before
54     public void beforeTest() {
55         contextParameters = new ContextParameters();
56
57         contextParameters.setName(ContextParameterConstants.MAIN_GROUP_NAME);
58         InfinispanDistributorParameters inifinispanDistributorParameters = new InfinispanDistributorParameters();
59         inifinispanDistributorParameters.setName(ContextParameterConstants.DISTRIBUTOR_GROUP_NAME);
60         inifinispanDistributorParameters.setPluginClass(PLUGIN_CLASS);
61         contextParameters.setDistributorParameters(inifinispanDistributorParameters);
62         contextParameters.getLockManagerParameters().setName(ContextParameterConstants.LOCKING_GROUP_NAME);
63         contextParameters.getPersistorParameters().setName(ContextParameterConstants.PERSISTENCE_GROUP_NAME);
64
65         ParameterService.register(contextParameters);
66         ParameterService.register(contextParameters.getDistributorParameters());
67         ParameterService.register(contextParameters.getLockManagerParameters());
68         ParameterService.register(contextParameters.getPersistorParameters());
69
70         schemaParameters = new SchemaParameters();
71         schemaParameters.setName(ContextParameterConstants.SCHEMA_GROUP_NAME);
72         schemaParameters.getSchemaHelperParameterMap().put("JAVA", new JavaSchemaHelperParameters());
73
74         ParameterService.register(schemaParameters);
75     }
76
77     /**
78      * After test.
79      */
80     @After
81     public void afterTest() {
82         ParameterService.deregister(schemaParameters);
83
84         ParameterService.deregister(contextParameters.getDistributorParameters());
85         ParameterService.deregister(contextParameters.getLockManagerParameters());
86         ParameterService.deregister(contextParameters.getPersistorParameters());
87         ParameterService.deregister(contextParameters);
88     }
89
90     /**
91      * Test context album update infinispan.
92      *
93      * @throws ApexModelException the apex model exception
94      * @throws IOException Signals that an I/O exception has occurred.
95      * @throws ApexException the apex exception
96      */
97     @Test
98     public void testContextAlbumUpdateInfinispan() throws ApexModelException, IOException, ApexException {
99         logger.debug("Running testContextAlbumUpdateInfinispan test . . .");
100
101         new ContextAlbumUpdate().testContextAlbumUpdate();
102
103         logger.debug("Ran testContextAlbumUpdateInfinispan test");
104     }
105
106     /**
107      * Test context instantiation infinispan.
108      *
109      * @throws ApexModelException the apex model exception
110      * @throws IOException Signals that an I/O exception has occurred.
111      * @throws ApexException the apex exception
112      */
113     @Test
114     public void testContextInstantiationInfinispan() throws ApexModelException, IOException, ApexException {
115         logger.debug("Running testContextInstantiationInfinispan test . . .");
116
117         new ContextInstantiation().testContextInstantiation();
118
119         logger.debug("Ran testContextInstantiationInfinispan test");
120     }
121
122     /**
123      * Test context update infinispan.
124      *
125      * @throws ApexModelException the apex model exception
126      * @throws IOException Signals that an I/O exception has occurred.
127      * @throws ApexException the apex exception
128      */
129     @Test
130     public void testContextUpdateInfinispan() throws ApexModelException, IOException, ApexException {
131         logger.debug("Running testContextUpdateInfinispan test . . .");
132
133         new ContextUpdate().testContextUpdate();
134
135         logger.debug("Ran testContextUpdateInfinispan test");
136     }
137
138     /**
139      * Test sequential context instantiation infinispan.
140      *
141      * @throws ApexModelException the apex model exception
142      * @throws IOException Signals that an I/O exception has occurred.
143      * @throws ApexException the apex exception
144      */
145     @Test
146     public void testSequentialContextInstantiationInfinispan() throws ApexModelException, IOException, ApexException {
147         logger.debug("Running testSequentialContextInstantiationInfinispan test . . .");
148
149         new SequentialContextInstantiation().testSequentialContextInstantiation();
150
151         logger.debug("Ran testSequentialContextInstantiationInfinispan test");
152     }
153 }