88b9fece34cc29d00c5d38ae1116c9b7c0682b39
[policy/apex-pdp.git] / plugins / plugins-executor / plugins-executor-java / src / test / java / org / onap / policy / apex / plugins / executor / java / JavaTaskSelectExecutorTest.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.plugins.executor.java;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertNotNull;
25 import static org.junit.Assert.fail;
26
27 import java.util.Properties;
28
29 import org.junit.After;
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.onap.policy.apex.context.ContextException;
33 import org.onap.policy.apex.context.parameters.ContextParameterConstants;
34 import org.onap.policy.apex.context.parameters.DistributorParameters;
35 import org.onap.policy.apex.context.parameters.LockManagerParameters;
36 import org.onap.policy.apex.context.parameters.PersistorParameters;
37 import org.onap.policy.apex.core.engine.context.ApexInternalContext;
38 import org.onap.policy.apex.core.engine.event.EnEvent;
39 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
40 import org.onap.policy.apex.model.eventmodel.concepts.AxEvent;
41 import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
42 import org.onap.policy.apex.model.policymodel.concepts.AxState;
43 import org.onap.policy.common.parameters.ParameterService;
44
45 /**
46  * Test the JavaTaskSelectExecutor class.
47  *
48  */
49 public class JavaTaskSelectExecutorTest {
50     /**
51      * Initiate Parameters.
52      */
53     @Before
54     public void initiateParameters() {
55         ParameterService.register(new DistributorParameters());
56         ParameterService.register(new LockManagerParameters());
57         ParameterService.register(new PersistorParameters());
58     }
59
60     /**
61      * Clear Parameters.
62      */
63     @After
64     public void clearParameters() {
65         ParameterService.deregister(ContextParameterConstants.DISTRIBUTOR_GROUP_NAME);
66         ParameterService.deregister(ContextParameterConstants.LOCKING_GROUP_NAME);
67         ParameterService.deregister(ContextParameterConstants.PERSISTENCE_GROUP_NAME);
68     }
69
70     @Test
71     public void testJavaTaskSelectExecutor() {
72         JavaTaskSelectExecutor jtse = new JavaTaskSelectExecutor();
73         assertNotNull(jtse);
74
75         try {
76             jtse.prepare();
77             fail("test should throw an exception here");
78         } catch (Exception jtseException) {
79             assertEquals(java.lang.NullPointerException.class, jtseException.getClass());
80         }
81
82         AxState state = new AxState();
83         ApexInternalContext internalContext = null;
84         try {
85             internalContext = new ApexInternalContext(new AxPolicyModel());
86         } catch (ContextException e) {
87             fail("test should not throw an exception here");
88         }
89         jtse.setContext(null, state, internalContext);
90
91         try {
92             jtse.prepare();
93             fail("test should throw an exception here");
94         } catch (Exception jtseException) {
95             assertEquals("instantiation error on Java class \"\"", jtseException.getMessage());
96         }
97
98         state.getTaskSelectionLogic().setLogic("java.lang.String");
99
100         try {
101             jtse.prepare();
102         } catch (Exception jtseException) {
103             fail("test should not throw an exception here");
104         }
105
106         try {
107             jtse.execute(-1, new Properties(), null);
108             fail("test should throw an exception here");
109         } catch (Exception jtseException) {
110             assertEquals(java.lang.NullPointerException.class, jtseException.getClass());
111         }
112
113         AxEvent axEvent = new AxEvent(new AxArtifactKey("Event", "0.0.1"));
114         EnEvent event = new EnEvent(axEvent);
115         try {
116             jtse.execute(-1, new Properties(), event);
117             fail("test should throw an exception here");
118         } catch (Exception jtseException) {
119             assertEquals("task selection logic failed to run for state  \"NULL:0.0.0:NULL:NULL\"",
120                             jtseException.getMessage());
121         }
122
123         state.getTaskSelectionLogic()
124                         .setLogic("org.onap.policy.apex.plugins.executor.java.DummyJavaTaskSelectionLogic");
125         try {
126             jtse.prepare();
127             jtse.execute(-1, new Properties(), event);
128             fail("test should throw an exception here");
129         } catch (Exception jtseException) {
130             assertEquals("execute-post: task selection logic failed on state \"NULL:0.0.0:NULL:NULL\"",
131                             jtseException.getMessage());
132         }
133
134         try {
135             jtse.prepare();
136             AxArtifactKey taskKey = jtse.execute(0, new Properties(), event);
137             assertEquals("NULL:0.0.0", taskKey.getId());
138             jtse.cleanUp();
139         } catch (Exception jtseException) {
140             fail("test should not throw an exception here");
141         }
142     }
143 }