Commit 7d95a945 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:获取补货单商品详情

parent 1f6d450c
......@@ -8,7 +8,6 @@ case_tag:cmdc_api,cmdc获取补货单列表,31,31-17,sit,bs
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import random
import requests
import json
......
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc获取补货单商品详情,31,31-29,sit,bs
主数据平台:后台运营系统获取补货单商品详情接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import random
import requests
import json
module = "cmdc_31st"
# 第一步登录后台运营系统获取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)
# 第二步获取欠货综合管理列表_客户查询维度
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url31_1")
request_body = commonFuc().get_business_data(module, "payload31_1")
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 生成随机数
debt_random = random.randint(0, len(result["data"]["debtProductVos"]["list"]) - 1)
# 获取商品信息
customer_code = result["data"]["debtProductVos"]["list"][debt_random]["customerCode"]
distribution_type = result["data"]["debtProductVos"]["list"][debt_random]["distributionType"]
product_code = result["data"]["debtProductVos"]["list"][debt_random]["productCode"]
seller_company_code = result["data"]["debtProductVos"]["list"][debt_random]["sellerCompanyCode"]
shipment_type = result["data"]["debtProductVos"]["list"][debt_random]["shipmentType"]
# 第三步获取补货单商品详情
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url31")
request_body = commonFuc().get_business_data(module, "payload31", customer_code, distribution_type, product_code,
seller_company_code, shipment_type)
"""
场景: 获取补货单商品详情
用例名称:获取补货单商品详情
输出:{"productCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取补货商品信息
result = json.loads(result.content)
result = {"productCode": result["data"][0]["productCode"]}
# print(result)
# 将接口响应时间添加至result
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict31", product_code)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -228,6 +228,42 @@ checkDict29: {"success":true,"code":"200","message":"OK"}
#预期结果
checkDict30: {"productCode":"%s"}
#测试场景三十一:获取补货单商品详情
"url31": "/order/public/replenishmentProductDetails"
"payload31": {"debtMergeVos":[{"customerCode":"%s","distributionType":"%s","productCode":"%s","sellerCompanyCode":"%s","shipmentType":"%s"}]}
#预期结果
checkDict31: {"productCode":"%s"}
#客户查询维度_欠货综合管理
"url31_1": "/order/debtStatementList"
"payload31_1": {"demandCode":"","customerName":"","customerCode":"","demandParentCode":"","lackStatusList":[],"orderMark":"","afterPayStatus":"","sellerCompanyName":"","productLineName":"","materialCode":"","optionStr":"","projectName":"","projectCode":"","paidSearch":[],"auditSearch":[],"createSearch":[],"distributionType":null,"shipmentType":null,"demandSubCode":"","auditByName":"","productCode":"","sortSign":2,"afterPay":0,"debtTabSign":"2","productInfoValue":"","mergeSige":null,"pageStart":1,"pageSize":10}
......
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