2 .. This work is licensed under a Creative Commons Attribution 4.0 International License.
3 .. http://creativecommons.org/licenses/by/4.0
5 *************************
6 Feature: Test Transaction
7 *************************
15 The Test Transaction feature provides a mechanism by which the health of drools policy controllers can be tested.
17 When enabled, the feature functions by injecting an event object (identified by a UUID) into the drools session of each policy controller that is active in the system. Only an object with this UUID can trigger the Test Transaction-specific drools logic to execute.
19 The injection of the event triggers the "TT" rule (see *TestTransactionTemplate.drl* below) to fire. The "TT" rule simply increments a ForwardProgress counter object, thereby confirming that the drools session for this particular controller is active and firing its rules accordingly. This cycle repeats at 20 second intervals.
21 If it is ever the case that a drools controller does not have the "TT" rule present in its *.drl*, or that the forward progress counter is not incremented, the Test Transaction thread for that particular drools session (i.e. controller) is terminated and a message is logged to *error.log*.
26 Prior to being enabled, the following drools rules need to be appended to the rules templates of any use-case that is to be monitored by the feature.
29 :caption: TestTransactionTemplate.drl
33 * ============LICENSE_START=======================================================
34 * feature-test-transaction
35 * ================================================================================
36 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
37 * ================================================================================
38 * Licensed under the Apache License, Version 2.0 (the "License");
39 * you may not use this file except in compliance with the License.
40 * You may obtain a copy of the License at
42 * http://www.apache.org/licenses/LICENSE-2.0
44 * Unless required by applicable law or agreed to in writing, software
45 * distributed under the License is distributed on an "AS IS" BASIS,
46 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
47 * See the License for the specific language governing permissions and
48 * limitations under the License.
49 * ============LICENSE_END=========================================================
52 package org.onap.policy.drools.rules;
54 import java.util.EventObject;
56 declare ForwardProgress
63 ForwardProgress fp = new ForwardProgress();
70 $fp : ForwardProgress()
71 $tt : EventObject(source == "43868e59-d1f3-43c2-bd6f-86f89a61eea5")
73 $fp.setCounter($fp.getCounter() + 1);
77 ForwardProgress(counter >= 0, $ttc : counter)
80 Once the proper artifacts are built and deployed with the addition of the TestTransactionTemplate rules, the feature can then be enabled by entering the following commands:
83 :caption: PDPD Features Command
85 policy@hyperion-4:/opt/app/policy$ policy stop
86 [drools-pdp-controllers]
87 L []: Stopping Policy Management... Policy Management (pid=354) is stopping... Policy Management has stopped.
88 policy@hyperion-4:/opt/app/policy$ features enable test-transaction
91 controlloop-utils 1.1.0-SNAPSHOT disabled
92 healthcheck 1.1.0-SNAPSHOT disabled
93 test-transaction 1.1.0-SNAPSHOT enabled
94 eelf 1.1.0-SNAPSHOT disabled
95 state-management 1.1.0-SNAPSHOT disabled
96 active-standby-management 1.1.0-SNAPSHOT disabled
97 session-persistence 1.1.0-SNAPSHOT disabled
99 The output of the enable command will indicate whether or not the feature was enabled successfully.
101 Policy engine can then be started as usual.
106 .. SSNote: Wiki page ref. https://wiki.onap.org/display/DW/Feature+Test+Transaction