Commit 751ce028 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:获取审核待办历史记录

parent 2e667401
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc获取审核待办历史记录,32,32-23,sit,bs
主数据平台:后台运营系统获取审核待办历史记录接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
from common.db.db import mySql
import requests
import random
import json
module = "cmdc_32st"
# 第一步登录后台运营系统获取token
username = commonFuc().get_business_data(module, "username_102")
password = commonFuc().get_business_data(module, "password_102")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# 第二步获取需求单列表
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url14")
request_body = commonFuc().get_business_data(module, "payload14")
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
demand_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取需求单信息
demandCode = result["data"]["list"][demand_random]["demandCode"]
# demandCode = "17102381921352262"
# 第三步获取审核待办历史记录
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url23")
request_body = commonFuc().get_business_data(module, "payload23", demandCode)
"""
场景: 获取审核待办历史记录
用例名称:获取审核待办历史记录
输出:{"total":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
result = json.loads(result.content)
# print(result)
# 获取获取审核待办历史记录
result = {"total": result["data"]["total"]}
# demandCode = "%17102381921352262%"
# 数据库操作
mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 查询数据库超发记录数量
sql = "SELECT count(t.auditStayId) FROM `cmdc-order`.tc_audit_stay t WHERE demandCode regexp '{}'".format(demandCode)
total = (
mysql_handle.selectSql(host, port, user, pwd, "cmdc-order", sql)[0][0] if mysql_handle.selectSql(host, port, user,
pwd, "cmdc-order",
sql) else 0)
# print(sql)
# print(mysql_handle.selectSql(host, port, user, pwd, "cmdc-order", sql))
# 将接口响应时间添加至result
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict23", total)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -22,6 +22,10 @@
"username1": "admin00111"
"password1": "Aa123456"
#后台运营管理系统登录信息(子站点国联医疗器械有限公司)
"username_102": "Admin00102"
"password_102": "Aa123456"
"username2": "admin"
"password2": "Aa123456"
......@@ -150,7 +154,15 @@ checkDict5: {"success":false,"code":"stock","message":"客户编码:1000086对
checkDict6: {"tcdl01":"202401040918001"}
#测试场景23:获取审核待办历史记录
"url23": "/order/public/auditStay/getHisAuditStayPage"
"payload23": {"demandCode":"%s","pageNum":null,"pageSize":null,"pageStart":null}
#预期结果
checkDict23: {"total":"%s"}
#获取需求列表
"url_demand": "/order/back/listDemand"
"payload_demand": {"times":[null],"firstAuditTimes":[],"firstAuditTimeStart":"","firstAuditTimeEnd":"","listOrderStatus":["102","1021","112","132","103","113","104"],"productName":null,"demandCode":null,"demandParentCode":null,"customerName":null,"manufacturer":null,"materialCode":null,"sellerCompanyName":null,"produceRegisterNum":null,"productLineName":null,"auditByName":null,"orderSource":null,"changeTypeList":null,"isRebateEdit":null,"jdeType":null,"pageSize":10,"pageStart":1,"orderChangeType":null,"snSgin":null,"changeSign":null,"customerCode":null,"distributionType":null,"busCustomerCode":null,"loginName":null,"cancelSign":0,"shipmentType":null,"siteType":null,"siteCompanyCode":null,"groupQuery":0,"promotionTypeList":[],"isGroup":[],"isReplace":null,"stayStatus":null,"closeState":null,"startTime":null}
......
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