溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

robot接口自動化用例編寫

發(fā)布時間:2020-07-29 12:25:11 來源:網(wǎng)絡 閱讀:2604 作者:襖淋披殼_sh 欄目:軟件技術

如何手寫robot自動化用例,網(wǎng)上雖然有一大堆教程,但都是關于ride的,對于如何從腳本角度來寫,一直零零散散,語焉不詳,本文以互聯(lián)網(wǎng)最常見的API接口自動化為例,給出方向性指引,文字不多,足夠你理解,想要深入,請依循文中的文字,再去百度,慢慢體會,逐步精深。

用例編寫前提:已經(jīng)部署好了robot/python環(huán)境

第一個http接口

*** Settings ***
Library  Collections
Library  Process
Library  RequestsLibrary

*** Variables ***
${DOMAIN}       http://10.xx.xx.xx:8091
${URI}          /test/backend/xxxxlogin
${HEADER}      {"Content-Type":"application/json"}
${USER}        {"accountType":"1", "phonenumStr":"iamusername", "password":"iampassword"}
${LIST_ANIMALS}    ["cat", "dog"]

*** Test Cases ***
my first http test case
    create session  myhttp          ${DOMAIN}
    ${uri}          set variable    ${URI}
    # headers一定要轉成 json,不然data傳不過去   
    ${header}       to json         ${HEADER}
    ${postdata}     to json         ${DATA}
    ${resp}         post request    myhttp    uri=${uri}      data=${postdata}       headers=${header}

    # 校驗 http的狀態(tài) 
    should be equal as integers  200    ${resp.status_code}
    # 打印 調測信息
    #log     ${resp.content}
    #log     ${json}
    #log     ${json[0]}
    #log     ${json[1]["id"]}

    ${json}   to json     ${resp.content}
    # 校驗返回數(shù)據(jù)的關鍵值
    should be equal as strings   2.0   ${json[1]["jsonrpc"]}

多步操作

所有的返回值都是字符串類型,轉成json后就可以像字典型一樣隨意取用了

    ${json}   to json     ${resp.content}

把取到值當成下一次調用的入?yún)?/p>

建議每個testcase只測試一個功能,接口測試階段,不要構造過于復雜的場景(用例代碼超過一屏將被視為復雜,需要拆分)

結果校驗

請求http獲得的返回都是字符串類型,解析成json才可以自由取用值
提供多種校驗函數(shù)如下:

should be equal as integers    
should be equal as numbers  
should be equal as strings
should be true
should be empty
should contain  
should contain any
# not 也支持 
should not be equal as integers    
should not be equal as numbers  
should not be equal as strings
should not be true
should not be empty
should not contain  
should not contain any

數(shù)據(jù)驅動

robot宣稱支持數(shù)據(jù)驅動,支持按照template從表格讀數(shù)據(jù)來跑用例,但是問題是,如果要對數(shù)據(jù)表格里的case做揀選和拆分就會無力了,所以,數(shù)據(jù)驅動適合比較大規(guī)模的協(xié)議測試,而對于有細力度的統(tǒng)計case的需求是不好用的,我們的建議是用測試數(shù)據(jù)分散在testcase里,保持case的獨立性和靈活性,如果確實有大量的手工操作的話,提供小工具自動創(chuàng)建testcase。

數(shù)據(jù)驅動即為定義好流程(Template),然后就可以按照參數(shù)羅列形成用例了,每一條數(shù)據(jù)都會獨立執(zhí)行

*** Test Cases ***
Invalid Username
    [Tags]    Iteration-3    Smoke
    [Template]  Login with invalid credentials should fail
    invalidname      qwe123
    091931          invalidpassword

*** Test Cases ***
Login Success
    [Tags]    Iteration-3    Smoke  core
    [Template]  Login success
    068970          qwe123
    052255          qwe123

前置條件(可選)

一個用例文件中包含很多testcase,我想統(tǒng)一加些動作該怎么辦?框架提供兩個方法,如果是前置條件(每個用例開始前執(zhí)行)就用Set up,在setting里編寫你的動作即可,如果動作很復雜,可以做成關鍵字調用即可,就像下面一樣:


    *** Settings ***
    Test Setup      Get config

    *** Keywords ***
    Get config
            log     正在初始化...
            set suite variable  ${config}       {"env":"uat", "user":"haha"}

清理動作(可選)

如果是后置條件(每個testcase結束后調用),就用Tear down,樣例如下:


*** Settings ***
Test Teardown   Do clean

*** Keywords ***
Do clean
    log     正在清理...

關鍵字驅動

框架提供自定義的關鍵字方案,只需要在Keywords下面書寫你的邏輯動作即可,關鍵字可以是英文,也可以是中文,頂格寫,不限制空格和特殊字符,你可以像書寫自然語言一樣寫用例代碼啦

*** Keywords ***
My first keywords
    log     hello keywords

我的第一個關鍵字
    log     你好, 我的關鍵字
向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內容。

AI