summaryrefslogtreecommitdiffstats
path: root/test/csit/tests/holmes/testcase/EngineMgt/Engine-Mgt.robot
diff options
context:
space:
mode:
authorGary Wu <gary.i.wu@huawei.com>2018-09-27 10:29:30 -0700
committerGary Wu <gary.i.wu@huawei.com>2018-09-27 12:50:28 -0700
commit2d3d8dcf6ef1bd2a161c69d561c629c5ec3f59c4 (patch)
tree652fd47a183c291e96c6721f550a5f63464f6e66 /test/csit/tests/holmes/testcase/EngineMgt/Engine-Mgt.robot
parente161173e279a73134dda4c2f429605d6c9ee1fe7 (diff)
Move CSIT to integration/csit repo
To facilite branching of CSIT tests, all CSIT test code and scripts are relocated to the integration/csit repo. Change-Id: I6777cd414e43dbf2bfa6215f7e50849e1a6a2e59 Issue-ID: INT-671 Signed-off-by: Gary Wu <gary.i.wu@huawei.com>
Diffstat (limited to 'test/csit/tests/holmes/testcase/EngineMgt/Engine-Mgt.robot')
-rw-r--r--test/csit/tests/holmes/testcase/EngineMgt/Engine-Mgt.robot41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/csit/tests/holmes/testcase/EngineMgt/Engine-Mgt.robot b/test/csit/tests/holmes/testcase/EngineMgt/Engine-Mgt.robot
deleted file mode 100644
index 5a8e81146..000000000
--- a/test/csit/tests/holmes/testcase/EngineMgt/Engine-Mgt.robot
+++ /dev/null
@@ -1,41 +0,0 @@
-*** Settings ***
-Suite Setup
-Suite Teardown Delete All Sessions
-Test Teardown
-Test Timeout
-Library demjson
-Resource Engine-Keywords.robot
-Resource ../RuleMgt/Rule-Keywords.robot
-
-*** Test Cases ***
-verify_invalid_rule
- [Documentation] Verify a rule with invalid contents.
- ${dic1} create dictionary content=123123123
- ${Jsonparam} encode ${dic1}
- verifyEngineRule ${Jsonparam} -1
-
-verify_valid_rule
- [Documentation] Verify a rule with valid contents.
- ${dic2} create dictionary content=package rule03080001
- ${Jsonparam} encode ${dic2}
- verifyEngineRule ${Jsonparam}
-
-deploy_invalid_rule
- [Documentation] Add a rule with invalid contents to the engine.
- ${dic3} create dictionary content=789789789 engineId=""
- ${Jsonparam} encode ${dic3}
- ${response} deployEngineRule ${Jsonparam} -1
-
-deploy_valid_rule
- [Documentation] Add a rule with valid contents to the engine.
- ${dic4} create dictionary content=package rule03080002;\n\nimport java.util.Locale; engineId="" loopControlName=test
- ${Jsonparam} encode ${dic4}
- ${response} deployEngineRule ${Jsonparam}
-
-delete_existing_rule
- [Documentation] Delete an existing rule using an existing package ID from the engine.
- deleteEngineRule rule03080002
-
-delete_non_existing_rule
- [Documentation] Delete an existing rule using a non-existing package ID from the engine.
- deleteEngineRule rule03080002 -1