39 lines
1.9 KiB
Plaintext
39 lines
1.9 KiB
Plaintext
*** Settings ***
|
|
Test Teardown TeardownDelete ${url} profileIds ${profileId}
|
|
Force Tags tsg_bf_api Response_Pages
|
|
Library String
|
|
Library OperatingSystem
|
|
Library Selenium2Library
|
|
Library Collections
|
|
Resource ../../../02-Keyword/tsg_bfapi/Common.robot
|
|
Resource ../../../02-Keyword/tsg_bfapi/policy_file_interface/FunctionalKeywords.robot
|
|
Resource ../../../03-Variable/BifangApiVariable.txt
|
|
Resource ../../../02-Keyword/tsg_adc/SystemCommand.robot
|
|
Resource ../../../02-Keyword/tsg_bfapi/PolicyObject.robot
|
|
Resource ../../../02-Keyword/tsg_bfapi/LogVariable.robot
|
|
Resource ../../../02-Keyword/tsg_bfapi/ApiRequest.robot
|
|
Resource ../../../03-Variable/AllFlowCaseVariable.txt
|
|
Resource ../../../03-Variable/Policy_Objects_Module.txt
|
|
Library Custometest
|
|
|
|
*** Variables ***
|
|
${url} /policy/profile/responsepages
|
|
${profileId} ${EMPTY}
|
|
|
|
*** Test Cases ***
|
|
Response_page_html-00001
|
|
#Hijack 需要修改的内容
|
|
${objectedit} Create Dictionary profileName=zmminserttest format=html
|
|
Comment 打印需要修改的json内容
|
|
log ${objectedit}
|
|
${objectDict} Jsoneditmanu ${setting_proxy_profiles_reponse_page} ${objectedit}
|
|
log ${objectDict}
|
|
${response} CreatePolicyFile4 ${url} response_pages_files/ Create-Response Pages-test.html ${objectDict}
|
|
# 查询
|
|
${profileId} Get From Dictionary ${response} profileId
|
|
${profileName} Get From Dictionary ${response} profileName
|
|
QueryPolicyFile ${url} profileId=${profileId}&profileName=${profileName}
|
|
# 修改
|
|
${header_edit} Set Variable {"isValid":1,"format":"html","opAction":"update","profileName":"test_edit","profileId":"${profileId}","returnData":1}
|
|
UpdatePolicyFile ${url} response_pages_files/ Create-Response Pages-test.html ${header_edit}
|