首先,容小编我说一个很尖锐的问题:业界有很多接口自动化工具,比如postman、jmeter、httpapi、soupUI等。为啥还要自己搞一套框架(造轮子)?
由于在项目中遇到了以下几个问题:
1、 对返回的json需要进行层级检查
例如:检查返回的json中date下第五个list中的image的值为ad。
2、 对失败case的结果提示能够一眼看出case失败的具体原因。
例如:不是json?返回404?json层级解析失败?json的key不存在?json的value不存在?
3、 后续想方便的扩充功能,以适用不同的项目需求。
例如:支持jsonp返回的json解析,支持protobuf的解析等。
以上三个问题,用业界的通用框架都难以满足需求,所以决定自己写一套框架~
对于框架,我们的考虑是这几方面:
易用性——是否简单上手
通用性——是否通用基本的http接口测试需求
可扩展性——是否方便的扩展功能
易读性——测试结果是否很直接的知道失败具体原因
我们的愿景是这样的~
如何不写代码就可以做接口测试呢?
你要做的就是:
写excel用例
写excel用例
写excel用例
重要的事情说三遍~~~
具体用例是什么样的呢?
所以你要做的就是按照excel的字段说明写用例即可~
⊙增加可定义post请求和get请求方法,增加header支持
⊙增加返回结果的校验,支持xml、json及纯文本的返回内容检查
⊙增加case可选择性执行,支持Y-正常case、E-异常case、N-不执行case
⊙对xml及json的返回,支持每条case指定key-value对的检查,增加失败原因的提示
⊙支持json层级检查及list的检查
⊙增强返回异常结果的检查,例如空、非200返回。
⊙增强对运行结果的统计及提示,支持失败发送邮件提醒。
⊙支持301、302跳转
⊙支持执行所有sheet页的case
⊙支持关联
具体框架是如何实现的呢?且听我娓娓道来~
咳咳~~~不想看代码的同学,请直接跳到结尾~
框架介绍:
具体的实现流程如下:
main.py:入口函数,指定case文件及sheet页
ExcelPath=os.getcwd()+'/TestCaseDir/yuedu_Testcase.xlsx' SheetName='ALL'#需要执行的sheet页名称,如果想执行所有sheet页,必须为大写的ALL server_case.excelobj=create_excel(ExcelPath,SheetName) #跑case,如果有错误发出邮件通知 if SheetName.upper() == 'ALL': #执行所有sheet页的用例 Sheetnames = [] Sheetnames =server_case.excelobj.get_all_sheetname() #print Sheetnames for SheetName in Sheetnames: SheetName =str(SheetName) mailbody,count =run(SheetName) Sendmail('xxxx@sogou-inc.com', mailbody,count, SheetName) else: #执行指定sheet页的用例 mailbody,count =run(SheetName) Sendmail('xxxx@sogou-inc.com', mailbody,count, SheetName)
读取用例采用com组件读取excel的方式
采用这种方式的原因是:
Com组件操作是windows提供的,理论上可以支持所有excel的操作,在这里用到了如果case执行失败,将对应项标红底色的功能。
支持excel和wps,只需要将com组件名称修改即可。
self.xlApp = win32com.client.Dispatch('Excel.Application') #MS:Excel WPS:et try: self.book =self.xlApp.Workbooks.Open(sFile) except: print_error_info() print "打开文件失败" exit()
发送请求统一维护在HTTPInvoke(url,requestUri)方法中
def HTTPInvoke(url,requestUri): proto,rest=urllib.splittype(url) host,rest=urllib.splithost(rest) conn =httplib.HTTPConnection(host) ifreqmethod.upper()=="GET": print url conn.request(reqmethod.upper(), url,headers=reqHeaders) rsps = conn.getresponse() if rsps.status==200: data = rsps.read() data = str(data) conn.close() return data elif rsps.status==301 orrsps.status==302: headerstr=rsps.getheaders() for i in headerstr: ifi[0].lower()=='location': url = i[1] proto,rest=urllib.splittype(url) host,rest=urllib.splithost(rest) conn =httplib.HTTPConnection(host) conn.request('GET', url) rsps =conn.getresponse() ifrsps.status==200: data =rsps.read() data = str(data) conn.close() returndata else: data='[Response_Code_err]:'+str(rsps.status) data = str(data) return data ifreqmethod.upper()=="POST": print requestUri + '\t' + 'body=' +sArge conn.request(reqmethod.upper(),requestUri,body=sArge,headers=reqHeaders) rsps =conn.getresponse() if rsps.status==200: data = rsps.read() data = str(data) conn.close() return data elif rsps.status==301 orrsps.status==302: headerstr=rsps.getheaders() print headerstr for i in headerstr: ifi[0].lower()=='location': url = i[1] proto,rest=urllib.splittype(url) host,rest=urllib.splithost(rest) conn =httplib.HTTPConnection(host) conn.request('GET', url) rsps =conn.getresponse() ifrsps.status==200: data =rsps.read() data =str(data) conn.close() return data else: data='[Response_Code_err]:'+str(rsps.status) return data
通过这个函数可以处理post请求,get请求、302跳转请求。
对返回结果的遍历校验:
ResString=HTTPInvoke(sInput,requesturi) #执行调用 print ResString #获取返回码并比较 #printResString,checkitem #如果服务器返回码不是200,直接报错。 ifResString.startswith('[Response_Code_err]'): real_value=ResString print real_value ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule) #写测试结果 write_result(excelobj, suiteid, caseid, excelobj.resultCol, ret1) continue #判断是使用xml还是json解析。 if ResString.find('xmlversion=')>0: try: real_value=et.fromstring(ResString).find(checkitem).text ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule) except: printsInput+"返回不是标准的XML!" real_value=sInput+"返回不是标准的XML!" ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule) elifResString.startswith('{'): try: ResString=ToUnicode(ResString) hjson =json.loads(ResString) expstr=excelobj.read_data(suiteid,excelobj.casebegin+caseid, 13) ifstr(checkitem).startswith('['): try: checkitem= checkitem.replace("‘","'") checkitem= checkitem.replace("’","'") hjson =json.loads(ResString) precmd='hjson'+checkitem real_value=eval(precmd) ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule) except: real_value=checkitem+'解析失败,请检查层级及语法!' ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule) else : ResString=ToUnicode(ResString) #printResString ifResString.find(checkitem)>0: pattern = re.compile(r'%s(.*?),' % checkitem) res = pattern.findall(ResString) ifres==[]:#如果要匹配的字段在最后,则没有逗号,只能匹配大括号 pattern = re.compile(r'%s(.*?)}' % checkitem) res =pattern.findall(ResString) #printres[0] else: print'key:'+checkitem+'在response中不存在!' real_value='key:'+checkitem+'在response中不存在!' ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule) #写测试结果 write_result(excelobj, suiteid, caseid, excelobj.resultCol, ret1) continue real_value=res[0].replace('"','') #printreal_value real_value=real_value[1:] ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule) except: printsInput+"返回不是标准的json!" real_value=sInput+"返回不是标准的json!" ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule) else:#非json非xml文件 expstr=excelobj.read_data(suiteid,excelobj.casebegin+caseid, 14) ifResString.find(expstr)>0: real_value=expstr ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule) else: print sInput+'中不存在'+expstr real_value=sInput+'中不存在'+expstr ret1=check_result(excelobj, suiteid, caseid,real_value,excelobj.CheckVaule)
依次会校验错误返回码→xml→json→字符串进行校验。
对于错误的结果,发送邮件
mail_from = 'venus@sogou-inc.com' mail_to = maillist timenow = datetime.datetime.utcnow() + datetime.timedelta(hours=8)#东8区增加8小时 title = '【'+interfacename + '_接口测试结果】 '+ timenow.strftime( '%Y-%m-%d %H:%M:%S' ) body = strHtml if count[1] == 0: print 'All Case is OK!' pass else: sendEmail.SendMail(mail_from,mail_to, title, body)
想要源码的同学,请扫码加群,艾特群主获取~
{测试窝原创文章,作者:曹承臻}
作者简介:曹承臻,06届大学本科毕业,数学专业,6年软件测试行业经验。