亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

pytest文檔內置fixture的request怎么用

發布時間:2022-08-09 09:27:03 來源:億速云 閱讀:182 作者:iii 欄目:開發技術

今天小編給大家分享一下pytest文檔內置fixture的request怎么用的相關知識點,內容詳細,邏輯清晰,相信大部分人都還太了解這方面的知識,所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來了解一下吧。

前言

request 是 pytest 的內置 fixture , "為請求對象提供對請求測試上下文的訪問權,并且在fixture被間接參數化的情況下具有可選的“param”屬性。"這是官方文檔對request的描述,可參考的文檔不多。

一、FixtureRequest

FixtureRequest 是來自 fixture 或者 測試用例的請求,它有訪問測試上下文的權限, FixtureRequest_pytest.fixtures pytest documentation。

class FixtureRequest:請求對象提供對請求的測試上下文的訪問,并且具有可選的 param 屬性,以防設備被間接參數化。
fixturename:正在為其執行此請求的 fixture 名稱。
scope:作用域字符串,“function”、“class”、“module”、“session”之一。
fixturenames:此請求中所有活動狀態的 fixture 的名稱。
node:基礎集合節點(取決于當前請求范圍)。
config:與此請求關聯的 pytest 配置對象。
function:如果請求具有每個函數范圍,則測試函數對象。
cls:類(可以是None),其中收集了測試函數。
instance:在其上收集測試函數的實例(可以是None)。
module:收集測試函數的Python模塊對象。
fspath:收集此測試的測試模塊的文件系統路徑。
keywords:基礎節點的關鍵字/標記詞典。
session:Pytest會話對象。
addfinalizer(finalizer: 添加finalizer/teardown函數,以便在請求的測試上下文中的最后一個測試完成執行后調用。
applymarker(marker):對單個測試函數調用應用標記。

如果不希望在所有函數調用上都有關鍵字/標記,則此方法非常有用。 

參數:

  • marker -- A _pytest.mark.MarkDecorator 調用創建的對象 pytest.mark.NAME(...) .

  • raiseerror(msg: Optional[str]) :使用給定的消息引發FixtureLookupError。

  • getfixturevalue(argname: str) 動態運行命名的fixture函數。

如果可能,建議通過函數參數聲明fixtures。但是,如果您只能在測試設置時決定是否使用另一個fixture,那么您可以使用此函數在fixture或測試函數體中檢索它。
引發:pytest.FixtureLookupError -- 如果找不到給定的固定裝置。
折疊 

二、request.param

前面講fixture參數化的時候,有接觸到 "request.param" 用于獲取測試的請求參數,以下示例

import pytest
# 測試數據
test_data = ["user1", "user2"]

@pytest.fixture(params=test_data)
def register_users(request):
     # 獲取當前的測試數據
     user = request.param
     print("\n拿著這個賬號去注冊:%s"%user)
     result = "success"
     return user, result
def test_register(register_users):
    user, result = register_users
    print("在測試用例里面里面獲取到當前測試數據:%s"%user)
    print(result)
    assert result == "success"

此案例里面我們可以在fixture參數化的時候,通過request.param獲取到測試的請求參數,但是在用例里面用 request.param 卻不能獲取到測試的請求參數

def test_register_x(register_users, request):
    print(request.param)

這樣運行,會拋異常:'FixtureRequest' object has no attribute 'param'

#拿著這個賬號去注冊:user1
F
register_users = ('user1', 'success')
request = <FixtureRequest for <Function test_register_x[user1]>>
 
    def test_register_x(register_users, request):
>       print(request.param)
E       AttributeError: 'FixtureRequest' object has no attribute 'param'
 
D:\test_x7.py:27: AttributeError

三、request.config

request.config 是獲取測試的配置文件參數,這個在前面講命令行參數的時候有用到過.

在 conftest.py 寫一個 hook函數, pytest_addoption 的作用是用于獲取命令行參數,request.config 用于讀取測試的配置數據

import pytest
def pytest_addoption(parser):
    parser.addoption(
        "--cmdopt", action="store", default="type1", help="my option: type1 or type2"
    )
@pytest.fixture
def cmdopt(request):
    return request.config.getoption("--cmdopt")

于是在測試用例里面可以通過 request.config 來獲取到配置參數,也可以通過自己定義的 cmdopt 來獲取。

import pytest
def test_answer_1(request):
    type = request.config.getoption("--cmdopt")
    print("獲取到命令行參數:%s" % type)
def test_answer_2(cmdopt):
    print("獲取到命令行參數:%s" % cmdopt)

四、request.module

fixture 函數可以通過接受 request 對象來反向獲取請求中的測試函數、類或模塊上下文,進一步擴展之前的 smtp fixture示例,讓我們從fixture的測試模塊讀取可選的服務器URL
這是官方文檔的一個示例

# conftest.py
@pytest.fixture(scope="module")
def smtp(request):
    server = getattr(request.module, "smtpserver", "smtp.qq.com")
    print("fixture 獲取到的server :%s" %server)
    smtp = smtplib.SMTP(server, 587, timeout=5)
    yield smtp
    print("完成 %s (%s)" % (smtp, server))
    smtp.close()

我們使用request.module屬性來從測試模塊中選擇性地獲取smtpserver屬性
快速創建另一個測試模塊,在其模塊名稱空間中實際設置服務器URL,新建一個test_anothersmtp.py文件,輸入以下代碼:

# test_anothersmtp.py
smtpserver = "mail.python.org"
 
def test_showhelo(smtp):
    print("case showhelo")

這時候運行用例,會獲取到 test_anothersmtp.py 里面定義的 smtpserver

============================= test session starts =============================
platform win32 -- Python 3.6.6, pytest-4.5.0, py-1.9.0, pluggy-0.13.1
Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket=<bucket_type>
rootdir: D:\
rerunfailures-9.1, xdist-2.1.0
collected 1 item
..\..\..\..\module2\test_anothersmtp.py 
fixture 獲取到的server :mail.python.org
case showhelo
.完成 <smtplib.SMTP object at 0x000001D00754CB00> (mail.python.org)
========================== 1 passed in 0.64 seconds ===========================

用例里面沒定義 smtpserver 的話,會用默認屬性 "smtp.qq.com"

五、request的相關成員對象

在conftest.py 寫一個fixture 可以獲取到request的一些成員對象相關信息

# conftest.py
 
@pytest.fixture(autouse=True)
def print_request(request):
    print("\n=======================request start=================================")
    print(request.module)
    print(request.function)
    print(request.cls)
    print(request.fspath)
    print(request.fixturenames)
    print(request.fixturename)
    print(request.scope)
    print("\n=======================request end=================================")

使用命令行"pytest -s text_x.py"運行用例,會看到打印的結果:

test_1.py
=======================request start=================================
<module 'web.cases.module2.test_1' from 'D:\\web\\cases\\module2\\test_1.py'>
<function test_answer_1 at 0x0000012D1C9FD9D8>
None
D:\web\cases\module2\test_1.py
['_verify_url', 'base_url', '__pytest_repeat_step_number', 'show_request', 'request']
show_request
function
=======================request end=================================
獲取到命令行參數:type1
.
=======================request start=================================
<module 'web.cases.module2.test_1' from 'D:\\web\\cases\\module2\\test_1.py'>
<function test_answer_2 at 0x0000012D1C9FD730>
None
D:\web\cases\module2\test_1.py
['_verify_url', 'base_url', '__pytest_repeat_step_number', 'show_request', 'cmdopt', 'request']
show_request
function
=======================request end=================================

在打印測試用例的詳細日志的時候,還是很有用的。

以上就是“pytest文檔內置fixture的request怎么用”這篇文章的所有內容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會為大家更新不同的知識,如果還想學習更多的知識,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

江油市| 南丰县| 花莲县| 哈尔滨市| 姜堰市| 安吉县| 抚顺县| 高尔夫| 类乌齐县| 神农架林区| 永年县| 纳雍县| 石城县| 房产| 巩义市| 前郭尔| 北安市| 平度市| 土默特左旗| 定西市| 文化| 黄浦区| 金寨县| 防城港市| 班戈县| 察哈| 澄江县| 琼结县| 蓝山县| 威海市| 灵山县| 七台河市| 蓬莱市| 东乡县| 东至县| 双江| 河池市| 兴城市| 越西县| 遂川县| 襄垣县|