python 接口测试response返回数据对比的方法

作者:gogoboi_jin 时间:2023-10-12 14:01:31 

背景:之前写的接口测试一直没有支持无限嵌套对比key,上次testerhome逛论坛,有人分享了他的框架,看了一下,有些地方不合适我这边自己修改了一下,部署在jenkins上跑完效果还不错,拿出来分享一下。ps:还是要多看看别人写的,新学了不少python自带的一些常用方法。

这次直接上代码,下面写一下这次我新学一些方法和思路。


def check_response_hope_key(self,response={},hope_response={}):
 temp_data={}
 for n1 in hope_response:
  print "n1:",n1
  #如果值是字典类型
  if isinstance(hope_response[n1],dict):
   print "dict"
   if not Check_Response_Hope().check_response_hope_key(response=response.get(n1), hope_response=hope_response[n1]):
    MailFile().checkfail(response=response.get(n1), hope_response=hope_response[n1])
    return False
    raise '{},{}'.format(hope_response[n1],response[n1])

#如果值是列表类型
  elif isinstance(hope_response[n1],list):
   print "list"
   for hope_index,hope_listValue in enumerate(hope_response[n1]):
    #print "hope_index:",hope_index
    #print "hope_listValue:",hope_listValue
    for response_index,response_listValue in enumerate(response[n1]):
     #print "response_index:",response_index
     #print "response_listValue:",response_listValue
     if isinstance(hope_listValue,dict):
      Check_Response_Hope().check_response_hope_key(response=response[n1][response_index],
hope_response=hope_response[n1][response_index])
     elif isinstance(hope_listValue,list):
      if hope_response[n1][hope_index]==response[n1][hope_index]:
       break
      else:
       MailFile().checkfail(response=response_listValue,hope=hope_listValue)
       raise Exception ("hope_response="+str(hope_response[n1][hope_index])+"\n"+
"response="+str(response[n1][response_index]))
     else:
      if hope_response[n1][hope_index]==response[n1][hope_index]:
       break
      else:
       MailFile().checkfail(response=response[n1][hope_index],hope=hope_response[n1][hope_index])
       raise Exception ("hope_response="+str(hope_listValue)+"\n"+"response="+str(response_listValue))
  else:
   print "string"
   if response.has_key(n1):
    continue
   else:
    temp_data['error_data']='{}:{},{}:{}'.format(n1,hope_response[n1],n1,response[n1])
    #发送邮件
    MailFile().checkfail(response=response[n1],hope=hope_response[n1])
    raise Exception ("hope_response="+str(hope_response[n1])+"\n"+"response="+str(response.get(n1)))

return True

内置函数enumerate():

传入list的数据时返回该列表的索引和值,例如:


>>> list1=[1,2,3,4]
>>> for list_index,list_value in enumerate(list1):
...  print list_index,list_value
...

0 1
1 2
2 3
3 4

还可以控制索引的起始值开始迭代,例如:


>>> for list_index,list_value in enumerate(list1,1):
...  print list_index,list_value
...

1 1
2 2
3 3
4 4

内置函数isinstance(object,type):

用于判断传入对象是什么类型,返回布尔类型true或false,例如:


>>> isinstance(list1,dict)
False

ps:这个方法真的挺好用的,很基础可以根据返回的布尔类型走不同的if分支。

内置函数format()

这个函数作用就是格式化字符串,这里面不是非要用,我用完感觉还是挺方便的,结构也清晰,在下面举个常用例子。
1.通过位置进行映射:


>>> '{},{}'.format('abc',123)
'abc,123'
>>> '{1}{0}{1}'.format('abc',123)
'123abc123'

2.通过下标


>>> list1=['a','b']
>>> '{0[1]},{0[0]}'.format(list1)
'b,a'

当然还其他很多用法,我也没用到,还是挺强大的,有兴趣自己百度一下吧,很多写的很详细。

思路:

接口返回response一定是字典格式的,因为我写的接口测试框架用的orm链接数据库动态从数据库中传参数,所以返回value可能会不同,但是返回response的key肯定是固定的,所以我这里验证所有的key。

首先遍历hope_response(期望接口返回),hope_response[n]可能类型字典,列表或者string/int(我目前没有见过key是int型的),所以使用isinsstance()去判断value的类型。如果是string就表示是最简单的一层{key:value}形式,这里就使用has_key来判断response中有没有该key。hope_response[n]是dict类型,就递归,最后一定会落到string/int类型的分支。如果hope_response[n]是list类型,就用到enumerate()来拿到索引和值,根据值的类型去判断。大体思路这样的,我调试1天多,看着简单,自己写坑还是挺多的。

来源:http://blog.csdn.net/gogoboi_jin/article/details/73201604

标签:python,response
0
投稿

猜你喜欢

  • 使用python 和 lint 删除项目无用资源的方法

    2023-10-22 16:56:08
  • 使用Python中Tkinter模块的Treeview 组件显示ini文件操作

    2022-05-23 03:45:38
  • 二十八法优化SQL Server数据库查询

    2010-07-02 20:56:00
  • 用ASP实现Google在线文章翻译的功能

    2008-10-11 13:55:00
  • Python中Tkinter组件Button的具体使用

    2022-06-07 00:26:33
  • nodejs 的 session 简单使用

    2024-05-11 09:51:19
  • opencv 傅里叶变换的实现

    2022-03-21 09:59:51
  • so easy!10行代码写个"狗屁不通"文章生成器功能

    2023-03-19 06:53:30
  • Python 一键获取百度网盘提取码的方法

    2023-11-30 06:13:49
  • 小白讲座:在win下mysql备份恢复命令概括

    2009-09-05 09:43:00
  • Vue组件的继承用法示例详解

    2024-05-29 22:44:22
  • python使用urlparse分析网址中域名的方法

    2022-12-06 01:00:59
  • Python学习笔记(一)(基础入门之环境搭建)

    2021-12-26 12:51:40
  • Tensorflow 自定义loss的情况下初始化部分变量方式

    2023-02-26 22:43:39
  • Spring boot连接MySQL 8.0可能出现的问题

    2024-01-17 17:04:28
  • Python对象循环引用垃圾回收算法详情

    2021-03-02 23:29:14
  • 10个顶级Python实用库推荐

    2023-08-27 17:41:46
  • python创建一个最简单http webserver服务器的方法

    2021-12-15 03:45:40
  • Python Selenium 之关闭窗口close与quit的方法

    2023-11-14 01:28:06
  • js 获取后台的字段 改变 checkbox的被选中的状态 代码

    2024-04-22 22:33:40
  • asp之家 网络编程 m.aspxhome.com