Commit bce2acdb authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:订单提交_审核_待二次审核

parent 933fab8a
No related merge requests found
Showing with 87 additions and 1 deletion
+87 -1
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc订单提交_审核_待二次审核,3000,3000-6,sit,bs
主数据平台:后台运营系统订单提交_审核_待二次审核
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import json
module = "cmdc_scenario"
a = 1
while a <= 20:
# 第一步登录商城进行订单提交
# 登录多采商城获取cmdc_access_token
# 获取登录多采商城所需账号密码
username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后Cmdc_access_token并进行参数化赋值
cmdc_access_token1 = CmdcMaiiLogin(username, password).get_token()
headers_do = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token1)
# 进行订单提交操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url6_1")
request_body = commonFuc().get_business_data(module, "payload6_1")
# 发送请求
result = requests.post(url, json=request_body, headers=headers_do)
result = json.loads(result.content)
# print(result)
# 获取生成订单信息
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)
# 获取后台运营平台登录所需账号密码
username = commonFuc().get_business_data(module, "username_2")
password = commonFuc().get_business_data(module, "password_2")
# 获取登录后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, "url6_2")
request_body = commonFuc().get_business_data(module, "payload6_2", demandId, demandParentId, demandParentCode,
demandCode, demandSkuId1, demandCode, demandId, demandParentId,
demandParentCode,
demandCode, demandSkuId1, demandCode, demandSkuId1, demandCode)
"""
场景: 订单提交_审核_待二次审核
用例名称:订单提交_审核_待二次审核
输出:{"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(demandParentCode)
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict6")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
a = a + 1
This diff is collapsed.
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