自动化测试===requests+unittest+postman的接口…
2018-06-17 23:57:04来源:未知 阅读 ()
- postman是一个跨平台的接口测试工具,下载链接在这里:https://www.getpostman.com/
- unittest是一个单元测试框架,python中安装:pip install unittest
- requests是一个发送http请求的库,安装:pip install requests
官方文档:http://docs.python-requests.org/en/master/user/quickstart/,
中文文档:http://docs.python-requests.org/zh_CN/latest/user/quickstart.html
以测试http://www.kuaidi100.com/query 为例:
有一个汇通快递的单号:350757819118
请求的url为http://www.kuaidi100.com/query?type=huitongkuaidi&postid=350757819118
用postman调试接口:
点击右上角的code,如下图:
以python--requests的格式复制:
复制得到的代码如下:
import requests url = "http://www.kuaidi100.com/query" querystring = {"type":"huitongkuaidi","postid":"350757819118"} headers = { 'cache-control': "no-cache", 'postman-token': "9794775a-f3eb-0322-1365-01b775fa9925" } response = requests.request("GET", url, headers=headers, params=querystring) print(response.text)
新建py文件,命名为kuaidi.py,对复制的代码稍作调整:
import requests import unittest class KuaiDi(unittest.TestCase): def test_huitong_api(self): url = "http://www.kuaidi100.com/query" querystring = {"type":"huitongkuaidi","postid":"350757819118"} headers = { 'cache-control': "no-cache", 'postman-token': "9794775a-f3eb-0322-1365-01b775fa9925" } response = requests.request("GET", url, headers=headers, params=querystring).json() #print(response) self.assertEqual(response['status'],'200') #断言 self.assertEqual(response['message'],'ok') #断言 if __name__ == '__main__': unittest.main()
运行结果:
举例测试:
import requests import json import unittest import time from HTMLTestRunner import HTMLTestRunner class MyTest(unittest.TestCase): def setUp(self): print("[+]start") def tearDown(self): print("[+]end") def zhongtong(self,type = "zhongtong", id = "719857434111"): self.url = "http://www.kuaidi100.com/query" self.params = { "type":type, "postid":id } self.headers={'user-agent': 'my-app/0.0.1'} r = requests.get(url = self.url, params = self.params , headers = self.headers) print(r.status_code) return r class ExpressInquiry(MyTest): def test001_type_valid(self): print("00001") zhongtong = self.zhongtong(type = "shentong") self.assertIn("快递公司参数异常",zhongtong.text) def test002_type_invalid(self): print("00002") zhongtong = self.zhongtong(type = "sssssssssssss") self.assertIn("参数错误",zhongtong.text) def test003_id_valid(self): print("00003") id = self.zhongtong(id = "719857434155") self.assertIn("交通工程学院菜鸟驿站",id.text) def test004_id_invalid(self): print("00004") id = self.zhongtong(id = "123") self.assertIn("参数错误",id.text) def test005_type_id_invalid(self): print("00005") type_and_id = self.zhongtong(type = "dads",id = "7777") #print(type_and_id.url) #print(type_and_id.text) self.assertIn("参数错误",type_and_id.text) def test006_type_id_null(self): print("00006") null = self.zhongtong(type = "", id = "") #print(null.url) #print(null.text) self.assertIn("参数错误",null.text) def suite(): now = time.strftime("%Y-%m-%d %H_%M_%S") filename = './' + now + 'test_result.html' fp = open(filename,'wb') runner = HTMLTestRunner(stream = fp, title = "快递查询接口测试报告", description = "测试用例执行情况:") suite = unittest.TestSuite() suite.addTest(ExpressInquiry("test001_type_valid")) suite.addTest(ExpressInquiry("test002_type_invalid")) suite.addTest(ExpressInquiry("test003_id_valid")) suite.addTest(ExpressInquiry("test004_id_invalid")) suite.addTest(ExpressInquiry("test005_type_id_invalid")) suite.addTest(ExpressInquiry("test006_type_id_null")) #unittest.TextTestRunner().run(suite) runner.run(suite) fp.close() if __name__ == '__main__': #unittest.main(exit = False , verbosity = 2) #它是全局方法,把它屏蔽后,不在suite的用例就不会跑,exit = False表示中间有用例失败也继续执行;还有比较常用的verbosity=2,表示显示def名字 suite()
总结:
postman可以帮助完成一半的工作
unittest+requests可以实现断言,方便持续集成
参考资料:
http://www.testclass.net/interface/first_case/
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Python单元测试笔记 2019-08-13
- Python sklearn拆分训练集、测试集及预测导出评分 决策树 2019-08-13
- linux安装 uwsgi 测试 test.py 不显示hello world 的解决办 2019-08-13
- python自动化测试之DDT数据驱动 2019-07-24
- python+selenium实现自动化百度搜索关键词 2019-07-24
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash