Commit badc17ee authored by xiao-hesheng's avatar xiao-hesheng
Browse files

新增接口管理模块脚本

parent 8866439d
...@@ -59,5 +59,4 @@ def test1(): ...@@ -59,5 +59,4 @@ def test1():
else: else:
commonFuc().check_text_exist('error', result) commonFuc().check_text_exist('error', result)
test1() test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delData
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,r_g0接口管理_接口日志_接口日志列表_分页查询,id2263,id2263-263,sit,on
内网:r_g0接口管理_接口日志_接口日志列表_分页查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:r_g0接口管理_接口日志_接口日志列表_分页查询
用例名称:r_g0接口管理_接口日志_接口日志列表_分页查询
输入:""
输出:"rtn_msg": {"code": 0, "msg": null, "data":[]}
"""
# 内网登录
username = commonFuc().get_business_data(module, "username")
## print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token, projectCode, uxid, corpId, info = login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "herpService_interfaceLog_url")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
str = commonFuc().get_business_data(module, 'data7')
list2 = list(str.split(","))
print(list2)
#按接口名称模糊查询
for i in list2:
# # 请求体
request_body = commonFuc().get_business_data(module, "payload64_4",i)
print('request_body', request_body)
# # # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaa', result)
# 断言
code = commonFuc().analysis_json('code', result)
data = commonFuc().analysis_json('data', result)
total = commonFuc().analysis_json('total', result)
pageSize= commonFuc().analysis_json('pageSize', result)
if code == 0 and total >= 1 and pageSize==int(i):
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
...@@ -511,6 +511,7 @@ json_headers2: { ...@@ -511,6 +511,7 @@ json_headers2: {
"payload64_1": {"pageNum":1,"pageSize":200,"queryObject":{"methodCode":"S0102","operType":"restful","startTime":"2024-02-28 00:00:00","endTime":"2024-02-29 23:59:59"}} "payload64_1": {"pageNum":1,"pageSize":200,"queryObject":{"methodCode":"S0102","operType":"restful","startTime":"2024-02-28 00:00:00","endTime":"2024-02-29 23:59:59"}}
"payload64_2": {"pageNum":1,"pageSize":200,"queryObject":{"methodCode":"%s","operType":"restful","startTime":"2024-02-28 00:00:00","endTime":"2024-02-29 23:59:59"}} "payload64_2": {"pageNum":1,"pageSize":200,"queryObject":{"methodCode":"%s","operType":"restful","startTime":"2024-02-28 00:00:00","endTime":"2024-02-29 23:59:59"}}
"payload64_3": {"pageNum":1,"pageSize":200,"queryObject":{"methodCode":"%s","operType":"restful","startTime":"","endTime":""}} "payload64_3": {"pageNum":1,"pageSize":200,"queryObject":{"methodCode":"%s","operType":"restful","startTime":"","endTime":""}}
"payload64_4": {"pageNum":1,"pageSize":"%s","queryObject":{"methodCode":"","operType":"restful","startTime":"","endTime":""}}
......
...@@ -72,9 +72,9 @@ ...@@ -72,9 +72,9 @@
</tr> </tr>
<tr width="600"> <tr width="600">
<td class="details-col-elapsed"><a href='../log/r_f9接口管理_接口日志_接口日志列表_条件查询_异常查询/log.html' target='_blank'>r_f9接口管理_接口日志_接口日志列表_条件查询_异常查询</a></td> <td class="details-col-elapsed"><a href='../log/r_g0接口管理_接口日志_接口日志列表_分页查询/log.html' target='_blank'>r_g0接口管理_接口日志_接口日志列表_分页查询</a></td>
<td class="success">成功</td> <td class="success">成功</td>
<td class="details-col-elapsed">3.521</td> <td class="details-col-elapsed">3.718</td>
<td class="details-col-elapsed">xiaohesheng</td> <td class="details-col-elapsed">xiaohesheng</td>
</tr> </tr>
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment