aboutsummaryrefslogtreecommitdiffstats
path: root/policy-core/src/test/java/org/onap/policy/drools/core/DroolsContainerTest.java
blob: 939de08cbe413fb26b20b160527a19d1672f79bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
/*-
 * ============LICENSE_START=======================================================
 * policy-core
 * ================================================================================
 * Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.drools.core;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertSame;
import static org.junit.Assert.assertTrue;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;

import java.nio.file.Paths;
import java.util.Arrays;
import java.util.Collection;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit;
import org.drools.core.WorkingMemory;
import org.junit.BeforeClass;
import org.junit.Test;
import org.onap.policy.drools.util.KieUtils;

/**
 * These tests focus on the following classes.
 *     PolicyContainer
 *     PolicySession
 *     PolicySessionFeatureAPI
 */
public class DroolsContainerTest {

    private static final long TIMEOUT_SEC = 5;

    /**
     * This test is centered around the creation of a 'PolicyContainer'
     * and 'PolicySession', and the updating of that container to a new
     * version.
     */
    @BeforeClass
    public static void setUp() throws Exception {
        KieUtils.installArtifact(
                Paths.get("src/test/resources/drools-artifact-1.1/src/main/resources/META-INF/kmodule.xml").toFile(),
                Paths.get("src/test/resources/drools-artifact-1.1/pom.xml").toFile(),
                "src/main/resources/rules/org/onap/policy/drools/core/test/",
                Paths.get("src/test/resources/drools-artifact-1.1/src/main/resources/rules.drl").toFile());

        KieUtils.installArtifact(
                Paths.get("src/test/resources/drools-artifact-1.2/src/main/resources/META-INF/kmodule.xml").toFile(),
                Paths.get("src/test/resources/drools-artifact-1.2/pom.xml").toFile(),
                "src/main/resources/rules/org/onap/policy/drools/core/test/",
                Paths.get("src/test/resources/drools-artifact-1.2/src/main/resources/rules.drl").toFile());
    }

    /**
     * This test is centered around the creation of a 'PolicyContainer'
     * and 'PolicySession', and the updating of that container to a new
     * version.
     */
    @Test
    public void createAndUpdate() throws Exception {
        // make sure feature log starts out clean
        PolicySessionFeatureApiMock.getLog();

        // run 'globalInit', and verify expected feature hook fired
        PolicyContainer.globalInit(new String[0]);
        assertEquals(Arrays.asList("globalInit"),
                PolicySessionFeatureApiMock.getLog());

        // initial conditions -- there should be no containers
        assertEquals(0, PolicyContainer.getPolicyContainers().size());

        // create the container, and start it
        PolicyContainer container =
                new PolicyContainer("org.onap.policy.drools-pdp",
                        "drools-artifact1", "17.1.0-SNAPSHOT");
        container.start();
        assertTrue(container.isAlive());

        // verify expected feature hooks fired
        assertEquals(Arrays.asList("activatePolicySession",
                "newPolicySession",
                "selectThreadModel"),
                PolicySessionFeatureApiMock.getLog());

        // this container should be on the list
        {
            Collection<PolicyContainer> containers =
                    PolicyContainer.getPolicyContainers();
            assertEquals(1, containers.size());
            assertTrue(containers.contains(container));
        }

        // verify initial container attributes
        assertEquals("org.onap.policy.drools-pdp:drools-artifact1:17.1.0-SNAPSHOT",
                container.getName());
        assertEquals("org.onap.policy.drools-pdp", container.getGroupId());
        assertEquals("drools-artifact1", container.getArtifactId());
        assertEquals("17.1.0-SNAPSHOT", container.getVersion());

        try {
            // fetch the session, and verify that it exists
            PolicySession session = container.getPolicySession("session1");
            assertNotNull(session);

            // get all sessions, and verify that this one is the only one
            {
                Collection<PolicySession> sessions = container.getPolicySessions();
                assertEquals(1, sessions.size());
                assertTrue(sessions.contains(session));
            }

            // verify session attributes
            assertEquals(container, session.getPolicyContainer());
            assertEquals("session1", session.getName());
            assertEquals("org.onap.policy.drools-pdp:drools-artifact1:17.1.0-SNAPSHOT:session1",
                    session.getFullName());

            // insert a new fact
            LinkedBlockingQueue<Integer> result = new LinkedBlockingQueue<>();
            session.getKieSession().insert(Arrays.asList(3, 8, 2));
            session.getKieSession().insert(result);

            // the Drools rules should add 3 + 8 + 2, and store 13 in a[0]
            assertEquals(13, result.poll(TIMEOUT_SEC, TimeUnit.SECONDS).intValue());

            // update the container to a new version --
            // the rules will then multiply values rather than add them
            assertEquals("[]",
                    container.updateToVersion("17.2.0-SNAPSHOT").toString());

            // verify expected feature hooks fired
            assertEquals(Arrays.asList("selectThreadModel"),
                    PolicySessionFeatureApiMock.getLog());

            // verify new container attributes
            assertEquals("org.onap.policy.drools-pdp:drools-artifact1:17.2.0-SNAPSHOT",
                    container.getName());
            assertEquals("org.onap.policy.drools-pdp", container.getGroupId());
            assertEquals("drools-artifact1", container.getArtifactId());
            assertEquals("17.2.0-SNAPSHOT", container.getVersion());

            // verify new session attributes
            assertEquals(container, session.getPolicyContainer());
            assertEquals("session1", session.getName());
            assertEquals("org.onap.policy.drools-pdp:drools-artifact1:17.2.0-SNAPSHOT:session1",
                    session.getFullName());

            // the updated rules should now multiply 3 * 8 * 2, and return 48

            result = new LinkedBlockingQueue<>();
            container.insert("session1", Arrays.asList(3, 8, 2));
            container.insert("session1", result);

            assertEquals(48, result.poll(TIMEOUT_SEC, TimeUnit.SECONDS).intValue());

            /*
             * verify that default KiePackages have been added by testing that
             * 'DroolsRunnable' is functioning. Also verifies that DroolsExecutor works by
             * using it to inject the runnable, though we have to mock the WorkingMemory
             * object since I don't know how to obtain it from the kieSession
             */

            WorkingMemory wm = mock(WorkingMemory.class);
            when(wm.insert(any())).thenAnswer(ans -> {
                Object object = ans.getArgument(0);
                return container.getPolicySession("session1").getKieSession().insert(object);
            });

            DroolsExecutor executor = new DroolsExecutor(wm);

            final LinkedBlockingQueue<String> lbq = new LinkedBlockingQueue<>();
            executor.execute(() -> lbq.add("DroolsRunnable String"));
            executor.execute(() -> lbq.add("another DroolsRunnable String"));

            assertEquals("DroolsRunnable String", lbq.poll(TIMEOUT_SEC, TimeUnit.SECONDS));
            assertEquals("another DroolsRunnable String", lbq.poll(TIMEOUT_SEC, TimeUnit.SECONDS));

        } finally {
            container.shutdown();
            assertFalse(container.isAlive());

            // verify expected feature hooks fired
            assertEquals(Arrays.asList("disposeKieSession"),
                    PolicySessionFeatureApiMock.getLog());
        }

        // final conditions -- there should be no containers
        assertEquals(0, PolicyContainer.getPolicyContainers().size());
    }

