今日写了一个对http接口测试中的返回值,json格式 进行深层断言的方法。话不多说,直接上码,觉得好的可以留言支持我一下。在此感谢selenium_python群的第一个高手大师兄蜗牛哥 和 众多高手提供的初始版本。
代码语言:javascript复制def compare_json_data(A, B, xpath='.'):
if isinstance(A, list) and isinstance(B, list):
for i in range(len(A)):
try:
compare_json_data(A[i], B[i], xpath '[%s]'%str(i))
except:
print '▇▇▇▇▇ A中的%s[%s]未在B中找到'%(xpath,i)
if isinstance(A, dict) and isinstance(B, dict):
for i in A:
try:
B[i]
except:
print '▇▇▇▇▇ A中的%s/%s 未在B中找到'%(xpath,i)
continue
if not (isinstance(A.get(i), (list, dict)) or isinstance(B.get(i), (list, dict))):
if type(A.get(i)) != type(B.get(i)):
print '▇▇▇▇▇ 类型不同参数在[A]中的绝对路径: %s/%s ►►► A is %s, B is %s '%(xpath,i,type(A.get(i)),type(B.get(i)))
elif A.get(i) != B.get(i):
print '▇▇▇▇▇ 仅内容不同参数在[A]中的绝对路径: %s/%s ►►► A is %s, B is %s ' % (xpath, i, A.get(i), B.get(i))
continue
compare_json_data(A.get(i), B.get(i), xpath '/' str(i))
return
if type(A) != type(B):
print '▇▇▇▇▇ 类型不同参数在[A]中的绝对路径: %s ►►► A is %s, B is %s ' % (xpath, type(A), type(B))
elif A != B and type(A) is not list:
print '▇▇▇▇▇ 仅内容不同参数在[A]中的绝对路径: %s ►►► A is %s, B is %s ' % (xpath, A, B)
#俩个字典,传进去,包含了多种情况。
A= {'b':[1,2,5,8],'c':3,'d':2,'f':[1,2,3],'g':[1,2,3,[2,'2',2]],'h':'5','i':None,'j':False,'k':{'l':{'m':[{'n':12}]}}}
B= {'b':[1,2,'3'],'c':2,'e':'4','f':[1,2,3,5],'g':[1,2,3,[1,2]],'h':[1,2],'i':None,'j':True,'k':{'l':{'m':[{'n':2}]}}}
compare_json_data(A,B)
这版本目前只是把所有的不一样的地方都print出来,具体要做成什么样来融合进各位自己的框架中,就看着改,比如发现某参数类型不一样,找不到,就不用继续运行来,直接断言失败或人工触发异常。断言失败,需要传回俩个值,通过self.assert(之类的断言方法) 来判断最终用例执行情况。引发异常就把print改成assert 。
下面上 执行结果。
测试数据:
A={‘b’:[1,2,5,8],’c’:3,’d’:2,’f’:[1,2,3],’g’:[1,2,3,[2,’2’,2]],’h’:’5’,’i’:None,’j’:False,’k’:{‘l’:{‘m’:[{‘n’:12}]}}}
B={‘b’:[1,2,’3’],’c’:2,’e’:’4’,’f’:[1,2,3,5],’g’:[1,2,3,[1,2]],’h’:[1,2],’i’:None,’j’:True,’k’:{‘l’:{‘m’:[{‘n’:2}]}}}
最后,欢迎来留言。