脚本之家

电脑版
提示:原网页已由神马搜索转码, 内容由www.jb51.net提供.
您的位置:首页网络编程相关技巧→ PostMan自动生成Python测试脚本

PostMan接口测试用例自动转成Python的测试脚本

  更新时间:2024年06月01日 11:20:48  作者:无涯技术博客 
PosMan做服务端的自动化测试中,我们可以把Collection里面的测试用例导入出来,它是JSON的文件,然后我们解析这些JSON文件,让它自动的转成Python测试代码,实现了PostMan里面的接口测试用例自动的转成了Python的测试脚本,而且带了断言

在使用PosMan做服务端的自动化测试中,我们可以把测试用例加到一个Collection中,但是随着测试用例越来越多,以及工作的需求,我们需要把PostMan中的测试用例需要迁移到脚本的方式实现,平常的迁移思路是我们在脚本里面把之前的接口测试用例重新实现,这样相对而言它的成本是比较高的,特别是涉及的自动化测试用例特别多的时候。我们可以把Collection里面的测试用例导入出来,它是JSON的文件,然后我们解析这些JSON文件,让它自动的转成Python测试代码,从而轻松的完成这样的一个过程。被测试的API代码如下:

#!/usr/bin/env python
#!coding:utf-8
from flask import Flask,jsonify
from flask_restful import Api,Resource
app=Flask(__name__)
api=Api(app)
class LoginView(Resource):
def get(self):
return {'status':0,'msg':'ok','data':'this is a login page'}
def post(self):
parser=reqparse.RequestParser()
parser.add_argument('username', type=str, required=True, help='用户名不能为空')
parser.add_argument('password',type=str,required=True,help='账户密码不能为空')
parser.add_argument('age',type=int,help='年龄必须为正正数')
parser.add_argument('sex',type=str,help='性别只能是男或者女',choices=['女','男'])
args=parser.parse_args()
return jsonify(args)
api.add_resource(LoginView,'/login',endpoint='login')
if __name__ == '__main__':
app.run(debug=True)

在PostMan里面创建Collection名称login,里面的接口测试用例具体如下:

服务端测试之PostMan自动生成测试脚本_接口测试

在PostMan里面导出该Collection,命名为login.json,login.json文件的内容为:

{
"info": {
"_postman_id": "982a3108-6710-4a71-aaf8-e62a00d1813c",
"name": "login",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "校验用户名不能为空",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"password\":\"admin\",\n\t\"sex\":\"男\",\n\t\"age\":18\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response": []
},
{
"name": "校验密码不能为空",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"username\":\"wuya\",\n\t\"sex\":\"男\",\n\t\"age\":18\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response": []
},
{
"name": "校验性别参数不是男或者女",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"username\":\"wuya\",\n\t\"password\":\"admin\",\n\t\"sex\":\"asdf\",\n\t\"age\":18\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response": []
},
{
"name": "校验年龄不是正整数",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"username\":\"wuya\",\n\t\"password\":\"admin\",\n\t\"sex\":\"男\",\n\t\"age\":\"rrest\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response": []
},
{
"name": "校验登录成功",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"username\":\"wuya\",\n\t\"password\":\"admin\",\n\t\"sex\":\"男\",\n\t\"age\":\"18\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response": []
}
],
"protocolProfileBehavior": {}
}

本质上而言,它就是一个JSON文件,使用Python文件对它进行反序列化处理成字典数据类型,然后操作字典,这个过程相对来说不难,具体实现的代码如下:

#!/usr/bin/env python
#!coding:utf-8
import requests
import json
import pytest
def operationJson():
'''对login.json文件进行处理'''
return json.load(open('login.json','r'))['item']
@pytest.mark.parametrize('datas',operationJson())
def test_api_login(datas):
'''登录API的校验测试'''
r=requests.request(
method=datas['request']['method'],
url=datas['request']['url']['raw'],
json=json.loads(datas['request']['body']['raw']))
print(json.dumps(r.json(),ensure_ascii=False))
if __name__ == '__main__':
pytest.main(["-s","-v","test_login.py"])

使用Pytest框架的参数化几行代码就可以搞定了,当然断言需要单独的加。这个过程的思路其实非常简单,就是对JSON的文件处理成字典,然后利用Pytest框架的参数化来循环处理。当然可以把JSON文件简单的添加下断言,就更加智能化,添加的内容添加到response的里面内容,对login.json都在里面添加下验证点,完善后的文件内容为:

