Commit ad1ca50f authored by liguangyu06's avatar liguangyu06
Browse files

采购订单查询接口

parent 5cdf1f53
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:api,cmdc采购单查询,用例集id2250,sit,bs
主数据平台:运营后台管理系统采购单查询接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import json
module = "cmdc_purchase_list"
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url")
print(url)
# 获取登录所需账号密码
username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin("admin2", "FFtmods@365y").get_token()
print(cmdc_access_token)
headers = commonFuc().get_business_data(module, "json_headers1",cmdc_access_token)
print(headers)
request_body = commonFuc().get_business_data(module, "payload1")
print(request_body)
"""
场景:传入正确参数,获取到采购单列表
用例名称:获取需求列表
输出:{"success":true,"code":"200","message":null}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict2")
print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -69,7 +69,7 @@ class commonFuc(object): ...@@ -69,7 +69,7 @@ class commonFuc(object):
elif env == "od": # 骨科 elif env == "od": # 骨科
url = "" url = ""
elif env == "bs": # 电商 elif env == "bs": # 电商
url = "https://service-slb.cmic.com.cn/" url = "https://service-slb.cmic.com.cn"
else: else:
url = 'http://spddev.cmic.com.cn' url = 'http://spddev.cmic.com.cn'
......
#采购单查询接口
"url": "/order/purchase/list"
# 后台运营管理系统登录信息
"username": "admin2"
"password": "FFtmods@365y"
json_headers1: {
"Content-Type": "application/json",
"Cmdc_access_token": "%s"
}
"payload1": {"billNo":"","billStatusList":[],"creator":"","demandNo":"","startTime":"","endTime":"","times":null,"status":null,"pageNumber":1,"pageSize":8}
#预期结果
checkDict2: {"success":true,"code":"200","message":null}
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