pytest + yaml 框架 -68.新增全局请求参数配置verify和headers

2024-05-15 08:36

本文主要是介绍pytest + yaml 框架 -68.新增全局请求参数配置verify和headers,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

前言

最近有小伙伴提到如何全局添加请求参数verify=False 和 全局请求添加头部参数如:{“x-token”: “xxx”}
之前的版本可以用fixture解决,v1.5.8版本可以支持在config中配置

fixture 更新全局请求

第一种解决方案,通过fixture来更新全局session会话

import pytest@pytest.fixture(scope="session", autouse=True)
def auto_add_args(requests_session):# 全局更新verify = Falserequests_session.verify = False# 全局更新头部参数headersrequests_session.headers.update({"x-token": "xxxxx"})

config中配置全局请求参数

config配置中,目前仅支持verify 和 headers 2个请求相关参数的配置

from pytest_yaml_yoyo.db import ConnectMysqlclass Config:"""每个环境都有一样的公共配置"""version = "v1.0"class TestConfig(Config):"""测试环境"""BASE_URL = 'http://124.70.221.221:8201'BLOG_URL = 'https://www.cnblogs.com'USERNAME = 'test9'PASSWORD = '123456'verify = Falseheaders = {"xx-token": "xx111"}class UatConfig(Config):"""联调环境"""BASE_URL = 'http://124.70.221.221:8201'USERNAME = 'test_uat'PASSWORD = '123456'# 环境关系映射,方便切换多环境配置
env = {"test": TestConfig,"uat": UatConfig
}

yaml用例示例test_a.yml

test_demo:name: postrequest:method: POSTurl: http://httpbin.org/postjson:username: testpassword: "123456"extract:url:  body.urlvalidate:- eq: [status_code, 200]- eq: [headers.Server, gunicorn/19.9.0]- eq: [$..username, test]- eq: [body.json.username, test]

执行用例

pytest test_a.yml

运行日志

>pytest test_a.yml
================================================== test session starts ==================================================
platform win32 -- Python 3.9.13, pytest-7.4.4, pluggy-1.0.0
rootdir: D:\demo\untitled3.9
configfile: pytest.ini
plugins: allure-pytest-2.13.1, Faker-18.4.0, repeat-0.9.1, rerunfailures-12.0, runtime-yoyo-1.0.1, yaml-yoyo-1.5.8
collected 1 item                                                                                                         test_a.yml::test_demo
----------------------------------------------------- live log call -----------------------------------------------------
2024-04-22 12:14:17 [INFO]: 执行文件-> test_a.yml
2024-04-22 12:14:17 [INFO]: base_url-> http://124.70.221.221:8201
2024-04-22 12:14:17 [INFO]: config variables-> {}
2024-04-22 12:14:17 [INFO]: 运行用例-> test_demo
2024-04-22 12:14:17 [INFO]: 用例步骤name: post
2024-04-22 12:14:17 [INFO]: yml raw  -->: {'method': 'POST', 'url': 'http://httpbin.org/post', 'json': {'username': 'test'
, 'password': '123456'}}
2024-04-22 12:14:17 [INFO]: ------  request info   ------
POST http://httpbin.org/post
headers: {"User-Agent": "python-requests/2.31.0","Accept-Encoding": "gzip, deflate","Accept": "*/*","Connection": "keep-alive","x-token": "xxxxx"
}
json: {"username": "test","password": "123456"
}
2024-04-22 12:14:18 [INFO]: ------  response info   ------
url: http://httpbin.org/post
status_code: 200 OK
headers: {"Date": "Mon, 22 Apr 2024 04:14:17 GMT","Content-Type": "application/json","Content-Length": "567","Connection": "keep-alive","Server": "gunicorn/19.9.0","Access-Control-Allow-Origin": "*","Access-Control-Allow-Credentials": "true"
}
cookies: {}
body: {"args": {},"data": "{\"username\": \"test\", \"password\": \"123456\"}","files": {},"form": {},"headers": {"Accept": "*/*","Accept-Encoding": "gzip, deflate","Content-Length": "42","Content-Type": "application/json","Host": "httpbin.org","User-Agent": "python-requests/2.31.0","X-Amzn-Trace-Id": "Root=1-6625e418-5610a93047c129fe3a7e1d84","X-Token": "xxxxx"},"json": {"password": "123456","username": "test"},"origin": "183.193.25.182","url": "http://httpbin.org/post"
}2024-04-22 12:14:18 [INFO]: extract  提取对象-> {'url': 'body.url'}
2024-04-22 12:14:18 [INFO]: extract  提取结果-> {'url': 'http://httpbin.org/post'}
2024-04-22 12:14:18 [INFO]: validate 校验内容-> [{'eq': ['status_code', 200]}, {'eq': ['headers.Server', 'gunicorn/19.9.0'
]}, {'eq': ['$..username', 'test']}, {'eq': ['body.json.username', 'test']}]
2024-04-22 12:14:18 [INFO]: validate 校验结果-> eq: [200, 200]
2024-04-22 12:14:18 [INFO]: validate 校验结果-> eq: [gunicorn/19.9.0, gunicorn/19.9.0]
2024-04-22 12:14:18 [INFO]: validate 校验结果-> eq: [test, test]
2024-04-22 12:14:18 [INFO]: validate 校验结果-> eq: [test, test]
PASSED                                                                                           [100%]=================================================== 1 passed in 1.21s =

