首頁 > 軟體

自動化測試Pytest單元測試框架的基本介紹

2021-08-25 19:01:06

一、Pytest概念

Pytest 是 Python 的一種單元測試框架,與 Python 自帶的 unittest 測試框架類似,但是比 unittest 框架使用起來更簡潔,效率更高。

二、Pytest特點

Pytest是一個非常成熟的Python測試框架,主要特點有以下幾點:

  • 非常容易上手,入門簡單,檔案豐富,檔案中有很多範例可以參考;
  • 能夠支援簡單的單元測試和複雜的功能測試;
  • 支援引數化;
  • 執行測試過程中可以將某些測試用例跳過(skip),或者對某些預期失敗的case標記成失敗;
  • 支援重複執行(rerun)失敗的 case;
  • 支援執行由 nose, unittest 編寫的測試 case;
  • 可生成html 報告;
  • 方便jenkins持續整合;
  • 可支援執行部分用例;
  • 具有很多第三方外掛,並且可以自定義擴充套件。

三、Pytest安裝

安裝pytest命令:

pip install pytest

檢視pytest版本:

pytest --version

安裝生成測試結果的HTML報告pytest-html

pip install pytest-html

這裡已經安裝過,所以輸出資訊和第一次安裝不一樣。

四、Pycharm設定Pytest

pycharm依次選擇

File->Settings->Tools->Python Integrated Tools

設定用例指令碼執行模式。

選單欄

點選Edit Configurations。

依次點選"+" --》 Python tests --》pytest

設定專案路徑

如下:

五、Pytest用例執行規則

用Pytest寫用例時候,一定要按照下面的規則去寫,否則不符合規則的測試用例是不會執行的。

檔名以 test_*.py 檔案或*_test.py;

以 test_ 開頭的函數;

以 Test 開頭的類,不能包含 __init__ 方法;

以 test_ 開頭的類裡面的方法;

所有的包(package)必項要有__init__.py 檔案。

六、 Pytest簡單使用

環境都準備好了,嘗試下使用pytest執行用例。

新建py檔案

寫兩條測試用例

import pytest
def test_demo1():
    assert 3 == 3
def test_demo2():
    assert 3 == 5
if __name__ == '__main__':
    pytest.main()

執行之後,結果如下:

Testing started at 12:37 ...
C:Users96984Desktopcodelearn_pytestvenvScriptspython.exe "C:ruanjianpycharm2019.3PyCharm 2019.3.1pluginspythonhelperspycharm_jb_pytest_runner.py" --path C:/Users/96984/Desktop/code/learn_pytest/demo/demo_pytest.py
Launching pytest with arguments C:/Users/96984/Desktop/code/learn_pytest/demo/demo_pytest.py in C:Users96984Desktopcodelearn_pytestdemo
============================= test session starts =============================
platform win32 -- Python 3.6.8, pytest-5.4.3, py-1.9.0, pluggy-0.13.1 -- C:Users96984Desktopcodelearn_pytestvenvScriptspython.exe
cachedir: .pytest_cache
metadata: {'Python': '3.6.8', 'Platform': 'Windows-10-10.0.18362-SP0', 'Packages': {'pytest': '5.4.3', 'py': '1.9.0', 'pluggy': '0.13.1'}, 'Plugins': {'html': '2.1.1', 'metadata': '1.10.0'}, 'JAVA_HOME': 'C:\Program Files\Java\jdk1.8.0_77'}
rootdir: C:Users96984Desktopcodelearn_pytestdemo
plugins: html-2.1.1, metadata-1.10.0
collecting ... collected 2 items
demo_pytest.py::test_demo1 PASSED                                        [ 50%]
demo_pytest.py::test_demo2 FAILED                                        [100%]
demo_pytest.py:8 (test_demo2)
def test_demo2():
>       assert 3 == 5
E       AssertionError
demo_pytest.py:10: AssertionError
================================== FAILURES ===================================
_________________________________ test_demo2 __________________________________
    def test_demo2():
>       assert 3 == 5
E       AssertionError
demo_pytest.py:10: AssertionError
=========================== short test summary info ===========================
FAILED demo_pytest.py::test_demo2 - AssertionError
========================= 1 failed, 1 passed in 0.05s =========================
Process finished with exit code 0

IT145.com E-mail:sddin#qq.com