2020-02-20 pytest框架的一些整理

1.使用pytest.fixture

#定義數(shù)據(jù)妓布,數(shù)據(jù)必須是列表
data = [{"username":"xue1","password":'123'},{"username":"xue2","password":'234'},{"username":"xue3","password":'345'},{"username":"xue4","password":'456'}]

def id(mark_vaule):
    return "username,password".format(mark_vaule)


#fixture標記函數(shù) data 表示需要標記的數(shù)據(jù)列表
@pytest.fixture(params= data,ids=id)
def username(request):
    return request.param

    #username,表示使用哪個fixture標記的函數(shù)
    def test_sign(self,cus_column):
      print(cus_column["password"], cus_column["username"])
      # 可以做網(wǎng)絡(luò)請求
      pass

if __name__ == "__main__":
    # 生成報告目錄文件
    pytest.main(['-s', '-v', 'xxx.py::test_sign'])

2.Pytest裝飾器@pytest.mark.parametrize
代碼1:

import pytest
# 單參數(shù)單值
@pytest.mark.parametrize('user', ['admain123'])
def test(user):
    print(user)

結(jié)果1:

/Users/fuyang/.virtualenvs/rpc_env/bin/python3 /Users/fuyang/PycharmProjects/rpc_env/test_mark_param.py
============================= test session starts ==============================
platform darwin -- Python 3.7.4, pytest-5.0.1, py-1.8.1, pluggy-0.13.1 -- /Users/fuyang/.virtualenvs/rpc_env/bin/python3
cachedir: .pytest_cache
rootdir: /Users/fuyang/PycharmProjects/rpc_env
plugins: allure-pytest-2.7.1
collecting ... collected 1 item

test_mark_param.py::test[admain123] admain123
PASSED

=========================== 1 passed in 0.06 seconds ===========================

Process finished with exit code 0

代碼2:

# 單參數(shù)多值
@pytest.mark.parametrize('user',["18221124104","18200000000","18200000001"])
def test2(user):
    print(user)

結(jié)果2:

/Users/fuyang/.virtualenvs/rpc_env/bin/python3 /Users/fuyang/PycharmProjects/rpc_env/test_mark_param.py
============================= test session starts ==============================
platform darwin -- Python 3.7.4, pytest-5.0.1, py-1.8.1, pluggy-0.13.1 -- /Users/fuyang/.virtualenvs/rpc_env/bin/python3
cachedir: .pytest_cache
rootdir: /Users/fuyang/PycharmProjects/rpc_env
plugins: allure-pytest-2.7.1
collecting ... collected 3 items

test_mark_param.py::test2[18221124104] 18221124104
PASSED
test_mark_param.py::test2[18200000000] 18200000000
PASSED
test_mark_param.py::test2[18200000001] 18200000001
PASSED

=========================== 3 passed in 0.07 seconds ===========================

Process finished with exit code 0

代碼3:

# 多參數(shù)多值
@pytest.mark.parametrize('user, pwd', [("18221124104",111111),("18200000000",111111)])
def test3(user, pwd):
    print(user, pwd)

結(jié)果3:

/Users/fuyang/.virtualenvs/rpc_env/bin/python3 /Users/fuyang/PycharmProjects/rpc_env/test_mark_param.py
============================= test session starts ==============================
platform darwin -- Python 3.7.4, pytest-5.0.1, py-1.8.1, pluggy-0.13.1 -- /Users/fuyang/.virtualenvs/rpc_env/bin/python3
cachedir: .pytest_cache
rootdir: /Users/fuyang/PycharmProjects/rpc_env
plugins: allure-pytest-2.7.1
collecting ... collected 2 items

test_mark_param.py::test3[18221124104-111111] 18221124104 111111
PASSED
test_mark_param.py::test3[18200000000-111111] 18200000000 111111
PASSED

=========================== 2 passed in 0.07 seconds ===========================

Process finished with exit code 0

代碼4:

# 使用內(nèi)置的mark.fail標記為失敗的用例就不運行了
@pytest.mark.parametrize('user, pwd', [("18221124104", 111111), pytest.param("18200000000",111111, marks=pytest.mark.xfail)])
def test4(user, pwd):
    print(user, pwd)
    assert user == "18221124104"
    assert pwd == 111111

結(jié)果4:

/Users/fuyang/.virtualenvs/rpc_env/bin/python3 /Users/fuyang/PycharmProjects/rpc_env/test_mark_param.py
============================= test session starts ==============================
platform darwin -- Python 3.7.4, pytest-5.0.1, py-1.8.1, pluggy-0.13.1 -- /Users/fuyang/.virtualenvs/rpc_env/bin/python3
cachedir: .pytest_cache
rootdir: /Users/fuyang/PycharmProjects/rpc_env
plugins: allure-pytest-2.7.1
collecting ... collected 2 items

