D94【python 接口自动化学习】- pytest进阶之fixture用法

day94 pytest的fixture详解

学习日期:20241210

学习目标:pytest基础用法 -- pytest的fixture详解

学习笔记:

fixture的介绍

fixture是 pytest 用于将测试前后进行预备、清理工作的代码处理机制。

fixture相对于setup和teardown来说有以下几点优势:

  • fixure命名更加灵活,局限性比较小
  • conftest.py 配置里面可以实现数据共享,不需要import就能自动找到一些配置
fixture夹具

@pytest.fixture,scope作用域的意思

  • (scop="function") 每一个函数或方法都会调用,默认就是function
  • 只有调用了func函数的才会运行func
python 复制代码
import pytest
import requests

#默认scope是function
@pytest.fixture()
def func():
    print("我是前置步骤")

def test_getmobile(func):
    print("测试get请求")
    params = {'key1': 'value1', 'key2': 'value2'}
    r=requests.get('https://httpbin.org/get',params=params)
    print(r.status_code)
    assert r.status_code == 200
    res = r.json()
    assert res['url'] == 'https://httpbin.org/get?key1=value1&key2=value2'
    assert res['origin'] == '163.125.202.248'
    assert res['args']['key1'] == 'value1'
    assert res['args']['key2'] == 'value2'

def test_postmobile():
    print("测试post请求")
    params = {'key': 'value'}
    r = requests.post('https://httpbin.org/post', data=params)
    print(r.status_code)
    assert r.status_code == 200
    print(r.json())
    res=r.json()
    assert res['args'] == {}
    assert res['data'] == ''
    assert res['form']['key'] == 'value'

if __name__ == '__main__':
    pytest.main()
总结
  1. fixture是 pytest 用于将测试前后进行预备、清理工作的代码处理机制
  2. scope作用域(scop="function") 每一个函数或方法都会调用,默认就是function
相关推荐
Code成立4 分钟前
《Java核心技术I》并行数组算法
开发语言·python
海阔天空_201344 分钟前
Python pywin32库详解
python·自动化
五味香1 小时前
Java学习,字符串搜索
java·c语言·开发语言·python·学习·golang·kotlin
晨曦_子画1 小时前
使用 Python 和 NumPy 为神经网络创建简单高效的遗传算法
python·神经网络
占疏1 小时前
在虚拟机的python中安装配置Jupyter Notebook
开发语言·python·jupyter
HP-Patience1 小时前
【提高效率】Jupyter Notebook 常用快捷键
python·jupyter
花鱼饼1 小时前
解决jupyter notebook需要密码的问题,jupyter更换默认保存路径
ide·python·jupyter
Captain823Jack2 小时前
w03_nlp大模型训练·处理字符串
人工智能·python·深度学习·神经网络·机器学习·自然语言处理·matplotlib
刹那间的回眸x.y2 小时前
Playwright中Page类的方法
python
wang_yb2 小时前
高效文件处理:Python pathlib实战指南
python·databook