2 * ============LICENSE_START=======================================================
\r
3 * Copyright (C) 2019 Nordix Foundation.
\r
4 * ================================================================================
\r
5 * Licensed under the Apache License, Version 2.0 (the "License");
\r
6 * you may not use this file except in compliance with the License.
\r
7 * You may obtain a copy of the License at
\r
9 * http://www.apache.org/licenses/LICENSE-2.0
\r
11 * Unless required by applicable law or agreed to in writing, software
\r
12 * distributed under the License is distributed on an "AS IS" BASIS,
\r
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
\r
14 * See the License for the specific language governing permissions and
\r
15 * limitations under the License.
\r
17 * SPDX-License-Identifier: Apache-2.0
\r
18 * ============LICENSE_END=========================================================
\r
21 package org.onap.policy.apex.plugins.executor.jruby;
\r
23 import static org.junit.Assert.assertEquals;
\r
24 import static org.junit.Assert.assertNotNull;
\r
25 import static org.junit.Assert.fail;
\r
27 import java.lang.reflect.Field;
\r
28 import java.util.HashMap;
\r
29 import java.util.Map;
\r
30 import org.junit.After;
\r
31 import org.junit.Before;
\r
32 import org.junit.Test;
\r
33 import org.onap.policy.apex.context.ContextException;
\r
34 import org.onap.policy.apex.context.parameters.ContextParameterConstants;
\r
35 import org.onap.policy.apex.context.parameters.DistributorParameters;
\r
36 import org.onap.policy.apex.context.parameters.LockManagerParameters;
\r
37 import org.onap.policy.apex.context.parameters.PersistorParameters;
\r
38 import org.onap.policy.apex.core.engine.context.ApexInternalContext;
\r
39 import org.onap.policy.apex.model.policymodel.concepts.AxPolicyModel;
\r
40 import org.onap.policy.apex.model.policymodel.concepts.AxTask;
\r
41 import org.onap.policy.common.parameters.ParameterService;
\r
44 * Test the JrubyTaskExecutor class.
\r
47 public class JrubyTaskExecutorTest {
\r
49 * Initiate Parameters.
\r
52 public void initiateParameters() {
\r
53 ParameterService.register(new DistributorParameters());
\r
54 ParameterService.register(new LockManagerParameters());
\r
55 ParameterService.register(new PersistorParameters());
\r
62 public void clearParameters() {
\r
63 ParameterService.deregister(ContextParameterConstants.DISTRIBUTOR_GROUP_NAME);
\r
64 ParameterService.deregister(ContextParameterConstants.LOCKING_GROUP_NAME);
\r
65 ParameterService.deregister(ContextParameterConstants.PERSISTENCE_GROUP_NAME);
\r
69 public void testJrubyTaskExecutor() {
\r
70 JrubyTaskExecutor jte = new JrubyTaskExecutor();
\r
73 Field fieldContainer = JrubyTaskExecutor.class.getDeclaredField("container");
\r
74 fieldContainer.setAccessible(true);
\r
75 fieldContainer.set(jte, null);
\r
77 fail("test should throw an exception here");
\r
78 } catch (Exception jtseException) {
\r
79 assertEquals(java.lang.NullPointerException.class, jtseException.getClass());
\r
82 AxTask task = new AxTask();
\r
83 ApexInternalContext internalContext = null;
\r
85 internalContext = new ApexInternalContext(new AxPolicyModel());
\r
86 } catch (ContextException e) {
\r
87 fail("test should not throw an exception here");
\r
89 jte.setContext(null, task, internalContext);
\r
92 } catch (Exception jtseException) {
\r
93 fail("test should not throw an exception here");
\r
96 Map<String, Object> incomingParameters = new HashMap<>();
\r
98 jte.execute(-1, null, incomingParameters);
\r
99 fail("test should throw an exception here");
\r
100 } catch (Exception jteException) {
\r
101 assertEquals("execute-post: task logic execution failure on task \"NULL\" in model NULL:0.0.0",
\r
102 jteException.getMessage());
\r
105 final String jrubyLogic =
\r
106 "if executor.executionId == -1" + "\n return false" + "\n else " + "\n return true" + "\n end";
\r
107 task.getTaskLogic().setLogic(jrubyLogic);
\r
111 Map<String, Object> returnMap = jte.execute(0, null, incomingParameters);
\r
112 assertEquals(0, returnMap.size());
\r
114 } catch (Exception jteException) {
\r
115 fail("test should not throw an exception here");
\r