summaryrefslogtreecommitdiffstats
path: root/testsuites/integration/integration-uservice-test/src/test/resources/policies
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/integration/integration-uservice-test/src/test/resources/policies')
-rw-r--r--testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/SetControlLoopNameForTest.js37
-rw-r--r--testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/SetServiceIdForTest.js36
-rw-r--r--testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/TaskParametersTestPolicyModel.apex65
3 files changed, 138 insertions, 0 deletions
diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/SetControlLoopNameForTest.js b/testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/SetControlLoopNameForTest.js
new file mode 100644
index 000000000..a4ab0360f
--- /dev/null
+++ b/testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/SetControlLoopNameForTest.js
@@ -0,0 +1,37 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2020 Nordix Foundation.
+ * ================================================================================
+ * 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+executor.logger.info(executor.outFields);
+executor.logger.info(executor.parameters);
+
+executor.logger.info("executionProperties in: {}", executor.getExecutionProperties());
+
+executor.getExecutionProperties().setProperty("tagId", "doActionForCL");
+var closedLoopId = executor.parameters.get("closedLoopId")
+if (null == closedLoopId) {
+ closedLoopId = "INVALID - closedLoopId not available in TaskParameters"
+}
+executor.getExecutionProperties().setProperty("value", closedLoopId);
+
+executor.logger.info("executionProperties out: {}", executor.getExecutionProperties());
+
+var returnValue = executor.isTrue; \ No newline at end of file
diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/SetServiceIdForTest.js b/testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/SetServiceIdForTest.js
new file mode 100644
index 000000000..6d56616d8
--- /dev/null
+++ b/testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/SetServiceIdForTest.js
@@ -0,0 +1,36 @@
+/*
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2020 Nordix Foundation.
+ * ================================================================================
+ * 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+executor.logger.info(executor.subject.id);
+executor.logger.info(executor.inFields);
+executor.logger.info(executor.outFields);
+executor.logger.info(executor.parameters);
+
+executor.logger.info("executionProperties in: {}", executor.getExecutionProperties());
+
+executor.getExecutionProperties().setProperty("tagId", "getInfoForServiceId");
+var svcId = executor.parameters.get("serviceId")
+if (null == svcId) {
+ svcId = "INVALID - serviceId not available in TaskParameters"
+}
+executor.getExecutionProperties().setProperty("value", svcId);
+
+executor.logger.info("executionProperties out: {}", executor.getExecutionProperties());
+var returnValue = executor.isTrue; \ No newline at end of file
diff --git a/testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/TaskParametersTestPolicyModel.apex b/testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/TaskParametersTestPolicyModel.apex
new file mode 100644
index 000000000..551a46bfd
--- /dev/null
+++ b/testsuites/integration/integration-uservice-test/src/test/resources/policies/taskparameters/TaskParametersTestPolicyModel.apex
@@ -0,0 +1,65 @@
+#-------------------------------------------------------------------------------
+# ============LICENSE_START=======================================================
+# Copyright (C) 2020 Nordix Foundation.
+# ================================================================================
+# 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.
+#
+# SPDX-License-Identifier: Apache-2.0
+# ============LICENSE_END=========================================================
+#-------------------------------------------------------------------------------
+
+model create name=TaskParametersTestPolicyModel
+
+schema create name=SimpleStringType flavour=Java schema=java.lang.String
+
+event create name=CLTriggerEvent nameSpace=org.onap.policy.apex.domains.test source=Junit target=APEX
+event parameter create name=CLTriggerEvent parName=event schemaName=SimpleStringType
+
+event create name=ServiceInfoEvent nameSpace=org.onap.policy.apex.domains.test source=Decide target=OutSide
+event parameter create name=ServiceInfoEvent parName=serviceDetails schemaName=SimpleStringType
+
+event create name=CLOutputEvent nameSpace=org.onap.policy.apex.domains.test source=Decide target=OutSide
+event parameter create name=CLOutputEvent parName=status schemaName=SimpleStringType
+
+task create name=SetServiceIdForTest version=1.0.0
+
+task inputfield create name=SetServiceIdForTest fieldName=event schemaName=SimpleStringType
+task outputfield create name=SetServiceIdForTest fieldName=serviceDetails schemaName=SimpleStringType
+
+task logic create name=SetServiceIdForTest logicFlavour=JAVASCRIPT logic=LS
+#MACROFILE:"src/test/resources/policies/taskparameters/SetServiceIdForTest.js"
+LE
+
+task create name=SetControlLoopNameForTest version=1.0.0
+
+task inputfield create name=SetControlLoopNameForTest fieldName=serviceDetails schemaName=SimpleStringType
+task outputfield create name=SetControlLoopNameForTest fieldName=status schemaName=SimpleStringType
+
+task logic create name=SetControlLoopNameForTest logicFlavour=JAVASCRIPT logic=LS
+#MACROFILE:"src/test/resources/policies/taskparameters/SetControlLoopNameForTest.js"
+LE
+
+
+policy create name=Policy1 template=freestyle firstState=Junit
+
+policy state create name=Policy1 stateName=Junit triggerName=CLTriggerEvent defaultTaskName=SetServiceIdForTest
+policy state output create name=Policy1 stateName=Junit outputName=ServiceInfo eventName=ServiceInfoEvent nextState=NULL
+policy state taskref create name=Policy1 stateName=Junit taskLocalName=SetServiceInfo taskName=SetServiceIdForTest outputType=DIRECT outputName=ServiceInfo
+
+policy create name=Policy2 template=freestyle firstState=Decide
+
+policy state create name=Policy2 stateName=Decide triggerName=ServiceInfoEvent defaultTaskName=SetControlLoopNameForTest
+policy state output create name=Policy2 stateName=Decide outputName=CLOut eventName=CLOutputEvent nextState=NULL
+policy state taskref create name=Policy2 stateName=Decide taskLocalName=SetControlLoopName taskName=SetControlLoopNameForTest outputType=DIRECT outputName=CLOut
+validate
+