pytest接口自动化零基础入门到精通(02)pytest前后置
Posted 七月的小尾巴
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pytest接口自动化零基础入门到精通(02)pytest前后置相关的知识,希望对你有一定的参考价值。
setup和teardown
用过 unittest
的小伙伴应该都知道, unittest
提供了两个前置方法和两个后置方法。分别是:
- setup()
- setupClass()
- teardown()
- teardownClass()
那么pytest
作为升级版,自然也也提供了类似 setup、teardown 的方法。pytest
在前后置这一块,会做的更细致化,分别分为模块级、类级、方法级、函数级、方法细化级。下面我们来了解一下。
- 模块级(开始于模块始末,全局的):setup_module()、teardown_module()
- 函数级(只对函数用例生效,不在类中):setup_function()、teardown_function()
- 类级(只在类中前后运行一次,在类中):setup_class()、teardown_class()
- 方法级(开始于方法始末,在类中):setup_method()、teardown_method()
- 方法细化级(运行在调用方法的前后):setup()、teardown()
下面我们创建一个test_setup_teardown.py文件
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2021/11/18 23:04
# @Author : 余少琪
import pytest
def setup_module():
print("===== 整个.py模块开始前只执行一次 setup_module 例如:打开浏览器 =====")
def teardown_module():
print("===== 整个.py模块结束后只执行一次 teardown_module 例如:关闭浏览器 =====")
def setup_function():
print("===== 每个函数级别用例开始前都执行 setup_function =====")
def teardown_function():
print("===== 每个函数级别用例结束后都执行 teardown_function =====")
def test_one():
print("one")
def test_two():
print("two")
class TestCase:
def setup_class(self):
print("===== 整个测试类开始前只执行一次 setup_class =====")
def teardown_class(self):
print("===== 整个测试类结束后只执行一次 teardown_class =====")
def setup_method(self):
print("===== 类里面每个用例执行前都会执行 setup_method =====")
def teardown_method(self):
print("===== 类里面每个用例结束后都会执行 teardown_method =====")
def setup(self):
print("===== 类里面每个用例执行前都会执行 setup =====")
def teardown(self):
print("===== 类里面每个用例结束后都会执行 teardown =====")
def test_three(self):
print("three")
def test_four(self):
print("four")
if __name__ == '__main__':
pytest.main(["-q", "-s", "-ra", "test_setup_teardown.py"])
按顺序依次执行test_one函数、test_two函数,之后执行TestCase类里的test_three方法、test_four方法。
整体全部的顺序:
setup_module->setup_function->test_one->teardown_function->setup_function->test_two->teardown_function->setup_class->setup_method->setup->test_three->teardown->teardown_method->setup_method->setup->test_four->teardown->teardown_method->teardown_class->teardown_module
以上是关于pytest接口自动化零基础入门到精通(02)pytest前后置的主要内容,如果未能解决你的问题,请参考以下文章
pytest零基础入门到精通(04)conftest文件详解
pytest零基础入门到精通(05)Allure报告的隐藏用法