Commit b06d61b5 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:库存上报信息导出验证

parent 9af425db
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc库存上报信息导出验证,2294,2294-42,sit,be
主数据平台:多采商城库存上报信息导出接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
from common.handle_excel import HandleExcel
import random
import requests
import json
import os
module = "cmdc_trade"
# 第一步获取登录多采商城所需账号密码
username = commonFuc().get_business_data(module, "username_be")
password = commonFuc().get_business_data(module, "password_be")
# 获取登录后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, "url38")
request_body = commonFuc().get_business_data(module, "payload38")
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
stock_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取库存上报信息
statistic_year = result["data"]["list"][stock_random]["statisticYear"]
# 第三步进行库存信息导出操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url41")
request_body = commonFuc().get_business_data(module, "payload41", statistic_year)
# print(request_body)
"""
场景: 库存上报信息导出验证
用例名称:库存上报信息导出验证
输出:{"statisticYear":"%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/库存上报明细.xlsx"
# 获取到导出文件存入cmdc_files文件中
with open(file_path, 'wb') as f:
f.write(result.content)
# 获取文件中库存信息所属年份
excel = HandleExcel(file_path, "Sheet1")
# print(excel.read_data())
result = {"statisticYear": excel.read_data()[0].get("所属年度")}
# 将接口响应时间添加至result
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict41", statistic_year)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -272,7 +272,10 @@ checkDict39: {"source":"%s"}
"payload40": {"statisticInvReportId":"%s","inventoryCostAmount":"%s","source":"%s"}
checkDict40: {"inventoryCostAmount":"%s"}
#测试场景四十一:库存上报信息导出验证
"url41": "/cms/public/ls/exportExcel"
"payload41": {"hospInfo":"","source":"","statisticYear":"%s","statisticMonth":"","invoiceCode":"","pageStart":1,"pageSize":10,"type":"10"}
checkDict41: {"statisticYear":"%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