Commit e614bc98 authored by liguangyu06's avatar liguangyu06
Browse files

优化

parent 9ad94529
...@@ -3,7 +3,7 @@ __author__ = "liguangyu" ...@@ -3,7 +3,7 @@ __author__ = "liguangyu"
""" """
case_tag:cmdc_api,cmdc订单提交_审核_待客户确认,3000,3000-5,sit,bs case_tag:cmdc_api,cmdc订单提交_审核_待客户确认,3000,3000-5,sit,bs
场景验证:订单提交_审核_待客户确认 主数据平台:后台运营系统订单提交_审核_待客户确认
""" """
from common.common_func import commonFuc from common.common_func import commonFuc
...@@ -13,60 +13,63 @@ import requests ...@@ -13,60 +13,63 @@ import requests
import json import json
module = "cmdc_scenario" module = "cmdc_scenario"
a = 20
while a <= 20:
# 第一步登录商城进行订单提交
# 登录多采商城获取cmdc_access_token
# 获取登录多采商城所需账号密码
username = commonFuc().get_business_data(module, "username3")
password = commonFuc().get_business_data(module, "password3")
# 获取登录后Cmdc_access_token并进行参数化赋值
cmdc_access_token1 = CmdcMaiiLogin(username, password).get_token()
headers_do = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token1)
# 第一步登录商城进行订单提交 # 进行订单提交操作
# 登录多采商城获取cmdc_access_token url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url5_1")
# 获取登录多采商城所需账号密码 request_body = commonFuc().get_business_data(module, "payload5_1")
username = commonFuc().get_business_data(module, "username3") # 发送请求
password = commonFuc().get_business_data(module, "password3") result = requests.post(url, json=request_body, headers=headers_do)
# 获取登录后Cmdc_access_token并进行参数化赋值 result = json.loads(result.content)
cmdc_access_token1 = CmdcMaiiLogin(username, password).get_token() # print(result)
headers_do = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token1) # 获取生成订单信息
demandParentId = result["data"]["国药集团联合医疗器械有限公司"]["demandParentId"]
demandParentCode = result["data"]["国药集团联合医疗器械有限公司"]["demandParentCode"]
demandId = result["data"]["国药集团联合医疗器械有限公司"]["demandItems"][0]["demandId"]
demandCode = result["data"]["国药集团联合医疗器械有限公司"]["demandItems"][0]["demandCode"]
demandSkuId1 = result["data"]["国药集团联合医疗器械有限公司"]["demandItems"][0]["demandSkuId"]
# 进行订单提交操作 # print(demandCode)
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url5_1") # 获取后台运营平台登录所需账号密码
request_body = commonFuc().get_business_data(module, "payload5_1") username = commonFuc().get_business_data(module, "username_102")
# 发送请求 password = commonFuc().get_business_data(module, "password_102")
result = requests.post(url, json=request_body, headers=headers_do) # 获取登录后Cmdc_access_token
result = json.loads(result.content) cmdc_access_token = CmdcDoLogin(username, password).get_token()
# print(result) headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# 获取生成订单信息
demandParentId = result["data"]["国药集团联合医疗器械有限公司"]["demandParentId"]
demandParentCode = result["data"]["国药集团联合医疗器械有限公司"]["demandParentCode"]
demandId = result["data"]["国药集团联合医疗器械有限公司"]["demandItems"][0]["demandId"]
demandCode = result["data"]["国药集团联合医疗器械有限公司"]["demandItems"][0]["demandCode"]
demandSkuId1 = result["data"]["国药集团联合医疗器械有限公司"]["demandItems"][0]["demandSkuId"]
# print(demandCode) # 第二步对订单审核操作
# 获取后台运营平台登录所需账号密码 url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url5_2")
username = commonFuc().get_business_data(module, "username_102") request_body = commonFuc().get_business_data(module, "payload5_2", demandId, demandParentId, demandParentCode,
password = commonFuc().get_business_data(module, "password_102") demandCode, demandSkuId1, demandCode, demandId, demandParentId,
# 获取登录后Cmdc_access_token demandParentCode,
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, "url5_2")
request_body = commonFuc().get_business_data(module, "payload5_2", demandId, demandParentId, demandParentCode,
demandCode, demandSkuId1, demandCode, demandId, demandParentId, demandParentCode,
demandCode, demandSkuId1, demandCode, demandSkuId1, demandCode) demandCode, demandSkuId1, demandCode, demandSkuId1, demandCode)
""" """
场景: 订单提交_审核_待客户确认
用例名称:订单提交_审核_待客户确认 场景: 订单提交_审核_待客户确认
输出:{"success":true,"code":"200","message":null,"data":[],"freshToken":null} 用例名称:订单提交_审核_待客户确认
""" 输出:{"success":true,"code":"200","message":"OK"}
# 发送请求 """
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
result = json.loads(result.content)
# print(result)
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict5")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
result = json.loads(result.content)
# print(result)
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict5")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
a = a + 1
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