Commit 2346efb8 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:获取采购协议接口新增合同名称字段验证_查看库存

parent 4af3c11e
...@@ -20,7 +20,7 @@ module = "cmdc_33st" ...@@ -20,7 +20,7 @@ module = "cmdc_33st"
# cmdc_access_token = CmdcDoLogin(username, password).get_token() # cmdc_access_token = CmdcDoLogin(username, password).get_token()
# headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token) # headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# 第二步获取需求单列表 # 第二步进入欠货管理列表
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url43") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url43")
""" """
......
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc获取采购协议接口新增合同名称字段验证_查看库存,33,33-44,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, "url44")
request_body = commonFuc().get_business_data(module, "payload44")
"""
场景: 获取采购协议接口新增合同名称字段验证_查看库存
用例名称:获取采购协议接口新增合同名称字段验证_查看库存
输出:["contractAgreementName"]
"""
# 发送请求
result = requests.get(url, params=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, "checkDict44")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_variable_exist(check_dict, result["data"]["purchaseAgreeByProductCodeSet"][0])
...@@ -20,7 +20,7 @@ password = commonFuc().get_business_data(module, "password_do_be") ...@@ -20,7 +20,7 @@ password = commonFuc().get_business_data(module, "password_do_be")
cmdc_access_token = CmdcDoLogin(username, password).get_token() cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token) headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# 第二步获取需求单列表 # 第二步进入需求单审核页面
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url42") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url42")
request_body = commonFuc().get_business_data(module, "payload42") request_body = commonFuc().get_business_data(module, "payload42")
......
...@@ -298,7 +298,11 @@ checkDict42: ["contractAgreementName"] ...@@ -298,7 +298,11 @@ checkDict42: ["contractAgreementName"]
#预期结果 #预期结果
checkDict43: ["contractAgreementName"] checkDict43: ["contractAgreementName"]
#测试场景44:获取采购协议接口新增合同名称字段验证_查看库存
"url44": "/product/public/getDefaultPurchaseAgreeAndMaterialCodeInventoryCount"
"payload44": {"productCodes":"10145853","companyCode":"00102","customerCode":"1221250","productLineCode":"DS-电商专用"}
#预期结果
checkDict44: ["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