test_mark_param.py::test4[18221124104-111111] 18221124104 111111
PASSED
test_mark_param.py::test4[18200000000-111111] 18200000000 111111
XFAIL

===================== 1 passed, 1 xfailed in 0.10 seconds ======================

Process finished with exit code 0

代碼5:

# 若要獲得多個參數(shù)化參數(shù)的所有組合漫萄,可以堆疊裝飾器
@pytest.mark.parametrize("x", [0, 1])
@pytest.mark.parametrize("y", [2, 3])
def test_foo(x, y):
    print("測試組合數(shù)據(jù)x->%s,y->%s:" % (x, y))

結(jié)果5:

/Users/fuyang/.virtualenvs/rpc_env/bin/python3 /Users/fuyang/PycharmProjects/rpc_env/test_mark_param.py
============================= test session starts ==============================
platform darwin -- Python 3.7.4, pytest-5.0.1, py-1.8.1, pluggy-0.13.1 -- /Users/fuyang/.virtualenvs/rpc_env/bin/python3
cachedir: .pytest_cache
rootdir: /Users/fuyang/PycharmProjects/rpc_env
plugins: allure-pytest-2.7.1
collecting ... collected 4 items

test_mark_param.py::test_foo[2-0] 測試組合數(shù)據(jù)x->0,y->2:
PASSED
test_mark_param.py::test_foo[2-1] 測試組合數(shù)據(jù)x->1,y->2:
PASSED
test_mark_param.py::test_foo[3-0] 測試組合數(shù)據(jù)x->0,y->3:
PASSED
test_mark_param.py::test_foo[3-1] 測試組合數(shù)據(jù)x->1,y->3:
PASSED

=========================== 4 passed in 0.06 seconds ===========================

Process finished with exit code 0
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末婴噩,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子空镜,更是在濱河造成了極大的恐慌踪古,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,194評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件亭畜,死亡現(xiàn)場離奇詭異,居然都是意外死亡,警方通過查閱死者的電腦和手機扫尺,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,058評論 2 385
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來炊汤,“玉大人器联,你說我怎么就攤上這事⌒稣福” “怎么了拨拓?”我有些...
    開封第一講書人閱讀 156,780評論 0 346
  • 文/不壞的土叔 我叫張陵,是天一觀的道長氓栈。 經(jīng)常有香客問我渣磷,道長,這世上最難降的妖魔是什么授瘦? 我笑而不...
    開封第一講書人閱讀 56,388評論 1 283
  • 正文 為了忘掉前任醋界,我火速辦了婚禮,結(jié)果婚禮上提完,老公的妹妹穿的比我還像新娘形纺。我一直安慰自己,他們只是感情好徒欣,可當我...
    茶點故事閱讀 65,430評論 5 384
  • 文/花漫 我一把揭開白布逐样。 她就那樣靜靜地躺著,像睡著了一般。 火紅的嫁衣襯著肌膚如雪脂新。 梳的紋絲不亂的頭發(fā)上挪捕,一...
    開封第一講書人閱讀 49,764評論 1 290
  • 那天,我揣著相機與錄音争便,去河邊找鬼级零。 笑死,一個胖子當著我的面吹牛滞乙,可吹牛的內(nèi)容都是我干的奏纪。 我是一名探鬼主播,決...
    沈念sama閱讀 38,907評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼斩启,長吁一口氣:“原來是場噩夢啊……” “哼序调!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起浇垦,我...
    開封第一講書人閱讀 37,679評論 0 266
  • 序言:老撾萬榮一對情侶失蹤炕置,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后男韧,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體朴摊,經(jīng)...
    沈念sama閱讀 44,122評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,459評論 2 325
  • 正文 我和宋清朗相戀三年此虑,在試婚紗的時候發(fā)現(xiàn)自己被綠了甚纲。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,605評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡朦前,死狀恐怖介杆,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情韭寸,我是刑警寧澤春哨,帶...
    沈念sama閱讀 34,270評論 4 329
  • 正文 年R本政府宣布,位于F島的核電站恩伺,受9級特大地震影響赴背,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜晶渠,卻給世界環(huán)境...
    茶點故事閱讀 39,867評論 3 312
  • 文/蒙蒙 一凰荚、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧褒脯,春花似錦便瑟、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,734評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽脊框。三九已至,卻和暖如春养盗,著一層夾襖步出監(jiān)牢的瞬間缚陷,已是汗流浹背适篙。 一陣腳步聲響...
    開封第一講書人閱讀 31,961評論 1 265
  • 我被黑心中介騙來泰國打工往核, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人嚷节。 一個月前我還...
    沈念sama閱讀 46,297評論 2 360
  • 正文 我出身青樓聂儒,卻偏偏與公主長得像,于是被迫代替她去往敵國和親硫痰。 傳聞我的和親對象是個殘疾皇子衩婚,可洞房花燭夜當晚...
    茶點故事閱讀 43,472評論 2 348

推薦閱讀更多精彩內(nèi)容