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

day99 pytest使用conftest管理fixture

学习日期:20241216

学习目标:pytest基础用法 -- pytest使用conftest管理fixture

学习笔记:

fixture(scope="function")

conftest.py为固定写法,不可修改名字,使用conftest.py文件方法无需导入,函数作用于当前文件夹及下属文件

  • pytest使用fixture返回数据,可以接收返回值
python 复制代码
conftest.py

@pytest.fixture(scope="function")
def get_params():
    params = {'key1': 'value1', 'key2': 'value2'}
    return params
python 复制代码
test_fixture_return.py

import pytest
import requests


def test_getmobile(get_params):
    print("测试get请求")
    #第1种方法
    # r=requests.get('https://httpbin.org/get',params=get_params)

    #第2种方法
    key1 = get_params['key1']
    key2 = get_params['key2']
    r=requests.get('https://httpbin.org/get',params={'key1':key1, 'key2':key2})
    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'
总结
  1. conftest.py为固定写法,不可修改名字,使用conftest.py文件方法无需导入
相关推荐
dubochao_xinxi7 分钟前
E: 仓库目录 /var/cache/apt/archives/partial 确实。 - Acquire (2: 没有那个文件或目录)
开发语言·数据库·python·qt
液态不合群9 分钟前
使用Python实现两组数据纵向排序
开发语言·python·算法
hu_wenjie14 分钟前
使用pyinstaller打包flask项目
后端·python·flask
chenchihwen1 小时前
TimesFM(Time Series Foundation Model)时间序列预测的数据研究(3)
人工智能·python
数据小爬虫@1 小时前
Java爬虫技术:挖掘淘宝数据的利器
java·爬虫·python
BBluster1 小时前
multiprocessing包详解【Python】
开发语言·网络·python
Lill_bin1 小时前
分页查询在数据库中的好处
java·开发语言·数据库·python·oracle·性能优化
极客小张2 小时前
基于STM32的智电表系统课题设计思路:python友好界面、ADC、UART串口、数据分析
c语言·python·stm32·单片机·数据分析·毕业设计·课程设计
勤劳的进取家2 小时前
利用模拟退火算法求解旅行商问题
开发语言·python
威威猫的栗子2 小时前
用 Python Turtle 绘制经典汤姆猫:重温卡通角色的经典魅力
开发语言·python