本文主要是介绍pytest文档内置fixture的request详情,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用命令行"pytest -s text_x.py"运行用例,会看到打印的结果:前言
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.paramprint("\n拿着这个账号去注册:%s"%user)result = "success"return user, resultdef test_register(register_users):user, result = register_usersprint("在测试用例里面里面获取到当前测试数据:%s"%user)print(result)assert result == "success"
此案例里面我们可以在fixture参数化的时候,通过request.param获取到测试的请求参数,但是在用例里面用 request.param 却不能获取到测试的请求参数
1 2 |
|
这样运行,会抛异常:'FixtureRequest' object has no attribute 'param'
#拿着这个账号去注册:user1Fregister_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 pytestdef pytest_addoption(parser):parser.addoption("--cmdopt", action="store", default="type1", help="my option: type1 or type2")@pytest.fixturedef cmdopt(request):return request.config.getoption("--cmdopt")
于是在测试用例里面可以通过 request.config 来获取到配置参数,也可以通过自己定义的 cmdopt 来获取。
import pytestdef 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 smtpprint("完成 %s (%s)" % (smtp, server))smtp.close()
我们使用request.module属性来从测试模块中选择性地获取smtpserver属性
快速创建另一个测试模块,在其模块名称空间中实际设置服务器URL,新建一个test_anothersmtp.py文件,输入以下代码:
# test_anothersmtp.pysmtpserver = "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.1Test order randomisation NOT enabled. Enable with --random-order or --random-order-bucket=<bucket_type>rootdir: D:\rerunfailures-9.1, xdist-2.1.0collected 1 item..\..\..\..\module2\test_anothersmtp.pyfixture 获取到的server :mail.python.orgcase 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详情的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!