Python Pytest自動化測試框架 Assert 斷言使用

Time will tell.

1隙袁、使用assert語句進(jìn)行斷言

Pytest 允許使用標(biāo)準(zhǔn)的 Python assert 語法嘱根,用來校驗expectation and value是否一致统扳。

代碼:

def func():
    return 3

def test_func():
    assert func() == 4

結(jié)果:

(wda_python) bash-3.2$ pytest -q test_assert.py 
F                                                                                                                                  [100%]
================================================================ FAILURES ================================================================
_______________________________________________________________ test_func ________________________________________________________________

    def test_func():
>       assert func() == 4
E       assert 3 == 4
E        +  where 3 = func()

test_assert.py:5: AssertionError
1 failed in 0.07 seconds
(wda_python) bash-3.2$ 

支持在assert后面添加描述信息:

def func():
    return 3

def test_func():
    assert func() == 4, 'Value was odd, should be even'

結(jié)果:

(wda_python) bash-3.2$ pytest -q test_assert.py 
F                                                                                                                                  [100%]
================================================================ FAILURES ================================================================
_______________________________________________________________ test_func ________________________________________________________________

    def test_func():
>       assert func() == 4, 'Value was odd, should be even'
E       AssertionError: Value was odd, should be even
E       assert 3 == 4
E        +  where 3 = func()

test_assert.py:5: AssertionError
1 failed in 0.07 seconds
(wda_python) bash-3.2$ 

2口猜、預(yù)期異常的斷言

Pytest 中使用with pytest.raises來斷言預(yù)期異常伴网。

代碼:

import pytest

def func():
    raise SystemExit(1)

def test_func():
    with pytest.raises(SystemExit):
        func()

輸出:

(wda_python) bash-3.2$ pytest -q test_sysexit.py 
.                                                                                                                                      [100%]
1 passed in 0.04 seconds
(wda_python) bash-3.2$ 

還可自定義錯誤的描述:

import pytest

def func():
    raise SystemError("Exception 123 raised")

def test_func():
    with pytest.raises(SystemError, match=r'.* 123 .*'):
        func()

輸出:

(wda_python) bash-3.2$ pytest -q test_assert.py 
.                                                                                                                                  [100%]
1 passed in 0.03 seconds
(wda_python) bash-3.2$ 

如果不匹配就會報錯:

import pytest

def func():
    raise SystemError("Exception 124 raised")

def test_func():
    with pytest.raises(SystemError, match=r'.* 123 .*'):
        func()

輸出:

(wda_python) bash-3.2$ pytest -q test_assert.py 
F                                                                                                                                  [100%]
================================================================ FAILURES ================================================================
_______________________________________________________________ test_func ________________________________________________________________

    def test_func():
        with pytest.raises(SystemError, match=r'.* 123 .*'):
>           func()
E           AssertionError: Pattern '.* 123 .*' not found in 'Exception 124 raised'

test_assert.py:8: AssertionError
1 failed in 0.07 seconds
(wda_python) bash-3.2$ 

斷言上下文內(nèi)容(變量)是否相等,實例代碼:

def test_set_comparison():
    set1 = set('1308')
    set2 = set('8035')
    assert set1 == set2

結(jié)果:

(wda_python) bash-3.2$ pytest -q test_assert.py 
F                                                                                                                                  [100%]
================================================================ FAILURES ================================================================
__________________________________________________________ test_set_comparison ___________________________________________________________

    def test_set_comparison():
        set1 = set('1308')
        set2 = set('8035')
>       assert set1 == set2
E       AssertionError: assert set(['0', '1', '3', '8']) == set(['0', '3', '5', '8'])
E         Extra items in the left set:
E         '1'
E         Extra items in the right set:
E         '5'
E         Full diff:
E         - set(['0', '1', '3', '8'])
E         ?           -----...
E         
E         ...Full output truncated (3 lines hidden), use '-vv' to show

test_assert.py:4: AssertionError
1 failed in 0.10 seconds
(wda_python) bash-3.2$ 

3烫幕、自定義斷言

可通過實現(xiàn)pytest_assertrepr_compare方法俺抽,來自定義assert實現(xiàn)。

比如一個Class Foo较曼,我們比較 f1 和 f2 磷斧。

class Foo(object):
    def __init__(self, val):
        self.val = val

    def __eq__(self, other):
        return self.val == other.val

def test_compare():
    f1 = Foo(1)
    f2 = Foo(1)
    assert f1 == f2

結(jié)果:

(wda_python) bash-3.2$ pytest -q test_foocompare.py 
F                                                                                                                                  [100%]
================================================================ FAILURES ================================================================
______________________________________________________________ test_compare ______________________________________________________________

    def test_compare():
        f1 = Foo(1)
        f2 = Foo(2)
>       assert f1 == f2
E       assert <test_foocompare.Foo object at 0x1029eb7d0> == <test_foocompare.Foo object at 0x1029eb290>

test_foocompare.py:11: AssertionError
1 failed in 0.09 seconds
(wda_python) bash-3.2$ 

