Commit 4af3c11e authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:欠货管理列表获取合同协议号接口新增合同名称字段验证

parent 49e85ed6
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc欠货管理列表获取合同协议号接口新增合同名称字段验证,33,33-43,sit,be
主数据平台:后台运营系统获取合同协议号接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import json
module = "cmdc_33st"
# # 第一步登录后台运营系统获取token
# username = commonFuc().get_business_data(module, "username_do_be")
# password = commonFuc().get_business_data(module, "password_do_be")
# # 获取登录后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, "url43")
"""
场景: 欠货管理列表获取合同协议号接口新增合同名称字段验证
用例名称:欠货管理列表获取合同协议号接口新增合同名称字段验证
输出:["contractAgreementName"]
"""
# 发送请求
result = requests.get(url)
# 获取接口响应时间
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, "checkDict43")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_variable_exist(check_dict, result["data"][0])
......@@ -2,7 +2,7 @@
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc需求单审核详情合同协议号接口新增合同名称字段验证,33,33-33,sit,be
case_tag:cmdc_api,cmdc需求单审核详情合同协议号接口新增合同名称字段验证,33,33-42,sit,be
主数据平台:后台运营系统获取合同协议号接口
"""
......@@ -20,7 +20,7 @@ password = commonFuc().get_business_data(module, "password_do_be")
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, "url42")
request_body = commonFuc().get_business_data(module, "payload42")
......
......@@ -292,3 +292,30 @@ checkDict41: {"draftDemandCode":"%s"}
"payload42": {"customerCode":"1000086","productLineCode":""}
#预期结果
checkDict42: ["contractAgreementName"]
#测试场景43:欠货管理列表获取合同协议号接口新增合同名称字段验证
"url43": "/user/public/vptihtxyJde/getVptihtxyByPacNo"
#预期结果
checkDict43: ["contractAgreementName"]
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