Commit f17f8089 authored by liguangyu06's avatar liguangyu06
Browse files

补充客户确认场景用例

parent 83b15939
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc需求单-客户确认-不接受,2252,2252-2,sit,bs
主数据平台:多彩商城需求单客户确认接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多彩商城登录.多彩商城登录 import CmdcMaiiLogin
import requests
import json
module = "cmdc_demand_list_pc"
# 获取登录所需账号密码
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_headers", cmdc_access_token)
# 获取需求单列表查询待客户确认需求单
url1 = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url1")
request_body = commonFuc().get_business_data(module, "payload50")
# 发送请求
result = requests.post(url1, json=request_body, headers=headers)
result = json.loads(result.content)
demand_parent_id = result["data"]["list"][0]["demandParentId"]
demand_id = result["data"]["list"][0]["demandId"]
# 获取需求单进行客户确认操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url5")
request_body = commonFuc().get_business_data(module, "payload5", demand_parent_id, demand_id)
"""
场景:需求单列表进行客户确认操作
用例名称:需求单客户确认操作
输出:{"success":true,"code":"200","message":"ok","data":null,"freshToken":null}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict5")
print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc需求单-客户确认,2252,2252-2,sit,bs
主数据平台:多彩商城需求单取消接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多彩商城登录.多彩商城登录 import CmdcMaiiLogin
import requests
import json
module = "cmdc_demand_list_pc"
# 获取登录所需账号密码
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_headers", cmdc_access_token)
# 获取需求单列表查询待客户确认需求单
url1 = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url1")
request_body = commonFuc().get_business_data(module, "payload40")
# 发送请求
result = requests.post(url1, json=request_body, headers=headers)
result = json.loads(result.content)
demand_parent_id = result["data"]["list"][0]["demandParentId"]
demand_id = result["data"]["list"][0]["demandId"]
# 获取需求单进行客户确认操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url4")
request_body = commonFuc().get_business_data(module, "payload4", demand_parent_id, demand_id)
"""
场景:需求单列表进行客户确认操作
用例名称:需求单客户确认操作
输出:{"success":true,"code":"200","message":"ok","data":null,"freshToken":null}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict4")
print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
#需求单删除接口地址
#需求单删除接口地址-永久删除
"url": "/order/back/refuseDemand"
#需求单列表接口地址
......
......@@ -52,3 +52,18 @@ json_headers3: {
#预期结果
checkDict3: {"success":true,"code":"200","message":"OK","data":null,"freshToken":null}
#客户确认接受
#客户接受确认接口
"url4": "/order/mall/acceptDemandMain"
"payload40": {"sellerCompanyCodes":[],"materialCode":"","productCode":"","productInfoValue":"","manufacturerList":null,"orderNum":"","paymentType":null,"preferenceType":null,"changeSign":null,"mainOrderStatus":3,"shipmentType":null,"pageStart":1,"pageSize":10}
"payload4": {"demandParentId":"%d","demandId":"%d"}
#预期结果
checkDict4: {"success":true,"code":"200","message":"ok","data":null,"freshToken":null}
#客户不接受确认
#客户不接受确认接口
"url5": "/order/mall/rejectDemandMain"
"payload50": {"sellerCompanyCodes":[],"materialCode":"","productCode":"","productInfoValue":"","manufacturerList":null,"orderNum":"","paymentType":null,"preferenceType":null,"changeSign":null,"mainOrderStatus":3,"shipmentType":null,"pageStart":1,"pageSize":10}
"payload5": {"demandParentId":"%d","demandId":"%d","comment":"客户不接受确认"}
#预期结果
checkDict5: {"success":true,"code":"200","message":"ok","data":null,"freshToken":null}
\ No newline at end of file
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