这篇关于pytest + yaml 框架 -68.新增全局请求参数配置verify和headers的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/991330

相关文章

SpringCloud动态配置注解@RefreshScope与@Component的深度解析

《SpringCloud动态配置注解@RefreshScope与@Component的深度解析》在现代微服务架构中,动态配置管理是一个关键需求,本文将为大家介绍SpringCloud中相关的注解@Re... 目录引言1. @RefreshScope 的作用与原理1.1 什么是 @RefreshScope1.

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

springboot security之前后端分离配置方式

《springbootsecurity之前后端分离配置方式》:本文主要介绍springbootsecurity之前后端分离配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的... 目录前言自定义配置认证失败自定义处理登录相关接口匿名访问前置文章总结前言spring boot secu

一文详解SpringBoot响应压缩功能的配置与优化

《一文详解SpringBoot响应压缩功能的配置与优化》SpringBoot的响应压缩功能基于智能协商机制,需同时满足很多条件,本文主要为大家详细介绍了SpringBoot响应压缩功能的配置与优化,需... 目录一、核心工作机制1.1 自动协商触发条件1.2 压缩处理流程二、配置方案详解2.1 基础YAML

springboot简单集成Security配置的教程

《springboot简单集成Security配置的教程》:本文主要介绍springboot简单集成Security配置的教程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,... 目录集成Security安全框架引入依赖编写配置类WebSecurityConfig(自定义资源权限规则

SpringBoot中封装Cors自动配置方式

《SpringBoot中封装Cors自动配置方式》:本文主要介绍SpringBoot中封装Cors自动配置方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录SpringBoot封装Cors自动配置背景实现步骤1. 创建 GlobalCorsProperties

Spring Boot结成MyBatis-Plus最全配置指南

《SpringBoot结成MyBatis-Plus最全配置指南》本文主要介绍了SpringBoot结成MyBatis-Plus最全配置指南,包括依赖引入、配置数据源、Mapper扫描、基本CRUD操... 目录前言详细操作一.创建项目并引入相关依赖二.配置数据源信息三.编写相关代码查zsRArly询数据库数

SpringBoot配置Ollama实现本地部署DeepSeek

《SpringBoot配置Ollama实现本地部署DeepSeek》本文主要介绍了在本地环境中使用Ollama配置DeepSeek模型,并在IntelliJIDEA中创建一个Sprin... 目录前言详细步骤一、本地配置DeepSeek二、SpringBoot项目调用本地DeepSeek前言随着人工智能技

Python Dash框架在数据可视化仪表板中的应用与实践记录

《PythonDash框架在数据可视化仪表板中的应用与实践记录》Python的PlotlyDash库提供了一种简便且强大的方式来构建和展示互动式数据仪表板,本篇文章将深入探讨如何使用Dash设计一... 目录python Dash框架在数据可视化仪表板中的应用与实践1. 什么是Plotly Dash?1.1

基于Flask框架添加多个AI模型的API并进行交互

《基于Flask框架添加多个AI模型的API并进行交互》:本文主要介绍如何基于Flask框架开发AI模型API管理系统,允许用户添加、删除不同AI模型的API密钥,感兴趣的可以了解下... 目录1. 概述2. 后端代码说明2.1 依赖库导入2.2 应用初始化2.3 API 存储字典2.4 路由函数2.5 应