Commit 9200afb0 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:查询条件验证_退货单管理

parent 87838941
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc查询条件验证_退货单管理,2294,2294-24,sit,bs
主数据平台:多采商城获取退货单列表接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import datetime
import random
import json
module = "cmdc_trade"
# 第一步登录后台运营系统获取toen信息
username = commonFuc().get_business_data(module, "username1")
password = commonFuc().get_business_data(module, "password1")
# 获取登录后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, "url22")
request_body = commonFuc().get_business_data(module, "payload22")
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
code_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取退货单信息
jde_refund_code = result["data"]["list"][code_random]["jdeRefundCode"]
customer_name = result["data"]["list"][code_random]["customerName"]
manufacturer = result["data"]["list"][code_random]["manufacturer"]
material_code = result["data"]["list"][code_random]["materialCode"]
demand_parent_code = result["data"]["list"][code_random]["demandParentCode"]
start_time = result["data"]["list"][code_random]["submitTime"]
end_time = datetime.datetime.now().strftime("%Y-%m-%d")
# 第三步获取退货单详情
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url23")
request_body = commonFuc().get_business_data(module, "payload23", jde_refund_code,
customer_name, manufacturer, material_code, demand_parent_code, start_time,
end_time)
"""
场景: 查询条件验证_退货单管理
用例名称:查询条件验证_退货单管理
输出:{"jdeRefundCode":"%s"}
"""
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取详情页中的jdeRefundCode
result = json.loads(result.content)
result = {"jdeRefundCode": result["data"]["list"][0]["jdeRefundCode"]}
# 将接口响应时间添加到result
result["api_time"] = api_time
# print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict23", jde_refund_code)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
__author__ = "liguangyu" __author__ = "liguangyu"
""" """
case_tag:cmdc_api,cmdc获取退货单详情,2294,2294-23,sit,bs case_tag:cmdc_api,cmdc获取退货单详情,2294,2294-25,sit,bs
主数据平台:多采商城获取退货单详情接口 主数据平台:多采商城获取退货单详情接口
""" """
......
...@@ -165,9 +165,9 @@ checkDict22: {"success":true,"code":"200","message":"OK"} ...@@ -165,9 +165,9 @@ checkDict22: {"success":true,"code":"200","message":"OK"}
#测试场景二十三:查询条件验证_退货单管理 #测试场景二十三:查询条件验证_退货单管理
"url23": "/order/public/listJdeRefund" "url23": "/order/public/listJdeRefund"
"payload23": {"pageSize":null,"pageStart":null,"total":null} "payload23": {"jdeRefundCode":"%s","customerName":"%s","manufacturer":"%s","materialCode":"%s","demandParentCode":"%s","pageSize":null,"pageStart":null,"total":null,"startTime":"%s","endTime":"%s"}
#预期结果 #预期结果
checkDict23: {"success":true,"code":"200","message":"OK"} checkDict23: {"jdeRefundCode":"%s"}
#测试场景二十四:获取退货单详情 #测试场景二十四:获取退货单详情
......
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