錯誤提示不夠友好, 可以通過完成pytest_assertrepr_compare方法自定義:

from test_foocompare import Foo

def pytest_assertrepr_compare(op, left, right):
    if isinstance(left, Foo) and isinstance(right, Foo) and op == "==":
        return ['Comparing Foo instance:', 'vals: %s != %s' % (left.val, right.val)]

結(jié)果如下:

(wda_python) bash-3.2$ pytest
========================================================== test session starts ===========================================================
platform darwin -- Python 2.7.15, pytest-4.1.0, py-1.7.0, pluggy-0.8.0
rootdir: /Users/jackey/Documents/iOS/code/iOS-Auto/Agent_Test, inifile:
collected 1 item                                                                                                                         

test_foocompare.py F                                                                                                               [100%]

================================================================ FAILURES ================================================================
______________________________________________________________ test_compare ______________________________________________________________

    def test_compare():
        f1 = Foo(1)
        f2 = Foo(2)
>       assert f1 == f2
E       assert Comparing Foo instance:
E         vals: 1 != 2

test_foocompare.py:11: AssertionError
======================================================== 1 failed in 0.05 seconds ========================================================
(wda_python) bash-3.2$ 

以上關(guān)于斷言分享就到這里捷犹,希望對看過本章節(jié)的你有所幫助弛饭,如果你喜歡軟件測試這個行業(yè),可以加入我們175317069一起學(xué)習(xí)萍歉,會有行業(yè)深潛多年的測試人技術(shù)分析講解侣颂。

祝愿你能成為一名優(yōu)秀的軟件測試工程師!

歡迎【評論】枪孩、【點贊】憔晒、【關(guān)注】~

Time will tell.(時間會證明一切)

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市销凑,隨后出現(xiàn)的幾起案子丛晌,更是在濱河造成了極大的恐慌,老刑警劉巖斗幼,帶你破解...
    沈念sama閱讀 222,000評論 6 515
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件澎蛛,死亡現(xiàn)場離奇詭異,居然都是意外死亡蜕窿,警方通過查閱死者的電腦和手機(jī)谋逻,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 94,745評論 3 399
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來桐经,“玉大人毁兆,你說我怎么就攤上這事∫跽酰” “怎么了气堕?”我有些...
    開封第一講書人閱讀 168,561評論 0 360
  • 文/不壞的土叔 我叫張陵,是天一觀的道長畔咧。 經(jīng)常有香客問我茎芭,道長,這世上最難降的妖魔是什么誓沸? 我笑而不...
    開封第一講書人閱讀 59,782評論 1 298
  • 正文 為了忘掉前任梅桩,我火速辦了婚禮,結(jié)果婚禮上拜隧,老公的妹妹穿的比我還像新娘宿百。我一直安慰自己趁仙,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 68,798評論 6 397
  • 文/花漫 我一把揭開白布垦页。 她就那樣靜靜地躺著雀费,像睡著了一般。 火紅的嫁衣襯著肌膚如雪外臂。 梳的紋絲不亂的頭發(fā)上坐儿,一...
    開封第一講書人閱讀 52,394評論 1 310
  • 那天,我揣著相機(jī)與錄音宋光,去河邊找鬼。 笑死炭菌,一個胖子當(dāng)著我的面吹牛罪佳,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播黑低,決...
    沈念sama閱讀 40,952評論 3 421
  • 文/蒼蘭香墨 我猛地睜開眼赘艳,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了克握?” 一聲冷哼從身側(cè)響起蕾管,我...
    開封第一講書人閱讀 39,852評論 0 276
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎菩暗,沒想到半個月后掰曾,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 46,409評論 1 318
  • 正文 獨居荒郊野嶺守林人離奇死亡停团,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 38,483評論 3 341
  • 正文 我和宋清朗相戀三年旷坦,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片佑稠。...
    茶點故事閱讀 40,615評論 1 352
  • 序言:一個原本活蹦亂跳的男人離奇死亡秒梅,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出舌胶,到底是詐尸還是另有隱情捆蜀,我是刑警寧澤,帶...
    沈念sama閱讀 36,303評論 5 350
  • 正文 年R本政府宣布幔嫂,位于F島的核電站辆它,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏婉烟。R本人自食惡果不足惜娩井,卻給世界環(huán)境...
    茶點故事閱讀 41,979評論 3 334
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望似袁。 院中可真熱鬧洞辣,春花似錦咐刨、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 32,470評論 0 24
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至著瓶,卻和暖如春联予,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背材原。 一陣腳步聲響...
    開封第一講書人閱讀 33,571評論 1 272
  • 我被黑心中介騙來泰國打工沸久, 沒想到剛下飛機(jī)就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人余蟹。 一個月前我還...
    沈念sama閱讀 49,041評論 3 377
  • 正文 我出身青樓卷胯,卻偏偏與公主長得像,于是被迫代替她去往敵國和親威酒。 傳聞我的和親對象是個殘疾皇子窑睁,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 45,630評論 2 359

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