重複執行用例(pytest-repeat)

前言

日常在作功能測試的時候,常常會遇到某個模塊不穩定,偶然會出現一些bug,對於這種問題咱們會針對此用例反覆執行屢次,最終復現出問題來。
自動化運行用例時候,也會出現偶然的bug,能夠針對單個用例,或者針對某個模塊的用例重複執行屢次。html

pytest-repeat

pytest-repeat是pytest的一個插件,用於重複執行單個用例,或多個測試用例,並指定重複次數,pytest-repeat支持的版本:web

  • Python 2.7, 3.4+ 或 PyPy
  • py.test 2.8或更高

使用pip安裝pytest-repeatsession

pip install pytest-repeat

使用--count命令行選項指定要運行測試用例和測試次數框架

py.test --count=10 test_file.py

重複執行--count

運行如下代碼,項目結構以下測試

web_conf_py是項目工程名稱
│  conftest.py  
│  __init__.py
│              
├─baidu
│  │  conftest.py
│  │  test_1_baidu.py
│  │  test_2.py
│  │  __init__.py 
│          
├─blog
│  │  conftest.py
│  │  test_2_blog.py
│  │  __init__.py  

代碼參考:spa

# web_conf_py/conftest.py
import pytest

@pytest.fixture(scope="session")
def start():
    print("\n打開首頁")
    return "yoyo"

# web_conf_py/baidu/conftest.py
import pytest

@pytest.fixture(scope="session")
def open_baidu():
    print("打開百度頁面_session")

# web_conf_py/baidu/test_1_baidu.py
import pytest
import time

def test_01(start, open_baidu):
    print("測試用例test_01")
    time.sleep(1)
    assert start == "yoyo"

def test_02(start, open_baidu):
    print("測試用例test_02")
    time.sleep(1)
    assert start == "yoyo"

if __name__ == "__main__":
    pytest.main(["-s", "test_1_baidu.py"])


# web_conf_py/baidu/test_2.py
import pytest
import time

def test_06(start, open_baidu):
    print("測試用例test_01")
    time.sleep(1)
    assert start == "yoyo"
def test_07(start, open_baidu):
    print("測試用例test_02")
    time.sleep(1)
    assert start == "yoyo"

if __name__ == "__main__":
    pytest.main(["-s", "test_2.py"])

cmd進入到工程目錄後,不帶--count參數只會執行一次插件

pytest baidu/test_1_baidu.py -s
E:\YOYO\web_conf_py>pytest baidu/test_1_baidu.py -s
============================= test session starts =============================
platform win32 -- Python 3.6.0, pytest-3.6.3, py-1.5.4, pluggy-0.6.0
rootdir: E:\YOYO\web_conf_py, inifile:
plugins: xdist-1.23.2, repeat-0.7.0, metadata-1.7.0, html-1.19.0, forked-0.2
collected 2 items

baidu\test_1_baidu.py
打開首頁
打開百度頁面_session
測試用例test_01
.測試用例test_02
.

========================== 2 passed in 1.03 seconds ===========================

加上參數--count=5,用例會重複執行5次命令行

pytest baidu/test_1_baidu.py -s --count=5
E:\YOYO\web_conf_py>pytest baidu/test_1_baidu.py -s --count=5
============================= test session starts =============================
platform win32 -- Python 3.6.0, pytest-3.6.3, py-1.5.4, pluggy-0.6.0
rootdir: E:\YOYO\web_conf_py, inifile:
plugins: xdist-1.23.2, repeat-0.7.0, metadata-1.7.0, html-1.19.0, forked-0.2
collected 10 items

baidu\test_1_baidu.py
打開首頁
打開百度頁面_session
測試用例test_01
.測試用例test_01
.測試用例test_01
.測試用例test_01
.測試用例test_01
.測試用例test_02
.測試用例test_02
.測試用例test_02
.測試用例test_02
.測試用例test_02
.

========================== 10 passed in 5.06 seconds ==========================

從運行的用例結果看,是先重複5次test_01,再重複5次test_02,有時候咱們但願執行的順序是test_01,test_02按這樣順序重複五次,接下來就用到一個參數--repeat-scopecode

--repeat-scope

--repeat-scope相似於pytest fixture的scope參數,--repeat-scope也能夠設置參數: session , moduleclass或者function(默認值)orm

  • function(默認)範圍針對每一個用例重複執行,再執行下一個用例
  • class 以class爲用例集合單位,重複執行class裏面的用例,再執行下一個
  • module 以模塊爲單位,重複執行模塊裏面的用例,再執行下一個
  • session 重複整個測試會話,即全部收集的測試執行一次,而後全部這些測試再次執行等等

使用--repeat-scope=session重複執行整個會話用例

pytest baidu/test_1_baidu.py -s --count=5 --repeat-scope=session
E:\YOYO\web_conf_py>pytest baidu/test_1_baidu.py -s --count=5 --repeat-scope=session
============================= test session starts =============================
platform win32 -- Python 3.6.0, pytest-3.6.3, py-1.5.4, pluggy-0.6.0
rootdir: E:\YOYO\web_conf_py, inifile:
plugins: xdist-1.23.2, repeat-0.7.0, metadata-1.7.0, html-1.19.0, forked-0.2
collected 10 items

baidu\test_1_baidu.py
打開首頁
打開百度頁面_session
測試用例test_01
.測試用例test_02
.測試用例test_01
.測試用例test_02
.測試用例test_01
.測試用例test_02
.測試用例test_01
.測試用例test_02
.測試用例test_01
.測試用例test_02
.

========================== 10 passed in 5.07 seconds ==========================

@pytest.mark.repeat(count)

若是要在代碼中標記要重複屢次的測試,可使用@pytest.mark.repeat(count)裝飾器

# test_1_baidu.py
import pytest
import time

def test_01(start, open_baidu):
    print("測試用例test_01")
    time.sleep(0.5)
    assert start == "yoyo"

@pytest.mark.repeat(5)
def test_02(start, open_baidu):
    print("測試用例test_02")
    time.sleep(0.5)
    assert start == "yoyo"

if __name__ == "__main__":
    pytest.main(["-s", "test_1_baidu.py"])

這樣執行用例時候,就不用帶上--count參數,只針對test_02重複執行5次

E:\YOYO\web_conf_py>pytest baidu/test_1_baidu.py -s
============================= test session starts =============================
platform win32 -- Python 3.6.0, pytest-3.6.3, py-1.5.4, pluggy-0.6.0
rootdir: E:\YOYO\web_conf_py, inifile:
plugins: xdist-1.23.2, repeat-0.7.0, metadata-1.7.0, html-1.19.0, forked-0.2
collected 6 items

baidu\test_1_baidu.py
打開首頁
打開百度頁面_session
測試用例test_01
.測試用例test_02
.測試用例test_02
.測試用例test_02
.測試用例test_02
.測試用例test_02
.

========================== 6 passed in 3.05 seconds ===========================

重複測試直到失敗

若是您正在嘗試診斷間歇性故障,那麼一遍又一遍地運行相同的測試直到失敗是有用的。您能夠將pytest的-x選項與pytest-repeat結合使用,以強制測試運行器在第一次失敗時中止。例如:

py.test --count=1000 -x test_file.py

這將嘗試運行test_file.py 1000次,但一旦發生故障就會中止

UnitTest樣式測試

不幸的是,此插件不支持unittest框架的用例,pytest-repeat沒法使用unittest.TestCase測試類。不管如何,這些測試將始終運行一次--count,並顯示警告
更多資料參考【官方文檔:https://pypi.org/project/pytest-repeat/】

相關文章
相關標籤/搜索