Commit 7af0d2e6 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:发货单据导出验证

parent e0bbd435
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc发货单据导出验证,2294,2294-18,sit,bs
主数据平台:多采商城获取发货单据导出接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
from common.handle_excel import HandleExcel
import requests
import random
import json
import os
module = "cmdc_trade"
# 第一步登录多采商城获取token
# 获取登录所需账号密码
username = commonFuc().get_business_data(module, "username3")
password = commonFuc().get_business_data(module, "password3")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcMaiiLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token)
# 第二步获取发货单物流信息列表
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url11")
request_body = commonFuc().get_business_data(module, "payload11")
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
jde_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取发货单信息
demand_code = result["data"]["list"][jde_random]["demandCode"]
# 第三步发货单据导出操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url19")
request_body = commonFuc().get_business_data(module, "payload19", demand_code)
# print(request_body)
"""
场景: 发货单据导出验证
用例名称:发货单据导出验证
输出:{"demandCode":"%s"}
"""
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取文件
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
file_path = BASE_DIR + "/data/cmdc_files/发货单据列表.xlsx"
# 获取到导出文件存入cmdc_files文件中
with open(file_path, 'wb') as f:
f.write(result.content)
# 获取文件中需求单号
excel = HandleExcel(file_path, "Sheet1")
# print(excel.read_data())
result = {"demandCode": excel.read_data()[0].get("子需求单编号")}
result["api_time"] = api_time
# print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict19", demand_code)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -101,9 +101,6 @@ checkDict11: {"success":true,"code":"200","message":"OK"} ...@@ -101,9 +101,6 @@ checkDict11: {"success":true,"code":"200","message":"OK"}
checkDict12: {"demandParentCode":"%s"} checkDict12: {"demandParentCode":"%s"}
#测试场景十三:获取物流详情 #测试场景十三:获取物流详情
"url13": "/order/public/dde580Detail" "url13": "/order/public/dde580Detail"
"payload13": {"demandParentCode":"%s"} "payload13": {"demandParentCode":"%s"}
...@@ -141,7 +138,11 @@ checkDict17: {"success":false,"code":"500","message":"内部系统错误","data" ...@@ -141,7 +138,11 @@ checkDict17: {"success":false,"code":"500","message":"内部系统错误","data"
#预期结果 #预期结果
checkDict18: {"success":false,"code":"500","message":"内部系统错误","data":null,"freshToken":null} checkDict18: {"success":false,"code":"500","message":"内部系统错误","data":null,"freshToken":null}
#测试场景十九:发货单据导出验证
"url19": "/order/public/export/jde580Jde"
"payload19": {"demandCode":"%s","pageSize":10,"pageStart":1}
#预期结果
checkDict19: {"demandCode":"%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