{
"info": {
"_postman_id": "982a3108-6710-4a71-aaf8-e62a00d1813c",
"name": "login",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "校验用户名不能为空",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"password\":\"admin\",\n\t\"sex\":\"男\",\n\t\"age\":18\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response":
{
"message": {
"username": "用户名不能为空"
}
}
},
{
"name": "校验密码不能为空",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"username\":\"wuya\",\n\t\"sex\":\"男\",\n\t\"age\":18\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response":
{
"message": {
"password": "账户密码不能为空"
}
}
},
{
"name": "校验性别参数不是男或者女",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"username\":\"wuya\",\n\t\"password\":\"admin\",\n\t\"sex\":\"asdf\",\n\t\"age\":18\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response":
{
"message": {
"sex": "性别只能是男或者女"
}
}
},
{
"name": "校验年龄不是正整数",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"username\":\"wuya\",\n\t\"password\":\"admin\",\n\t\"sex\":\"男\",\n\t\"age\":\"rrest\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response":
{
"message": {
"age": "年龄必须为正正数"
}
}
},
{
"name": "校验登录成功",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n\t\"username\":\"wuya\",\n\t\"password\":\"admin\",\n\t\"sex\":\"男\",\n\t\"age\":\"18\"\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "http://localhost:5000/login",
"protocol": "http",
"host": [
"localhost"
],
"port": "5000",
"path": [
"login"
]
}
},
"response":
{
"age": 18,
"password": "admin",
"sex": "男",
"username": "wuya"
}
}
],
"protocolProfileBehavior": {}
}

继续完善测试代码,增加接口的断言,完善后的代码如下:

#!/usr/bin/env python
#!coding:utf-8
import requests
import json
import pytest
def operationJson():
'''对login.json文件进行处理'''
return json.load(open('login.json','r'))['item']
@pytest.mark.parametrize('datas',operationJson())
def test_api_login(datas):
'''登录API的校验测试'''
# print(type(datas['response']))
r=requests.request(
method=datas['request']['method'],
url=datas['request']['url']['raw'],
json=json.loads(datas['request']['body']['raw']))
assert r.json()==datas['response']
if __name__ == '__main__':
pytest.main(["-s","-v","test_login.py"])

执行如上的测试代码,见如下图展示的执行结果信息:

服务端测试之PostMan自动生成测试脚本_自动化测试_02

依据如上,很轻松的实现了PostMan里面的接口测试用例自动的转成了Python的测试脚本,而且带了断言的信息。

到此这篇关于PostMan接口测试用例自动转成Python的测试脚本的文章就介绍到这了,更多相关PostMan自动生成Python测试脚本内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

    • Postman是一款免费的http模拟请求工具,常用来测试开发接口。实际场景中,很多接口是需要授权才能使用,这篇文章主要介绍了用Postman测试需要授权的接口,需要的朋友可以参考下
      2022-06-06
    • 本文主要介绍了Postman设置环境变量的实现示例,文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
      2022-02-02
    • UML建模工具相信大家有所了解,那么你对UML建模工具Visio 、Rational Rose、PowerDesign之间的区别和联系是否了解,这里就像大家简单介绍一下
      2013-02-02
    • 今天是开篇,得要吹一下算法,算法就好比程序开发中的利剑,所到之处,刀起头落
      2013-11-11
    • 计算机的语言具有严格的语法、语义,易于形式化的特征,这篇文章主要介绍了详解文法的定义与分类(编译原理),本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下
      2023-08-08
    • 这篇文章主要介绍了微信小程序下载工具及调试详解的相关资料,需要的朋友可以参考下
      2016-09-09
    • 这篇文章主要介绍了Sublime Text 4怎么安装使用,下载对应的安装包,将该exe文件复制到对应的sublime text的安装目录下(与sublime_text.exe同级),右键管理员运行即可,需要的朋友跟随小编一起看看吧
      2022-01-01
    • 这篇文章主要介绍了快速设置IDEA代码风格为Google风格,使用Google风格format的图文教程,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧
      2020-11-11
    • 超文本传输协议(Hypertext Transfer Protocol,HTTP)是一个简单的请求-响应协议,它通常运行在TCP之上。它指定了客户端可能发送给服务器什么样的消息以及得到什么样的响应。请求和响应消息的头以ASCII形式给出;而消息内容则具有一个类似MIME的格式
      2021-12-12
    • 我们先分析下请求头,看看每次请求都带了那些额外的数据.下面是监控的google的请求头
      2010-05-05

    最新评论