    /**
     * This test create a 'PolicyContainer' and 'PolicySession', and verifies
     * their behavior, but uses alternate interfaces to increase code coverage.
     * In addition, feature hook invocations will trigger exceptions in this
     * test, also to increase code coverage.
     */
    @Test
    public void versionList() throws Exception {
        // make sure feature log starts out clean
        PolicySessionFeatureApiMock.getLog();

        // trigger exceptions in all feature hooks
        PolicySessionFeatureApiMock.setExceptionTrigger(true);

        // run 'globalInit', and verify expected feature hook fired
        PolicyContainer.globalInit(new String[0]);
        assertEquals(Arrays.asList("globalInit-exception"),
                PolicySessionFeatureApiMock.getLog());

        // initial conditions -- there should be no containers
        assertEquals(0, PolicyContainer.getPolicyContainers().size());

        String versionList =
                "17.3.0-SNAPSHOT,17.1.0-SNAPSHOT,17.2.0-SNAPSHOT";

        // versions should be tried in order -- the 17.1.0-SNAPSHOT should "win",
        // given the fact that '17.3.0-SNAPSHOT' doesn't exist
        PolicyContainer container =
                new PolicyContainer("org.onap.policy.drools-pdp",
                        "drools-artifact1", versionList);
        // the following should be equivalent to 'container.start()'
        PolicyContainer.activate();
        assertTrue(container.isAlive());

        // verify expected feature hooks fired
        assertEquals(Arrays.asList("activatePolicySession-exception",
                "newPolicySession-exception",
                "selectThreadModel-exception"),
                PolicySessionFeatureApiMock.getLog());

        // this container should be on the list
        {
            Collection<PolicyContainer> containers =
                    PolicyContainer.getPolicyContainers();
            assertEquals(1, containers.size());
            assertTrue(containers.contains(container));
        }

        // verify initial container attributes
        assertEquals("org.onap.policy.drools-pdp:drools-artifact1:17.1.0-SNAPSHOT",
                container.getName());
        assertEquals("org.onap.policy.drools-pdp", container.getGroupId());
        assertEquals("drools-artifact1", container.getArtifactId());
        assertEquals("17.1.0-SNAPSHOT", container.getVersion());

        // some container adjunct tests
        {
            Object bogusAdjunct = new Object();

            // initially, no adjunct
            assertSame(null, container.getAdjunct(this));

            // set and verify adjunct
            container.setAdjunct(this, bogusAdjunct);
            assertSame(bogusAdjunct, container.getAdjunct(this));

            // clear and verify adjunct
            container.setAdjunct(this, null);
            assertSame(null, container.getAdjunct(this));
        }

        try {
            // fetch the session, and verify that it exists
            PolicySession session = container.getPolicySession("session1");
            assertNotNull(session);

            // get all sessions, and verify that this one is the only one
            {
                Collection<PolicySession> sessions = container.getPolicySessions();
                assertEquals(1, sessions.size());
                assertTrue(sessions.contains(session));
            }

            // verify session attributes
            assertEquals(container, session.getPolicyContainer());
            assertEquals("session1", session.getName());
            assertEquals("org.onap.policy.drools-pdp:drools-artifact1:17.1.0-SNAPSHOT:session1",
                    session.getFullName());

            // some session adjunct tests
            {
                Object bogusAdjunct = new Object();

                // initially, no adjunct
                assertSame(null, session.getAdjunct(this));

                // set and verify adjunct
                session.setAdjunct(this, bogusAdjunct);
                assertSame(bogusAdjunct, session.getAdjunct(this));

                // clear and verify adjunct
                session.setAdjunct(this, null);
                assertSame(null, session.getAdjunct(this));
            }

            // insert a new fact (using 'insertAll')
            LinkedBlockingQueue<Integer> result = new LinkedBlockingQueue<>();
            container.insertAll(Arrays.asList(7, 3, 4));
            container.insertAll(result);

            // the Drools rules should add 7 + 3 + 4, and store 14 in a[0]
            assertEquals(14, result.poll(TIMEOUT_SEC, TimeUnit.SECONDS).intValue());

            // exercise some more API methods
            assertEquals(container.getClassLoader(),
                    container.getKieContainer().getClassLoader());
        } finally {
            // should be equivalent to 'shutdown' without persistence
            container.destroy();
            assertFalse(container.isAlive());

            // verify expected feature hooks fired
            assertEquals(Arrays.asList("destroyKieSession-exception"),
                    PolicySessionFeatureApiMock.getLog());

            // clear exception trigger
            PolicySessionFeatureApiMock.setExceptionTrigger(false);
        }

        // final conditions -- there should be no containers
        assertEquals(0, PolicyContainer.getPolicyContainers().size());
    }
}