unittest管理接口用例
1.加入unittest框架
#coding=utf-8
import requests
import unittest
class TestApi(unittest.TestCase):
def setUp(self):
self.apiurl = "http://www.xxxxx.com/customer/login.html"
self.header = {"Cookie": "mediav=%7B%22eid%22%3A%22470884%22%2C%22ep%22%3A%22%22%2C%22vid%22%3A%22%40-vC_Waqh_%3AU%234K75o%5B!%22%2C%22ctn%22%3A%22%22%7D"}
self.timeout = 1
def testlogin01(self):
body = {"loginName":17779828888,"loginPwd":"zy123456"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
":
pass
else:
raise ValueError
def testlogin02(self):
body = {"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
if response.json()["errorMsg"] == u"用户或者密码错误":
pass
else:
raise ValueError
def testlogin03(self):
body = {"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
if response.json()["errorMsg"] == u"用户或者密码错误":
pass
else:
raise ValueError
def testlogin04(self):
body = {"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
if response.json()["errorMsg"] == u"用户名不能为空":
pass
else:
raise ValueError
def testlogin05(self):
body = {"loginName":17779828888,"loginPwd":""}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
if response.json()["errorMsg"] == u"用户密码不能为空":
pass
else:
raise ValueError
if __name__ == '__main__':
unttest.main()
2.生成测试报告
#coding=utf-8
import requests
import unittest
import HTMLTestRunner
class TestApi(unittest.TestCase):
def setUp(self):
self.apiurl = "http://www.xxxxx.com/customer/login.html"
self.header = {"Cookie": "mediav=%7B%22eid%22%3A%22470884%22%2C%22ep%22%3A%22%22%2C%22vid%22%3A%22%40-vC_Waqh_%3AU%234K75o%5B!%22%2C%22ctn%22%3A%22%22%7D"}
self.timeout = 1
def testlogin01(self):
body = {"loginName":17779828888,"loginPwd":"zy123456"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
":
pass
else:
raise ValueError
def testlogin02(self):
body = {"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
if response.json()["errorMsg"] == u"用户或者密码错误":
pass
else:
raise ValueError
def testlogin03(self):
body = {"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
if response.json()["errorMsg"] == u"用户或者密码错误":
pass
else:
raise ValueError
def testlogin04(self):
body = {"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
if response.json()["errorMsg"] == u"用户名不能为空":
pass
else:
raise ValueError
def testlogin05(self):
body = {"loginName":17779828888,"loginPwd":""}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
if response.json()["errorMsg"] == u"用户密码不能为空":
pass
else:
raise ValueError
if __name__ == '__main__':
suit = unittest.TestSuite()
testcases = [TestApi("testlogin01"),TestApi("testlogin02"),TestApi("testlogin03"),
TestApi("testlogin04"),TestApi("testlogin05")]
suit.addTests(testcases)
dir = "D:\\testapi.html"
path = open(dir,"wb")
runner = HTMLTestRunner.HTMLTestRunner(stream=path,title="TestReport",description="TestDesc")
runner.run(suit)
path.close()
3.断言
- if ... else ... 如上代码
- try ... except ...
#coding=utf-8
import requests
import unittest
class TestApi(unittest.TestCase):
def setUp(self):
self.apiurl = "http://www.xxxx.com/customer/login.html"
self.header = {"Cookie": "mediav=%7B%22eid%22%3A%22470884%22%2C%22ep%22%3A%22%22%2C%22vid%22%3A%22%40-vC_Waqh_%3AU%234K75o%5B!%22%2C%22ctn%22%3A%22%22%7D"}
self.timeout = 1
def testlogin01(self):
body = {"loginName":17779828888,"loginPwd":"zy295240???"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
try:
result = response.json()["values"]["loginName"]
":
pass
else:
raise ValueError
except:
print ("testlogin01 error!")
else:
print ("testlogin01 ok!")
if __name__ == '__main__':
unittest.main()
- unttest 中 assert断言方式
#coding=utf-8
import requests
import unittestclass TestApi(unittest.TestCase):
def setUp(self):
self.apiurl = "http://www.xxxx.com/customer/login.html"
self.header = {"Cookie": "mediav=%7B%22eid%22%3A%22470884%22%2C%22ep%22%3A%22%22%2C%22vid%22%3A%22%40-vC_Waqh_%3AU%234K75o%5B!%22%2C%22ctn%22%3A%22%22%7D; "}
self.timeout = 1
def testlogin01(self):
body = {"loginName":17779828888,"loginPwd":"zy123456"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
phone = response.json()["values"]["loginName"]
self.assertEqual(phone,",msg="testlogin01 error!")
def testlogin02(self):
body = {"loginName":17779828881,"loginPwd":"zy123456"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
errorMsg = response.json()["errorMsg"]
self.assertNotEqual(errorMsg,u"成功",msg="testlogin02 error!")
def testlogin03(self):
body = {"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
errorMsg = response.json()["errorMsg"]
self.assertIn(u"密码错误",errorMsg,msg="testlogin03 error!")
def testlogin04(self):
body = {"}
response = requests.post(url=self.apiurl,data=body,headers=self.header,timeout=self.timeout)
errorMsg = response.json()["errorMsg"]
self.assertNotIn(u"密码错误",errorMsg,msg="testlogin04 error!")
if __name__ == '__main__':
unittest.main()
unittest管理接口用例的更多相关文章
- unittest管理接口用例(数据分离-读取excel)
1.简单读取 #coding=utf-8 #调用封装好的excel读取公共方法 from python_API.common.ReadExcel import ReadExcel import req ...
- unittest 管理接口用例(数据分离-读取excel)
1.公共模块 ---> login.xls """ common (package) ---> ReadFile.py """ ...
- requests,unittest——多接口用例,以及需要先登录再发报的用例
之前写过最简单的接口测试用例,本次利用unittest进行用例管理,并出测试报告,前两个用例是两个不同网页的get用例,第三个是需要登录才能访问的网页A,并在其基础上访问一个需要在A页面点开链接才能访 ...
- python web自动化测试框架搭建(功能&接口)——接口用例实现
测试用例基类: # coding=utf-8 import unittest import Logger log = Logger.Loger() class BaseCase(unittest.Te ...
- python3+requests+unittest:接口自动化测试(一)
转载请表明出处:https://www.cnblogs.com/shapeL/p/9179484.html 简单介绍框架的实现逻辑,参考代码的git地址: https://github.com/zha ...
- python脚本实现接口自动化轻松搞定上千条接口用例
接口自动化目前是测试圈主流的一个话题,我也在网上搜索了很多关于自动化的关键词,大多数博主分享的python做接口自动化都是以开源的框架,比如:pytest.unittest+ddt(数据驱动) 最常见 ...
- python学习笔记(28)-unittest单元测试-执行用例
执行用例 #写一个测试类 import unittest import HTMLTestRunnerNew #写好的模块可以直接调用 #import HTMLTest #测试报告模板 from cla ...
- C#开发微信门户及应用(23)-微信小店商品管理接口的封装和测试
在上篇<C#开发微信门户及应用(22)-微信小店的开发和使用>里面介绍了一些微信小店的基础知识,以及对应的对象模型,本篇继续微信小店的主题,介绍其中API接口的封装和测试使用.微信小店的相 ...
- Lenovo System x3650 设置管理接口地址
1.开启服务器. 2.显示<F1> Setup提示后,按 F1.(此提示在屏幕上仅显示几秒钟.必须迅速按 F1.) 如果同时设置了开机密码和管理员密码,则必须输入管理员密码才能访问完整的 ...
随机推荐
- CentOS 7 卸载OpenJdk安装Oracle Jdk1.8
CentOS 7 卸载OpenJdk安装Oracle Jdk1.81.查询openjdk:rpm -qa | grep jdk2.卸载OpenJdkrpm -e --nodeps 查询到的结果3.安装 ...
- Cassandra开发入门文档第三部分(非规范化关系结构、批处理)
非规范化关系结构 第二部分我们讲了复合主键,这可以灵活的解决主从关系,也即是一对多关系,那么多对多关系呢?多对多关系的数据模型应该回答两个问题: 我跟着谁? 谁跟着我? -- 建表,我们发现这里有个不 ...
- jQuery 标单验证
jQuery Validate jQuery Validate 插件为表单提供了强大的验证功能,让客户端表单验证变得更简单,同时提供了大量的定制选项,满足应用程序各种需求.该插件捆绑了一套有用的验证方 ...
- iOS - 使用SDWebImage缓存图片,MJPhotoBrowser展示图片的问题
需求:在项目中,使用WKWebView加载html的富文本,只点击图片的时候展示图片,其他的不显示 问题:第一次点击用SDWebImage,不加载网络图片,以后再点击可以正常显示图片,SDWebIma ...
- 【loj6538】烷基计数 加强版 加强版 Burnside引理+多项式牛顿迭代
别问我为啥突然刷了道OI题,也别问我为啥花括号不换行了... 题目描述 求含 $n$ 个碳原子的本质不同的烷基数目模 $998244353$ 的结果.$1\le n\le 10^5$ . 题解 Bur ...
- idea 模糊搜索 ctrl + f(单词不完整搜索不到的解决办法)
1,现象描述,笔者在用 idea 的 ctrl + f 搜索文件的内容时,发现了很神奇的问题,就是字符串必须输入完整才能搜索到,输入一半,哪怕是个字母输入了9个也搜不到 2,可以发现,就差一个字母 h ...
- 1-1docker加速器
配置加速器 #编译配置 sudo vim /etc/docker/daemon.json #加入下面的数据 { "registry-mirrors": ["https:/ ...
- SignalR 填坑记
1.发送文字消息没有问题,如何发送文件消息 SignalR可以将参数序列化和反序列化. 这些参数被序列化的格式叫做Hub 协议, 所以Hub协议就是一种用来序列化和反序列化的格式. Hub协议的默认协 ...
- 待补充 MySQL必知必会第29章--------数据库维护
备份数据 由于MySQL数据库是基于磁盘的文件,普通的备份系统和里程就能备份MySQL的数据.但是,由于这些文件总是处于打开和使用状态,普通的文件副本备份不一定总是生效.
- 使用事件和 CQRS 重写 CRUD 系统
使用事件和 CQRS 重写 CRUD 系统 https://msdn.microsoft.com/zh-cn/magazine/mt790196.aspx https://github.com/mem ...