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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.apex.plugins.context.distribution.infinispan;
23 import java.io.IOException;
25 import org.junit.After;
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.onap.policy.apex.context.impl.schema.java.JavaSchemaHelperParameters;
29 import org.onap.policy.apex.context.parameters.ContextParameterConstants;
30 import org.onap.policy.apex.context.parameters.ContextParameters;
31 import org.onap.policy.apex.context.parameters.SchemaParameters;
32 import org.onap.policy.apex.context.test.distribution.ContextAlbumUpdate;
33 import org.onap.policy.apex.context.test.distribution.ContextInstantiation;
34 import org.onap.policy.apex.context.test.distribution.ContextUpdate;
35 import org.onap.policy.apex.context.test.distribution.SequentialContextInstantiation;
36 import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
37 import org.onap.policy.apex.model.basicmodel.handling.ApexModelException;
38 import org.onap.policy.common.parameters.ParameterService;
39 import org.slf4j.ext.XLogger;
40 import org.slf4j.ext.XLoggerFactory;
43 * The Class InfinispanContextDistributorTest.
45 public class InfinispanContextDistributorTest {
46 private static final XLogger logger = XLoggerFactory.getXLogger(InfinispanContextDistributorTest.class);
48 private static final String PLUGIN_CLASS = InfinispanContextDistributor.class.getCanonicalName();
50 private SchemaParameters schemaParameters;
51 private ContextParameters contextParameters;
57 public void beforeTest() {
58 contextParameters = new ContextParameters();
60 contextParameters.setName(ContextParameterConstants.MAIN_GROUP_NAME);
61 InfinispanDistributorParameters inifinispanDistributorParameters = new InfinispanDistributorParameters();
62 inifinispanDistributorParameters.setName(ContextParameterConstants.DISTRIBUTOR_GROUP_NAME);
63 inifinispanDistributorParameters.setPluginClass(PLUGIN_CLASS);
64 contextParameters.setDistributorParameters(inifinispanDistributorParameters);
65 contextParameters.getLockManagerParameters().setName(ContextParameterConstants.LOCKING_GROUP_NAME);
66 contextParameters.getPersistorParameters().setName(ContextParameterConstants.PERSISTENCE_GROUP_NAME);
68 ParameterService.register(contextParameters);
69 ParameterService.register(contextParameters.getDistributorParameters());
70 ParameterService.register(contextParameters.getLockManagerParameters());
71 ParameterService.register(contextParameters.getPersistorParameters());
73 schemaParameters = new SchemaParameters();
74 schemaParameters.setName(ContextParameterConstants.SCHEMA_GROUP_NAME);
75 schemaParameters.getSchemaHelperParameterMap().put("JAVA", new JavaSchemaHelperParameters());
77 ParameterService.register(schemaParameters);
84 public void afterTest() {
85 ParameterService.deregister(schemaParameters);
87 ParameterService.deregister(contextParameters.getDistributorParameters());
88 ParameterService.deregister(contextParameters.getLockManagerParameters());
89 ParameterService.deregister(contextParameters.getPersistorParameters());
90 ParameterService.deregister(contextParameters);
94 * Test context album update infinispan.
96 * @throws ApexModelException the apex model exception
97 * @throws IOException Signals that an I/O exception has occurred.
98 * @throws ApexException the apex exception
101 public void testContextAlbumUpdateInfinispan() throws ApexModelException, IOException, ApexException {
102 logger.debug("Running testContextAlbumUpdateInfinispan test . . .");
104 new ContextAlbumUpdate().testContextAlbumUpdate();
106 logger.debug("Ran testContextAlbumUpdateInfinispan test");
110 * Test context instantiation infinispan.
112 * @throws ApexModelException the apex model exception
113 * @throws IOException Signals that an I/O exception has occurred.
114 * @throws ApexException the apex exception
117 public void testContextInstantiationInfinispan() throws ApexModelException, IOException, ApexException {
118 logger.debug("Running testContextInstantiationInfinispan test . . .");
120 new ContextInstantiation().testContextInstantiation();
122 logger.debug("Ran testContextInstantiationInfinispan test");
126 * Test context update infinispan.
128 * @throws ApexModelException the apex model exception
129 * @throws IOException Signals that an I/O exception has occurred.
130 * @throws ApexException the apex exception
133 public void testContextUpdateInfinispan() throws ApexModelException, IOException, ApexException {
134 logger.debug("Running testContextUpdateInfinispan test . . .");
136 new ContextUpdate().testContextUpdate();
138 logger.debug("Ran testContextUpdateInfinispan test");
142 * Test sequential context instantiation infinispan.
144 * @throws ApexModelException the apex model exception
145 * @throws IOException Signals that an I/O exception has occurred.
146 * @throws ApexException the apex exception
149 public void testSequentialContextInstantiationInfinispan() throws ApexModelException, IOException, ApexException {
150 logger.debug("Running testSequentialContextInstantiationInfinispan test . . .");
152 new SequentialContextInstantiation().testSequentialContextInstantiation();
154 logger.debug("Ran testSequentialContextInstantiationInfinispan test");