APEX standalone support for ToscaPolicy format
[policy/apex-pdp.git] / services / services-engine / src / test / java / org / onap / policy / apex / service / engine / event / PluginFactoriesTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. All rights reserved.
4  *  Modifications Copyright (C) 2020 Bell Canada. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.apex.service.engine.event;
23
24 import static org.junit.Assert.assertNotNull;
25
26 import java.util.Map.Entry;
27 import org.junit.Test;
28 import org.onap.policy.apex.service.engine.event.impl.EventConsumerFactory;
29 import org.onap.policy.apex.service.engine.event.impl.EventProducerFactory;
30 import org.onap.policy.apex.service.engine.main.ApexCommandLineArguments;
31 import org.onap.policy.apex.service.parameters.ApexParameterHandler;
32 import org.onap.policy.apex.service.parameters.ApexParameters;
33 import org.onap.policy.apex.service.parameters.eventhandler.EventHandlerParameters;
34 import org.onap.policy.common.parameters.ParameterException;
35
36 /**
37  * Test Plugin Factories.
38  * @author Liam Fallon (liam.fallon@ericsson.com)
39  * @author John Keeney (john.keeney@ericsson.com)
40  */
41 public class PluginFactoriesTest {
42
43     @Test
44     public void testEventConsumerFactory() throws ApexEventException, ParameterException {
45         final String[] args = {"-p", "src/test/resources/parameters/factoryGoodParams.json"};
46         final ApexCommandLineArguments arguments = new ApexCommandLineArguments(args);
47
48         final ApexParameters parameters = new ApexParameterHandler().getParameters(arguments);
49
50         for (final Entry<String, EventHandlerParameters> ce : parameters.getEventInputParameters().entrySet()) {
51             final ApexEventConsumer consumer = new EventConsumerFactory().createConsumer(
52                     parameters.getEngineServiceParameters().getName() + "_consumer_" + ce.getKey(), ce.getValue());
53             assertNotNull(consumer);
54         }
55
56         for (final Entry<String, EventHandlerParameters> pe : parameters.getEventOutputParameters().entrySet()) {
57             final ApexEventProducer producer = new EventProducerFactory().createProducer(
58                     parameters.getEngineServiceParameters().getName() + "_producer_" + pe.getKey(), pe.getValue());
59             assertNotNull(producer);
60         }
61     }
62 }