5fa9865c868c1f796c82ec4b925e5e63e9d67fda
[policy/apex-pdp.git] /
1 /*-\r
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
8  *\r
9  *      http://www.apache.org/licenses/LICENSE-2.0\r
10  *\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
16  *\r
17  * SPDX-License-Identifier: Apache-2.0\r
18  * ============LICENSE_END=========================================================\r
19  */\r
20 \r
21 package org.onap.policy.apex.plugins.executor.jruby;\r
22 \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
26 \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
42 \r
43 /**\r
44  * Test the JrubyTaskExecutor class.\r
45  *\r
46  */\r
47 public class JrubyTaskExecutorTest {\r
48     /**\r
49      * Initiate Parameters.\r
50      */\r
51     @Before\r
52     public void initiateParameters() {\r
53         ParameterService.register(new DistributorParameters());\r
54         ParameterService.register(new LockManagerParameters());\r
55         ParameterService.register(new PersistorParameters());\r
56     }\r
57 \r
58     /**\r
59      * Clear Parameters.\r
60      */\r
61     @After\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
66     }\r
67 \r
68     @Test\r
69     public void testJrubyTaskExecutor() {\r
70         JrubyTaskExecutor jte = new JrubyTaskExecutor();\r
71         assertNotNull(jte);\r
72         try {\r
73             Field fieldContainer = JrubyTaskExecutor.class.getDeclaredField("container");\r
74             fieldContainer.setAccessible(true);\r
75             fieldContainer.set(jte, null);\r
76             jte.prepare();\r
77             fail("test should throw an exception here");\r
78         } catch (Exception jtseException) {\r
79             assertEquals(java.lang.NullPointerException.class, jtseException.getClass());\r
80         }\r
81 \r
82         AxTask task = new AxTask();\r
83         ApexInternalContext internalContext = null;\r
84         try {\r
85             internalContext = new ApexInternalContext(new AxPolicyModel());\r
86         } catch (ContextException e) {\r
87             fail("test should not throw an exception here");\r
88         }\r
89         jte.setContext(null, task, internalContext);\r
90         try {\r
91             jte.prepare();\r
92         } catch (Exception jtseException) {\r
93             fail("test should not throw an exception here");\r
94         }\r
95 \r
96         Map<String, Object> incomingParameters = new HashMap<>();\r
97         try {\r
98             jte.execute(-1, 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
103         }\r
104 \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
108 \r
109         try {\r
110             jte.prepare();\r
111             Map<String, Object> returnMap = jte.execute(0, incomingParameters);\r
112             assertEquals(0, returnMap.size());\r
113             jte.cleanUp();\r
114         } catch (Exception jteException) {\r
115             fail("test should not throw an exception here");\r
116         }\r
117     }\r
118 }\r