aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/tests/holmes/testcase/EngineMgt/Engine-Keywords.robot
diff options
context:
space:
mode:
Diffstat (limited to 'test/csit/tests/holmes/testcase/EngineMgt/Engine-Keywords.robot')
-rw-r--r--test/csit/tests/holmes/testcase/EngineMgt/Engine-Keywords.robot34
1 files changed, 0 insertions, 34 deletions
diff --git a/test/csit/tests/holmes/testcase/EngineMgt/Engine-Keywords.robot b/test/csit/tests/holmes/testcase/EngineMgt/Engine-Keywords.robot
deleted file mode 100644
index aac867678..000000000
--- a/test/csit/tests/holmes/testcase/EngineMgt/Engine-Keywords.robot
+++ /dev/null
@@ -1,34 +0,0 @@
-*** Settings ***
-Library Collections
-Library RequestsLibrary
-Resource ../CommonKeywords/HttpRequest.robot
-Resource EngineAddr.robot
-
-*** Keywords ***
-deleteEngineRule
- [Arguments] ${packageName} ${codeFlag}=1
- [Documentation] ${packageName} :The data type is string!
- ${headers} create dictionary Content-Type=application/json
- create session microservices ${engineHost} ${headers}
- ${deleteUrl} set variable ${engineUrl}/${packageName}
- ${deleteResponse} delete request microservices ${deleteUrl}
- log ${deleteResponse.content}
- run keyword if ${codeFlag}==1 Should be equal as strings ${deleteResponse.status_code} 200
- run keyword if ${codeFlag}!=1 Should be equal as strings ${deleteResponse.status_code} 499
- [Return] ${deleteResponse}
-
-verifyEngineRule
- [Arguments] ${checkContent} ${codeFlag}=1
- ${response} httpPost ${engineHost} ${engineUrl} ${checkContent}
- log ${response.content}
- run keyword if ${codeFlag}==1 Should be equal as strings ${response.status_code} 200
- run keyword if ${codeFlag}!=1 Should be equal as strings ${response.status_code} 499
- [Return] ${response}
-
-deployEngineRule
- [Arguments] ${jsonParams} ${codeFlag}=1
- ${response} httpPut ${engineHost} ${engineUrl} ${jsonParams}
- log ${response.content}
- run keyword if ${codeFlag}==1 Should be equal as strings ${response.status_code} 200
- run keyword if ${codeFlag}!=1 Should be equal as strings ${response.status_code} 499
- [Return] ${response}