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.) 如果同时设置了开机密码和管理员密码,则必须输入管理员密码才能访问完整的 ...
随机推荐
- C# Selenium操作指南,关闭黑色CMD窗口/禁用图片/隐藏浏览器等
引用部分:1. 2. 配置部分: ChromeDriverService driverService = ChromeDriverService.CreateDefaultService(); dri ...
- CentOS7优化打开文件句柄数,修改MariaDB允许最大连接数、允许最大插入数据库的数据大小。
修改服务器配置:vim /etc/systemd/system.conf查找并修改下列两行的值:DefaultLimitNOFILE=1024000DefaultLimitNPROC=1024000 ...
- IDEA强制清除Maven缓存
目录 重新导入依赖的常见方式 存在的问题 彻底清除IDEA缓存的方式 重新导入依赖的常见方式 下面图中的刷新按钮,在我的机器上,并不能每次都正确导入pom.xml中写的依赖项,而是导入之前pom.xm ...
- 脚本备份MySQL数据库和binlog日志
用Mysqldump实现全库备份+binlog的数据还原 首先是为mysql做指定库文件的全库备份 vim mysqlbak.sh #!/bin/bash #定义数据库目录,要能找到mysqldump ...
- Android最新版本号与API级别对应关系
Android版本号与API级别对应关系表 名称 版本号 API等级 发布时间 BuildVersion 2012-11-01 BuildVersionCodes.JellyBeanMr1 Jell ...
- OpenLDAP + phpLDAPadmin
一.基础设置 1.1 环境说明 Centos 7.5 openldap 1.2 关闭防火墙和selinux setenforce sed -i 's/SELINUX=enforcing/SELINUX ...
- JSON学习(三)
案例: * 校验注册用户名是否存在 在注册页面,填写完用户名且该栏失去焦点时,前端会进行ajax传输该内容与后台数据库进行比对, 若数据库中没有该用户名,则用户栏后显示“用户名可用”,反之,则显示&q ...
- c#学习笔记2-委托
using System; using System.Collections; using System.Collections.Generic; using System.Linq; using S ...
- 【LEETCODE】64、链表分类,medium&hard级别,题目:2,138,142,23
package y2019.Algorithm.LinkedList.medium; import y2019.Algorithm.LinkedList.ListNode; /** * @Projec ...
- golang 之 jwt-go
主要针对jwt-go快速生成token.和如何取进行介绍,具体详情还请查看 github.com/dgrijalva/jwt-go 生成token package main import ( &quo ...