Commit 0df7e738 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:通过批号获取范围上报数据_前台_批次号无效

parent 7c384965
...@@ -20,7 +20,7 @@ password = commonFuc().get_business_data(module, "password_testtest") ...@@ -20,7 +20,7 @@ password = commonFuc().get_business_data(module, "password_testtest")
cmdc_access_token = CmdcMaiiLogin(username, password).get_token() cmdc_access_token = CmdcMaiiLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token) headers = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token)
# 第二步获取集配模板列表 # 第二步通过批号获取范围上报数据
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url82") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url82")
request_body = commonFuc().get_business_data(module, "payload82") request_body = commonFuc().get_business_data(module, "payload82")
......
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc通过批号获取范围上报数据_前台_批次号无效,00,00-81,sit,be
主数据平台:后台运营系统通过批号获取范围上报数据接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
import requests
import json
module = "cmdc_special_version"
# 第一步登录多采商城获取token
username = commonFuc().get_business_data(module, "username_testtest")
password = commonFuc().get_business_data(module, "password_testtest")
# 获取登录后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, "url81")
request_body = commonFuc().get_business_data(module, "payload81")
"""
场景: 通过批号获取范围上报数据_前台_批次号无效
用例名称:通过批号获取范围上报数据_前台_批次号无效
输出:{"success":false,"code":"ERROR","message":"生产批号:3245234654363656 不存在或已上报"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 将接口响应时间添加至result
result = json.loads(result.content)
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict81")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -473,7 +473,11 @@ checkDict70: {"success":true,"code":"200","message":"OK","data":0} ...@@ -473,7 +473,11 @@ checkDict70: {"success":true,"code":"200","message":"OK","data":0}
#预期结果 #预期结果
checkDict82: {"success":false,"code":"ERROR","message":"产品线不能为空"} checkDict82: {"success":false,"code":"ERROR","message":"产品线不能为空"}
#测试场景81:通过批号获取范围上报数据_前台_批次号无效
"url81": "/order/public/getReport"
"payload81": {"batchNumberList":["3245234654363656"],"companyCode":"00102","customerCode":"1022777","companyName":"国药集团联合医疗器械有限公司","productLineCode":"DS-电商专用"}
#预期结果
checkDict81: {"success":false,"code":"ERROR","message":"生产批号:3245234654363656 不存在或已上报"}
......
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