Commit c6c49fba authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:配货单导出_jde配货列表

parent c5bf867e
......@@ -2,7 +2,7 @@
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc获取jde配货列表,31,31-15,sit,bs
case_tag:cmdc_api,cmdc获取jde配货列表,2295,2295-2,sit,bs
主数据平台:多采商城获取jde配货列表接口
"""
......
......@@ -2,7 +2,7 @@
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc获取需求单列表_后台运营系统,31,31-15,sit,bs
case_tag:cmdc_api,cmdc获取需求单列表_后台运营系统,2295,2295-1,sit,bs
主数据平台:多采商城获取需求单列表接口
"""
......
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc配货单导出_jde配货列表,2295,2295-3,sit,bs
主数据平台:多采商城配货单导出接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
from common.handle_excel import HandleExcel
import requests
import random
import json
import os
module = "cmdc_order_list"
# 第一步登录后台运营系统获取token
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)
# 第二步获取jde配货列表
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url2")
request_body = commonFuc().get_business_data(module, "payload2")
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
dis_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取配货单信息
code = result["data"]["list"][dis_random]["demandCodeStr"]
# 第三步进行配货单导出
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url3")
request_body = commonFuc().get_business_data(module, "payload3", code)
"""
场景: 配货单导出_jde配货列表
用例名称:配货单导出_jde配货列表
输出:{"code":"%s"}
"""
# 发送请求
result = requests.post(url, json=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/jde配货单当前列表.xlsx"
# 获取到导出文件存入cmdc_files文件中
with open(file_path, 'wb') as f:
f.write(result.content)
# 获取导出文件中子需求单
excel = HandleExcel(file_path, "Sheet1")
# print(excel.read_data())
result = {"code": excel.read_data()[0].get("子需求单")}
# 将接口响应时间添加至结果中
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict3", code)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -36,7 +36,11 @@ checkDict1: {"total":"%s"}
#预期结果
checkDict2: {"total":"%s"}
#测试场景三:配货单导出_jde配货列表
"url3": "/order/distributiondsJdeDs/execlExportDetail"
"payload3": {"demandCode":"","distributionJdeDsCode":"","pushType":"","mergeSign":"","customerInfo":"","productCode":"","soCode":"","optionStr":"","materialCode":"","mergeTimeStart":"","mergeTimeEnd":"","submitTimeStart":"","submitTimeEnd":"","auditTimeStart":"","auditTimeEnd":"","mergeCode":"","code":"%s","jdeType":"","times":null,"times2":null,"times3":null,"activityType":"","fieldName":1,"filedSort":2,"isGroup":0,"pageNumber":1,"pageSize":10}
#预期结果
checkDict3: {"code":"%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