summaryrefslogtreecommitdiff
path: root/keyword/verify
diff options
context:
space:
mode:
Diffstat (limited to 'keyword/verify')
-rw-r--r--keyword/verify/verify.robot21
1 files changed, 21 insertions, 0 deletions
diff --git a/keyword/verify/verify.robot b/keyword/verify/verify.robot
new file mode 100644
index 0000000..cab11b7
--- /dev/null
+++ b/keyword/verify/verify.robot
@@ -0,0 +1,21 @@
+*** Settings ***
+Resource ../comman/command.robot
+Resource ../../variable/common_variable.txt
+*** Variables ***
+${policyIds} ${EMPTY}
+${objectids} ${EMPTY}
+
+
+*** Keywords ***
+verify
+ [Documentation] delete :policy object category app signature profile ...
+ [Arguments] ${windowsCommand} ${linuxCommand} ${windowsStrList} ${linuxStrList}
+ [Tags] admission basic api adc
+ Comment 功能端验证HTTP验证
+ ${commandstr} run keyword if '${systemType}'=='Windows' set variable ${windowsCommand}
+ ... ELSE set variable ${linuxCommand}
+ ${stringlist} run keyword if '${systemType}'=='Windows' Create List ${windowsStrList}
+ ... ELSE Create List ${linuxStrList}
+ ${rescode} SystemCommands ${commandstr} ${stringlist}
+ [Return] ${rescode}
+ \ No newline at end of file