diff --git "a/air_case/cmdc_demand_list_pc/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244-\344\270\215\346\216\245\345\217\227.air/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244-\344\270\215\346\216\245\345\217\227.py" "b/air_case/cmdc_demand_list_pc/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244-\344\270\215\346\216\245\345\217\227.air/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244-\344\270\215\346\216\245\345\217\227.py" new file mode 100644 index 0000000000000000000000000000000000000000..2dbed1326dc34615c2792a2ec3c46ec488e6be6a --- /dev/null +++ "b/air_case/cmdc_demand_list_pc/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244-\344\270\215\346\216\245\345\217\227.air/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244-\344\270\215\346\216\245\345\217\227.py" @@ -0,0 +1,49 @@ +# -*- 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) diff --git "a/air_case/cmdc_demand_list_pc/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244.air/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244.py" "b/air_case/cmdc_demand_list_pc/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244.air/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244.py" new file mode 100644 index 0000000000000000000000000000000000000000..a19d6504d1580ea0d391c0d0b1e7c93afae2b7d6 --- /dev/null +++ "b/air_case/cmdc_demand_list_pc/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244.air/\351\234\200\346\261\202\345\215\225-\345\256\242\346\210\267\347\241\256\350\256\244.py" @@ -0,0 +1,49 @@ +# -*- 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) diff --git a/data/cmdc_demand_delete/data b/data/cmdc_demand_delete/data index 5d39629796d7d4e6e9e1e6e95c664772e05bb2b4..01ab11d1959d7d89968dd6919b8c7ff44265db4c 100644 --- a/data/cmdc_demand_delete/data +++ b/data/cmdc_demand_delete/data @@ -1,4 +1,4 @@ -#需求单删除接口地址 +#需求单删除接口地址-永久删除 "url": "/order/back/refuseDemand" #需求单列表接口地址 diff --git a/data/cmdc_demand_list_pc/data b/data/cmdc_demand_list_pc/data index 825559af6f30a377d5e6a14a33512f543689bd7e..0d5b2213deedc073d55c437f0f986de435c9db02 100644 --- a/data/cmdc_demand_list_pc/data +++ b/data/cmdc_demand_list_pc/data @@ -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