工具层handle_response

  1. **__handle_str**:利用 str.replace 清洗 Excel 数据中的换行符和空格,确保格式合法;
  2. **handle_response**:基于 isinstancerequestsjson()/text 方法,标准化 JSON/文本响应,输出统一结构;
  3. **assert_reponse**:通过 jsonpath 动态提取字段、ast.literal_eval 安全转换预期值为字典,结合 unittestassertEqual 实现灵活断言,避免硬编码;
  4. **assert_db**:直接调用 assertEqual 验证数据库数据一致性。
  1. __handle_str(清洗输入)
  2. handle_response(标准化响应)
  3. assert_reponse(动态断言)
  4. assert_db(数据库断言)
自定义函数 所用模块/方法 函数作用
handle_response(response) isinstance 判断对象的数据类型并返回布尔值;区分响应数据格式(JSON 或纯文本),确保后续处理逻辑适配不同接口返回类型
assert_reponse(expected_data, response)动态提取实际响应字段,并与预期数据对比,执行自动化断言 __handle_str()清洗数据 清洗excel中的预期结果的换行符(\n)和空格,避免因数据格式错误(如 JSON 中存在非法空格)导致解析失败或断言不匹配
assert_reponse(expected_data, response)动态提取实际响应字段,并与预期数据对比,执行自动化断言 isinstance 判断对象的数据类型是字典dict并返回布尔值
assert_reponse(expected_data, response)动态提取实际响应字段,并与预期数据对比,执行自动化断言 ast.literal_eval(expected_data)字符串转字典 将字符串格式的预期值(如 "{'token_type': 'bearer'}")安全转换为字典,避免 eval 的安全风险。
assert_reponse(expected_data, response)动态提取实际响应字段,并与预期数据对比,执行自动化断言 jsonpath(response, "$..key")动态字段提取 通过 JSONPath 表达式(如 $..token_type)从响应中提取动态字段值,支持嵌套结构,避免硬编码路径。
assert_db(extract_data, actual_data) self.assertEqual() 直接比对数据库查询结果与预期数据,验证数据一致性。
python 复制代码
import ast
import unittest
from jsonpath import jsonpath

class HandleResponse(unittest.TestCase):

    def __handle_str(self,data:str):    #data:excel中获取的请求参数
        for str_data in ["\n"," "]:
            data = data.replace(str_data,"")
        return data             #去掉空格后的请求参数

    # 响应结果处理
    def handle_response(self,response):
        try:
            if isinstance(response.json(),dict): #判断一个对象是否时一个已知的类型
                return {"response_type":"json","response":response.json()}
        except Exception as e :
            if isinstance(response.text,str):
                return {"response_type":"str","response":response.text}
            else:
                return {}

    def assert_reponse(self,expected_data,response):
        # 期望结果: expected_data = {"token_type": "bearer"}
        # 实际结果: actual_data = {"token_type":"bearer"}
        if expected_data:
            #去空格
            expected_data = self.__handle_str(data=expected_data)
            # 三元运算符 [结果为真的值] if [条件] else [结果为假的值]
            expected_data = expected_data if isinstance(expected_data,dict) else ast.literal_eval(expected_data)
            actual_data = {}
            if response["response_type"] == "json":
                for key in expected_data:
                    actual_data[key]=jsonpath(response,f"$..{key}")[0]
                self.assertEqual(expected_data,actual_data)
            else:
                for key in expected_data:
                    actual_data[key] = response["response"]
                self.assertEqual(expected_data, actual_data)
        else:
            print("预期结果为空,不需要做接口响应的断言")

    # 断言数据库
    def assert_db(self,extract_data,actual_data):
        self.assertEqual(extract_data,actual_data)



if __name__ == '__main__':
    cl = HandleResponse()
相关推荐
IT·小灰灰1 天前
告别“翻墙“烦恼:DMXAPI让Gemini-3-pro-thinking调用快如闪电
网络·人工智能·python·深度学习·云计算
山海青风1 天前
语音合成 - 用 Python 合成藏语三大方言语音
开发语言·python·音视频
mikejahn1 天前
爬取CECS网站征求意见栏目的最新信息
python
占疏1 天前
dify API访问工作流/聊天
开发语言·数据库·python
aningxiaoxixi1 天前
TTS 之 PYTHON库 pyttsx3
开发语言·python·语音识别
深蓝海拓1 天前
PySide6从0开始学习的笔记(三) 布局管理器与尺寸策略
笔记·python·qt·学习·pyqt
数据科学项目实践1 天前
建模步骤 3 :数据探索(EDA) — 1、初步了解数据:常用函数
人工智能·python·机器学习·数据挖掘·数据分析·pandas·数据可视化
Chen--Xing1 天前
2025鹏城杯 -- Crypto -- RandomAudit详解
python·密码学·ctf·鹏城杯
一瞬祈望1 天前
PyTorch 图像分类完整项目模板实战
人工智能·pytorch·python·深度学习·分类
坐吃山猪1 天前
BrowserUse12-源码-MCP模块
python·llm·playwright·browser-use