Commit 89c62c15 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:查询条件验证_欠货商品行信息

parent edb74744
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc查询条件验证_欠货商品行信息,2294,2294-9,sit,bs
主数据平台:多采商城获取欠货商品行信息接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
import random
import requests
import json
module = "cmdc_trade"
# 第一步获取登录多采商城所需账号密码
username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后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, "url6")
request_body = commonFuc().get_business_data(module, "payload6")
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 此函数用于当x为none时,进行空字符串替换
def func(x):
if x is None:
x = ""
return x
else:
return x
# 生成随机数
order_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取订单欠货信息
demand_code = result["data"]["list"][order_random]["demandCode"]
material_code = func(result["data"]["list"][order_random]["productList"][0]["materialCode"])
product_code = result["data"]["list"][order_random]["productList"][0]["productCode"]
# 第三步商品行信息查询条件验证
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url9")
request_body = commonFuc().get_business_data(module, "payload9", demand_code, material_code, product_code)
"""
场景: 查询条件验证_欠货商品行信息
用例名称:查询条件验证_欠货商品行信息
输出:{"productCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 获取商品行信息中商品信息
result = {"productCode": result["data"][0]["productCode"]}
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict9", product_code)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -3,7 +3,7 @@ __author__ = "liguangyu" ...@@ -3,7 +3,7 @@ __author__ = "liguangyu"
""" """
case_tag:cmdc_api,cmdc获取欠货商品行信息,2294,2294-8,sit,bs case_tag:cmdc_api,cmdc获取欠货商品行信息,2294,2294-8,sit,bs
主数据平台:多采商城获取欠货商品行信息接口 主数据平台:多采商城获取欠货商品行信息接口
""" """
from common.common_func import commonFuc from common.common_func import commonFuc
......
...@@ -73,7 +73,11 @@ checkDict7: {"demandCode":"%s"} ...@@ -73,7 +73,11 @@ checkDict7: {"demandCode":"%s"}
#预期结果 #预期结果
checkDict8: {"productCode":"%s"} checkDict8: {"productCode":"%s"}
#测试场景九:查询条件验证_欠货商品行信息
"url9": "/order/mall/queryDebtDetail"
"payload9": {"demandCode":"%s","materialCodes":["%s"],"productCode":"%s","isDebt":1}
#预期结果
checkDict9: {"productCode":"%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