0六、conftest介紹

fixture(固件)能夠直接定義在各測試腳本中,就像上面的例子 更多時候,咱們但願一個固件能夠在更大的程度上覆用,這就須要對固件進行集中管理.Pytest使用文件conftest.py集中管理固件.在複雜的項目中,能夠在不一樣的目錄層級定義conftest.py,其做用域爲其所在的目錄和子目錄 注意: 不要顯示的調用conftest.py,pytest會自動調用,能夠把conftest當作插件來理解.html

例:

setup和teardown能夠實如今測試用例以前或以後加入一些操做,但這種是整個腳本全局生效的,若是我想實現如下場景: 用例1須要先登陸,用例2不須要登陸,用例3須要先登陸。很顯然這就沒法用setup和teardown來實現了python

fixture優點

firture相對於setup和teardown來講應該有如下幾點優點session

  • 命名方式靈活,不侷限於setup和teardown這幾個命名
  • conftest.py 配置裏能夠實現數據共享,不須要import就能自動找到一些配置
  • scope="module" 能夠實現多個.py跨文件共享前置, 每個.py文件調用一次
  • scope="session" 以實現多個.py跨文件使用一個session來完成多個用例
etc
├── __pycache__
├── conftest.py
├── test_data.py

conftest.py測試

import pytest


@pytest.fixture()
def login():
    print("輸入帳號,密碼先登陸")


@pytest.fixture()
def write_data():
    print("寫入數據..")

test_data插件

def test_s1(login, write_data):
    print("用例1:登陸以後其它動做111")


def test_s2():  # 不傳login
    print("用例2:不須要登陸,操做222")


def test_s3(login, write_data):
    print("用例3:登陸以後其它動做333")

運行結果:code

╰ pytest -v -s test_data.py
========================== test session starts ==========================
platform darwin -- Python 3.7.4, pytest-4.4.0, py-1.8.0, pluggy-0.13.0 -- /Users/zhouwanghua/Code/Leyan/python/robocop/bin/python
cachedir: .pytest_cache
metadata: {'Python': '3.7.4', 'Platform': 'Darwin-18.6.0-x86_64-i386-64bit', 'Packages': {'pytest': '4.4.0', 'py': '1.8.0', 'pluggy': '0.13.0'}, 'Plugins': {'bdd': '3.1.0', 'html': '1.20.0', 'metadata': '1.8.0'}}
rootdir: /Users/zhouwanghua/Code/Leyan/robocop, inifile: pytest.ini
plugins: bdd-3.1.0, html-1.20.0, metadata-1.8.0
collected 3 items                                                                                                                  

test_data.py::test_s1 輸入帳號,密碼先登陸
寫入數據..
用例1:登陸以後其它動做111
PASSED
test_data.py::test_s2 用例2:不須要登陸,操做222
PASSED
test_data.py::test_s3 輸入帳號,密碼先登陸
寫入數據..
用例3:登陸以後其它動做333
PASSED

========================== 3 passed in 0.03 seconds ==========================
相關文章
相關標籤/搜索