使用python怎么自动生成接口测试
使用python怎么自动生成接口测试?针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。
代码如下:
coding=utf-8 fromstringimportTemplate #动态生成单个测试用例函数字符串 defsingleMethodCreate(MethodList,interfaceNamePara): code=Template('''\ndeftest_${testcase}(self): u"""${testcaseName}""" headers=$headers data=$data re=requests.$method(url='$url',headers=headers,data=data) status_code=re.status_code s=str(status_code) json=re.text logging.info('-'*5+'返回状态码是'+s+'-'*5) logging.info('-'*5+'返回结果集是'+json+'-'*5) assertstatus_code==200 assertjson['status']=='ok' ''') string=code.substitute(testcase=MethodList["testcase"],testcaseName=MethodList["TestcaseName"], method=MethodList['method'],url=MethodList['url'],headers=MethodList['headers'],data=MethodList['data'], ) returnstring #拼接单个的测试用例函数字符串为完整字符串并传回主函数 #MethodParaList获取测试用例部分list defmethodCreate(MethodParaList,interfaceNamePara): string="" forMethodParainMethodParaList: string2=singleMethodCreate(MethodPara,interfaceNamePara) string=string+string2 returnstring #构造单个测试集 defsingleTestsuitCreate(MethodList,parameters): code=Template('''suite.addTest(${className}("test_${testcase}"))''') string=code.substitute(testcase=MethodList["testcase"],className=parameters[0]) returnstring #添加测试集 defaddtestsuit(MethodParaList,interfaceNamePara): string="" forMethodParainMethodParaList: string2=singleTestsuitCreate(MethodPara,interfaceNamePara) string=string+string2 returnstring #生成测试用例类函数字符串 defmodelClassCreate(parameters): modelCode=methodCreate(parameters[2],parameters[1]) adtestsuit=addtestsuit(parameters[2],parameters) code=Template('''#coding:utf-8 """ 作者:大石 功能:待执行的接口测试用例 环境:python2.7.6 用法:通过框架自动触发调用 """ importunittest,requests,datetime,sys,logging,BSTestRunner,time,os fromLogimportLog class${className}(unittest.TestCase): u"""待测试接口:${interfaceName}""" defsetUp(self): logging.info('-'*5+"begintest"+"-"*5) deftearDown(self): logging.info('-'*5+"endtest"+'-'*5) ${model} if__name__=="__main__": #解决UnicodeDecodeError:'ascii'codeccan'tdecodebyte0xe5inposition97:ordinalnotinrange(128) reload(sys) sys.setdefaultencoding('utf8') #构造测试集 suite=unittest.TestSuite() ${testsuite} #定义date为日期,time为时间 date=time.strftime("%Y%m%d") time1=time.strftime("%H%M%S") now=time.strftime("%Y-%m-%d-%H_%M_%S",time.localtime(time.time())) #创建路径 path='F:/test/study/yaml/test_log/'+now+"/" #解决多次执行时报路径已存在的错误 try: os.makedirs(path) except: ifpath!=None: logging.error(u'当前路径已经存在') filename=path+'Report.html' fp=file(filename,'wb') #日志记录 Log.log() #执行测试 runner=BSTestRunner.BSTestRunner(stream=fp,title=u'下单平台接口测试用例',description=u'接口用例列表:') runner.run(suite) fp.close() ''') fileStr=code.substitute(className=parameters[0],interfaceName=parameters[1],testsuite=adtestsuit,model=modelCode) f=open(parameters[0]+".py",'w') f.write(fileStr) f.close()
然后测试用例部分如下:
parameters=["Testcase_Orders", "/login", [ {"TestcaseName":"测试登录","method":"post","url":"http://www.senbaba.cn/login","headers":{'content-type':'application/json', 'User-Agent':'Mozilla/5.0(WindowsNT6.1;WOW64;Trident/7.0;rv:11.0)likeGecko', 'Accept':'application/x-ms-application,image/jpeg,application/xaml+xml,image/gif,image/pjpeg,application/x-ms-xbap,*/*', 'Accept-Language':'zh-CN'},"data":{"uname":"187071484771","pwd":"123456"}, "testcase":"login"}, {"TestcaseName":"测试登录","method":"post","url":"http://www.senbaba.cn/login1","headers":{'content-type':'application/json', 'User-Agent':'Mozilla/5.0(WindowsNT6.1;WOW64;Trident/7.0;rv:11.0)likeGecko', 'Accept':'application/x-ms-application,image/jpeg,application/xaml+xml,image/gif,image/pjpeg,application/x-ms-xbap,*/*', 'Accept-Language':'zh-CN'},"data":{"uname":"187071484771","pwd":"123457"}, "testcase":"login_failed"} ] ]
自动生成的测试用例如下:
#coding:utf-8 """ 作者:大石 功能:待执行的接口测试用例 环境:python2.7.6 用法:通过框架自动触发调用 """ importunittest,requests,datetime,sys,logging,BSTestRunner,time,os fromLogimportLog classTestcase_Orders(unittest.TestCase): u"""待测试接口:/login""" defsetUp(self): logging.info('-'*5+"begintest"+"-"*5) deftearDown(self): logging.info('-'*5+"endtest"+'-'*5) deftest_login(self): u"""测试登录""" headers={'Accept-Language':'zh-CN','content-type':'application/json','Accept':'application/x-ms-application,image/jpeg,application/xaml+xml,image/gif,image/pjpeg,application/x-ms-xbap,*/*','User-Agent':'Mozilla/5.0(WindowsNT6.1;WOW64;Trident/7.0;rv:11.0)likeGecko'} data={'uname':'187071484771','pwd':'123456'} re=requests.post(url='http://www.senbaba.cn/login',headers=headers,data=data) status_code=re.status_code s=str(status_code) json=re.text logging.info('-'*5+'返回状态码是'+s+'-'*5) logging.info('-'*5+'返回结果集是'+json+'-'*5) assertstatus_code==200 assertjson['status']=='ok' deftest_login_failed(self): u"""测试登录""" headers={'Accept-Language':'zh-CN','content-type':'application/json','Accept':'application/x-ms-application,image/jpeg,application/xaml+xml,image/gif,image/pjpeg,application/x-ms-xbap,*/*','User-Agent':'Mozilla/5.0(WindowsNT6.1;WOW64;Trident/7.0;rv:11.0)likeGecko'} data={'uname':'187071484771','pwd':'123457'} re=requests.post(url='http://www.senbaba.cn/login1',headers=headers,data=data) status_code=re.status_code s=str(status_code) json=re.text logging.info('-'*5+'返回状态码是'+s+'-'*5) logging.info('-'*5+'返回结果集是'+json+'-'*5) assertstatus_code==200 assertjson['status']=='ok' if__name__=="__main__": #解决UnicodeDecodeError:'ascii'codeccan'tdecodebyte0xe5inposition97:ordinalnotinrange(128) reload(sys) sys.setdefaultencoding('utf8') #构造测试集 suite=unittest.TestSuite() suite.addTest(Testcase_Orders("test_login")) suite.addTest(Testcase_Orders("test_login_failed")) #定义date为日期,time为时间 date=time.strftime("%Y%m%d") time1=time.strftime("%H%M%S") now=time.strftime("%Y-%m-%d-%H_%M_%S",time.localtime(time.time())) #创建路径 path='F:/test/study/yaml/test_log/'+now+"/" #解决多次执行时报路径已存在的错误 try: os.makedirs(path) except: ifpath!=None: logging.error(u'当前路径已经存在') filename=path+'Report.html' fp=file(filename,'wb') #日志记录 Log.log() #执行测试 runner=BSTestRunner.BSTestRunner(stream=fp,title=u'下单平台接口测试用例',description=u'接口用例列表:') runner.run(suite) fp.close()
20171019添加测试集的一个简单方法:
#添加测试集 defaddtestsuit(parameters): string="" temp=Template('''\nsuite.addTest(${className}("test_${testcase}")) ''') l=len(parameters[2]) foriinrange(0,l): testcase1=parameters[2][i]['testcase'] string2=temp.substitute(className=parameters[0],testcase=testcase1) string=string+string2 printstring returnstring
关于使用python怎么自动生成接口测试问题的解答就分享到这里了,希望以上内容可以对大家有一定的帮助,如果你还有很多疑惑没有解开,可以关注恰卡编程网行业资讯频道了解更多相关知识。
推荐阅读
-
Python中怎么动态声明变量赋值
这篇文章将为大家详细讲解有关Python中怎么动态声明变量赋值,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文...
-
python中变量的存储原理是什么
-
Python中怎么引用传递变量赋值
这篇文章将为大家详细讲解有关Python中怎么引用传递变量赋值,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文...
-
python中怎么获取程序执行文件路径
python中怎么获取程序执行文件路径,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的...
-
Python中如何获取文件系统的使用率
Python中如何获取文件系统的使用率,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴...
-
Python中怎么获取文件的创建和修改时间
这篇文章将为大家详细讲解有关Python中怎么获取文件的创建和修改时间,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读...
-
python中怎么获取依赖包
今天就跟大家聊聊有关python中怎么获取依赖包,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据...
-
python怎么实现批量文件加密功能
-
python中怎么实现threading线程同步
小编给大家分享一下python中怎么实现threading线程同步,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!...
-
python下thread模块创建线程的方法
本篇内容介绍了“python下thread模块创建线程的方法”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来...