Commit 1c4f820f authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:空数据导入校验验证_超发配置导入

parent 4ff5a002
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc空数据导入校验验证_超发配置导入,32,32-11,sit,be
主数据平台:后台运营系统超发配置导入接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import random
import requests
import json
import os
module = "cmdc_32st"
# 第一步登录后台运营系统获取token
username = commonFuc().get_business_data(module, "username1_be")
password = commonFuc().get_business_data(module, "password1_be")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers_file", cmdc_access_token)
# 第二步获取商品信息
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url10_1")
request_body = commonFuc().get_business_data(module, "payload10_1")
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
product_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取商品信息
productCode = result["data"]["list"][product_random]["productCode"]
productName = result["data"]["list"][product_random]["productName"]
specifications = result["data"]["list"][product_random]["specifications"]
num = random.randint(1, 5)
# print(productCode)
# 获取文件
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"
# 第三步进行超发配置导入操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url11")
request_body = commonFuc().get_business_data(module, "payload11")
# 获取文件
file = open(file_path, "rb")
files = {"file": file}
"""
场景: 空数据导入校验验证_超发配置导入
用例名称:空数据导入校验验证_超发配置导入
输出:{"success":false,"code":"EXCEL","message":"excel数据内容不能为空","data":null,"freshToken":null}
"""
# 发送请求
result = requests.post(url, files=files, headers=headers, data=request_body)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 将接口响应时间添加至result
result = json.loads(result.content)
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict11")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -107,7 +107,11 @@ checkDict10: {"wholeQuantity":"%s"}
"url10_1": "/product/mall/queryProductInfoByPage"
"payload10_1": {"isFbList":0,"filialeCode":null,"productName":null,"productCode":null,"specifications":null,"materialCode":null,"manufacturer":null,"lineName":null,"riskRank":null,"isRelease":"1","isExistImage":null,"jdeStatus":"P","isGift":"0","description":null,"tbsj":[],"pageNum":1,"pageSize":8,"total":619,"firstQuery":true,"flag":true,"preInvalidStatus":null,"isControlSales":"0","startTime":null,"endTime":null,"status":101}
#测试场景11:空数据导入校验验证_超发配置导入
"url11": "/order/public/supernovaExcel"
"payload11": {"type":"supernova-D"}
#预期结果
checkDict11: {"success":false,"code":"EXCEL","message":"excel数据内容不能为空","data":null,"freshToken":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