Commit fc296513 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:订单流水新增订单变更记录验证

parent fb71251c
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc订单流水新增订单变更记录验证,33,33-49,sit,be
主数据平台:多采商城订单流水接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
import requests
import json
module = "cmdc_33st"
# 第一步登录多采商城获取token
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, "url46_1")
request_body = commonFuc().get_business_data(module, "payload46_1")
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 获取需求单信息
demandCode = result["data"]["list"][0]["demandCode"]
demandParentCode = result["data"]["list"][0]["demandParentCode"]
AuditCompanyNameCode = result["data"]["list"][0]["sellerCompanyCode"]
# 第四步获取需求单操作流水信息
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url49")
request_body = commonFuc().get_business_data(module, "payload49", demandCode, demandParentCode, AuditCompanyNameCode)
"""
场景: 订单流水新增订单变更记录验证
用例名称:订单流水新增订单变更记录验证
输出:{"content": "客户修改了订单"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取需求单信息
result = json.loads(result.content)
# print(result)
result = {"content": result["data"][1]["content"]}
# 将接口响应时间添加至result
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict49")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -327,7 +327,11 @@ checkDict46: {"quantity":2.0000}
"url46_1": "/order/public/ownListDemand"
"payload46_1": {"sellerCompanyCodes":[],"materialCode":"","productCode":"","productInfoValue":"","manufacturerList":null,"orderNum":"","paymentType":null,"preferenceType":null,"changeSign":null,"mainOrderStatus":2,"shipmentType":null,"stayStatus":null,"closeState":null,"orderSource":null,"pageStart":1,"pageSize":10}
#测试场景49:订单流水新增订单变更记录验证
"url49": "/order/public/getOperationFlow"
"payload49": {"demandCode":"%s","demandParentCode":"%s","AuditCompanyNameCode":"%s"}
#预期结果
checkDict49: {"content": "客户修改了订单"}
......
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