续 日常积累 | 初识Pytest | 日常积累 | 初识pytest (二) 继续分享, 今天讲讲在编写完基本用例后,有些通用业务流代码或一些共用代码如何使用前置后置方法直接调用
学过unittest框架的大家都知道里面 [前置/后置setup/teardown ]非常好,用来写一些每个case执行前都需要执行的公用代码 [ 作用:在每次用例开始前和结束后都去执行一次 ]
例如我们的进入产品前可能都需要打开浏览器登录等,执行完毕后需要关闭浏览器等,这些我们都可以用前置后置初始化环境去实现的,然后这样的前置后置方法有很多,你们了解吗?
当然还有更高级一一点的setupClass和teardownClass,需配合@classmethod装饰器起使用,在做selenium自动化的时候,它的效率尤为突显;只用启动-次浏览器就可以将在该代码文件下的所有待执行用例,进行执行完毕。不需要执行每条每次就打开浏览器
pytest框架也有类似于setup和teardown的语法,并且还不止这四个,下面我们简单看看这些方法的简单介绍 [ 时间有限,今天我给大家先介绍的是模块级+函数级,后续在持续补充 ]
* 用例运行级别
- 模块级(setup_module/teardown_module)开始于横块始末,全局的
- 函数级(setup_function/teardown_function)只对函数用例生效(不在类中)
- 类级(setup_class/teardown_calss)只在类中前后运行一次(在类中)
- 方法级(setup_method/teardown_method)开始于方法始末(在类中)
- 类里面的(setup/teardown)运行在调用方法前后
01函数式
pytest 框架支持函数和类两种用例方式,先看函数里面的 [ 函数级前置与后置用法setup_function、teardown_function ]
以下代码是函数式的前置后置简要代码,我们一起看看他的执行顺序
# coding=utf-8
# authou:shichao
# Python测试社区学习笔录
import pytest
# 函数式
def setup_function():
print('setup_function:每个用例前都会执行')
def teardown_function():
print('teardown_function:每个用例后都会执行')
def test_001():
print("正在执行第一条用例")
p = "Python"
assert "h" in p
def test_002():
print("正在执行第二条用例")
p = 'Test'
assert 'T' in p
if __name__ == '__main__':
pytest.main(['-s', 'test_fixt.py'])
以下是代码执行后控制台输出
Testing started at 15:52 ...
F:\python3\python_code\venv\Scripts\python.exe "F:\PyCharm\PyCharm Community Edition 2019.2.2\helpers\pycharm\_jb_pytest_runner.py" --path F:/python3/python_code/Study/API_AutoTest_Pytest/test_fixt.py
Launching pytest with arguments F:/python3/python_code/Study/API_AutoTest_Pytest/test_fixt.py in F:\python3\python_code\Study\API_AutoTest_Pytest
============================= test session starts =============================
platform win32 -- Python 3.7.4, pytest-5.4.3, py-1.8.1, pluggy-0.13.1 -- F:\python3\python_code\venv\Scripts\python.exe
cachedir: .pytest_cache
rootdir: F:\python3\python_code\Study\API_AutoTest_Pytest
collecting ... collected 2 items
test_fixt.py::test_001 setup_function:每个用例前都会执行
PASSED [ 50%]正在执行第一条用例
teardown_function:每个用例后都会执行
test_fixt.py::test_002 setup_function:每个用例前都会执行
PASSED [100%]正在执行第二条用例
teardown_function:每个用例后都会执行
============================== 2 passed in 0.02s ==============================
Process finished with exit code 0
>>函数式setup_function、teardown_function控制台输出解析
# 函数级 [ 可以看到控制台输出的结果执行顺序 ]
test_fixt.py::test_001 >>setup_function每个用例前都会执行>>[ 50%]正在执行第一条用例>>运行通过>>teardown_function每个用例后都会执行
test_fixt.py::test_002 >>setup_function每个用例前都会执行>>[100%]正在执行第二条用例>>运行通过>>teardown_function每个用例后都会执行
这是我们的函数级setup_function/teardown_function 作用就是只对函数用例生效(不在类中)
* 函数式在每条测试用例执行前都会去执行一次
图例01
02模块级
接着我们在看看[ 模块级setup_module、teardown_module前置与后置用法 ]
以下代码是模块级的前置后置简要代码,我们一起看看他的执行顺序
# coding=utf-8
# authou:shichao
# Python测试社区学习笔录
import pytest
# 模块级
def setup_module():
print('setup_module:整个.py模块只执行一次')
print("比如:所有用例开始前只打开一次浏览器")
def teardown_module():
print('teradown_module:整个.py模块只执行一次')
print("比如:所有用例结束只最后关闭浏览器")
def test_001():
print("正在执行第一条用例")
p = "Python"
assert "h" in p
def test_002():
print("正在执行第二条用例")
p = 'Test'
assert 'T' in p
if __name__ == '__main__':
pytest.main(['-s', 'test_fixt.py'])
以下是代码执行后控制台输出
Testing started at 15:50 ...
F:\python3\python_code\venv\Scripts\python.exe "F:\PyCharm\PyCharm Community Edition 2019.2.2\helpers\pycharm\_jb_pytest_runner.py" --path F:/python3/python_code/Study/API_AutoTest_Pytest/test_fixt.py
Launching pytest with arguments F:/python3/python_code/Study/API_AutoTest_Pytest/test_fixt.py in F:\python3\python_code\Study\API_AutoTest_Pytest
============================= test session starts =============================
platform win32 -- Python 3.7.4, pytest-5.4.3, py-1.8.1, pluggy-0.13.1 -- F:\python3\python_code\venv\Scripts\python.exe
cachedir: .pytest_cache
rootdir: F:\python3\python_code\Study\API_AutoTest_Pytest
collecting ... collected 2 items
test_fixt.py::test_001 setup_module:整个.py模块只执行一次
比如:所有用例开始前只打开一次浏览器
PASSED [ 50%]正在执行第一条用例
test_fixt.py::test_002 PASSED [100%]正在执行第二条用例
teradown_module:整个.py模块只执行一次
比如:所有用例结束只最后关闭浏览器
============================== 2 passed in 0.02s ==============================
Process finished with exit code 0
>>模块级setup_module、teardown_module控制台输出解析
# 模块级 [ 我们可以看到控制台输出的结果执行顺序 ]
>>setup_module:整个.py模块只执行一次>>比如:所有用例开始前只打开一次浏览器
>>test_fixt.py::test_001 >>[ 50%]正在执行第一条用例>>运行通过
>>test_fixt.py::test_002 >>[100%]正在执行第二条用例>>运行通过
>>teradown_module:整个.py模块只执行一次>>比如:所有用例结束只最后关闭浏览器
* 模块级前置后置只打开一次就执行所有的测试用例
图例02
03函数式+模块级
接着我们在看看[ 模块级+ 函数式 在一个测试用例文件里一起写前置与后置用法 看看它的执行顺序 ]
以下代码是模块级的前置后置简要代码,我们一起看看他的执行顺序
# coding=utf-8
# authou:shichao
# Python测试社区学习笔录
import pytest
# 模块级
def setup_module():
print('setup_module:整个.py模块只执行一次')
print("比如:所有用例开始前只打开一次浏览器")
def teardown_module():
print('teradown_module:整个.py模块只执行一次')
print("比如:所有用例结束只最后关闭浏览器")
# 函数式
def setup_function():
print('setup_function:每个用例前都会执行')
def teardown_function():
print('teardown_function:每个用例后都会执行')
def test_001():
print("正在执行第一条用例")
p = "Python"
assert "h" in p
def test_002():
print("正在执行第二条用例")
p = 'Test'
assert 'T' in p
if __name__ == '__main__':
pytest.main(['-s', 'test_fixt.py'])
以下是代码执行后控制台输出
Testing started at 15:53 ...
F:\python3\python_code\venv\Scripts\python.exe "F:\PyCharm\PyCharm Community Edition 2019.2.2\helpers\pycharm\_jb_pytest_runner.py" --path F:/python3/python_code/Study/API_AutoTest_Pytest/test_fixt.py
Launching pytest with arguments F:/python3/python_code/Study/API_AutoTest_Pytest/test_fixt.py in F:\python3\python_code\Study\API_AutoTest_Pytest
============================= test session starts =============================
platform win32 -- Python 3.7.4, pytest-5.4.3, py-1.8.1, pluggy-0.13.1 -- F:\python3\python_code\venv\Scripts\python.exe
cachedir: .pytest_cache
rootdir: F:\python3\python_code\Study\API_AutoTest_Pytest
collecting ... collected 2 items
test_fixt.py::test_001 setup_module:整个.py模块只执行一次
比如:所有用例开始前只打开一次浏览器
setup_function:每个用例前都会执行
PASSED [ 50%]正在执行第一条用例
teardown_function:每个用例后都会执行
test_fixt.py::test_002 setup_function:每个用例前都会执行
PASSED [100%]正在执行第二条用例
teardown_function:每个用例后都会执行
teradown_module:整个.py模块只执行一次
比如:所有用例结束只最后关闭浏览器
============================== 2 passed in 0.02s ==============================
Process finished with exit code 0
>>模块级+ 函数式前置后置控制台输出解析
# 模块级 [ 我们可以看到控制台输出的结果执行顺序 ]
>>setup_module:整个.py模块只执行一次>>比如:所有用例开始前只打开一次浏览器
>>test_fixt.py::test_001 >>setup_function每个用例前都会执行>>[ 50%]正在执行第一条用例>>运行通过>>teardown_function每个用例后都会执行
>>test_fixt.py::test_002 >>setup_function每个用例前都会执行>>[100%]正在执行第二条用例>>输出报错>>teardown_function每个用例后都会执行
>>teradown_module:整个.py模块只执行一次>>比如:所有用例结束只最后关闭浏览器
* 从输出的结果可以看出,运行的顺序:setup_module》setup_function》
用例》teardown_function》teradown_module
图例03
以上就是今天给大家介绍的pytest前置后置[ 模块级以及函数式 ] 的用法以及在实际代码中他们的执行优先级,小小的顺序结构可能会影响你这条case是否执行通过,希望本次分享对大家有所帮助
注:本文内容来源于上海悠悠教学文档以及网路相关知识点综合总结,只作为知识分享,如有侵权可联系删除
日常积累,支持作者,可以将文章分享到朋友圈或点个在看,感谢大家的阅读!Bey , 下期再见
公众号后台回复 989 Python 领取 4G 入门到进阶成长资料