Commit 70cc6c0f authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:模糊查询客户信息

parent f0958096
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc模糊查询客户信息,2290,2250-03,sit,bs
主数据平台:运营后台管理系统查询客户信息接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import json
module = "cmdc_order_merge"
# 获取登录所需账号密码
username = commonFuc().get_business_data(module, "username1")
password = commonFuc().get_business_data(module, "password1")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# 设置需要查询的模糊字段
customer_random = "国药"
# 模糊查询客户信息
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url2")
request_body = commonFuc().get_business_data(module, "payload2", customer_random)
"""
场景: 验证模糊查询客户信息接口连通性
用例名称:模糊查询客户信息
输出:{"cusCompanyName":"%s"}
"""
# 发送请求
result = requests.get(url, params=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 获取客户信息中cusCompanyName
result = {"cusCompanyName": result["data"][0]["cusCompanyName"][:2]}
# print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict2", customer_random)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -30,7 +30,11 @@ json_headers1: { ...@@ -30,7 +30,11 @@ json_headers1: {
#预期结果 #预期结果
checkDict1: {"total":"%s"} checkDict1: {"total":"%s"}
#测试场景二:模糊查询客户信息
"url2": "/user/querySubCustomerByReqMsg"
"payload2": {"requestMsg":"%s"}
#预期结果
checkDict2: {"cusCompanyName":"%s"}
......
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