Commit 8ce1f496 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent d24038ce
......@@ -38,56 +38,58 @@ def func(x):
return x
# 生成随机数
out_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取发货单信息
SDDOCO = func(result["data"]["list"][out_random]["SDDOCO"])
demandCode = result["data"]["list"][out_random]["demandCode"]
sddcto = result["data"]["list"][out_random]["sddcto"]
# 判断是否获取到发货列表
if result["data"]["list"]:
# 生成随机数
out_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取发货单信息
SDDOCO = func(result["data"]["list"][out_random]["SDDOCO"])
demandCode = result["data"]["list"][out_random]["demandCode"]
sddcto = result["data"]["list"][out_random]["sddcto"]
# 第三步获取发货单详情
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url26")
request_body = commonFuc().get_business_data(module, "payload26", demandCode, SDDOCO, sddcto)
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 获取随机数
product_random = random.randint(0, len(result["data"]) - 1)
# 获取商品信息
manufacturer = func(result["data"][product_random]["manufacturer"])
materialCode = func(result["data"][product_random]["materialCode"])
productCode = func(result["data"][product_random]["productCode"])
productName = func(result["data"][product_random]["productName"])
optionStr = func(result["data"][product_random]["optionStr"])
# 第三步获取发货单详情
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url26")
request_body = commonFuc().get_business_data(module, "payload26", demandCode, SDDOCO, sddcto)
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 获取随机数
product_random = random.randint(0, len(result["data"]) - 1)
# 获取商品信息
manufacturer = func(result["data"][product_random]["manufacturer"])
materialCode = func(result["data"][product_random]["materialCode"])
productCode = func(result["data"][product_random]["productCode"])
productName = func(result["data"][product_random]["productName"])
optionStr = func(result["data"][product_random]["optionStr"])
# 第四步进行条件查询
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url28")
request_body = commonFuc().get_business_data(module, "payload28", manufacturer, materialCode, productCode, productName,
optionStr,
demandCode, SDDOCO, sddcto)
# print(request_body)
"""
# 第四步进行条件查询
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url28")
request_body = commonFuc().get_business_data(module, "payload28", manufacturer, materialCode, productCode, productName,
optionStr,
demandCode, SDDOCO, sddcto)
# print(request_body)
"""
场景: 发货商品清单查询条件验证_发货详情
用例名称:发货商品清单查询条件验证_发货详情
输出:{"productCode":"%s"}
"""
场景: 发货商品清单查询条件验证_发货详情
用例名称:发货商品清单查询条件验证_发货详情
输出:{"productCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
result = json.loads(result.content)
# print(result)
# 获取productCode
result = {"productCode": result["data"][0]["productCode"]}
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
result = json.loads(result.content)
# print(result)
# 获取productCode
result = {"productCode": result["data"][0]["productCode"]}
result["api_time"] = api_time
# print(result)
result["api_time"] = api_time
# print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict28", productCode)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict28", productCode)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
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