Commit d2046031 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:查询线下支付账号信息验证

parent 2944aedd
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc查询线下支付账号信息验证,2289,2289-32,sit,bs
涉及到接口:多采商城查询线下支付账号信息接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
from common.db.db import mySql
import requests
import json
module = "cmdc_demand_mall"
# 第一步登录多采商城获取token
# 获取登录所需账号密码
username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后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, "url33")
request_body = commonFuc().get_business_data(module, "payload33")
# print(request_body)
"""
场景: 查询线下支付账号信息验证
用例名称:查询线下支付账号信息验证
输出:{"total":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 获取账号数量
result = {"total": result["data"]["total"]}
# 数据库操作
mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 查询数据库中对应公司对应的账号信息
sql = "SELECT t.accountId FROM `cmdc-cms`.cms_account t WHERE companyId = 7"
total = len(mysql_handle.selectSql(host, port, user, pwd, "cmdc-cms", sql))
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict33", total)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -37,8 +37,8 @@ demand_id = result["data"]["list"][random_demand]["demandId"]
# 第三步获取公司id
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url31")
request_body = commonFuc().get_business_data(module, "payload31", demand_id)
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url32")
request_body = commonFuc().get_business_data(module, "payload32", demand_id)
# print(request_body)
"""
场景: 根据需求id获取公司id验证
......@@ -52,7 +52,7 @@ result = json.loads(result.content)
print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict31")
check_dict = commonFuc().get_business_data(module, "checkDict32")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -44,7 +44,6 @@ print(result)
if result["success"]:
# 查询需求单状态
sql = "SELECT t.orderStatus FROM `cmdc-order`.tc_demand t WHERE t.demandId = 40213"
mysql_handle.selectSql(host, port, user, pwd, "cmdc-order", sql)
result = {"orderStatus": mysql_handle.selectSql(host, port, user, pwd, "cmdc-order", sql)[0][0]}
# print(result)
# 获取预期结果
......
......@@ -241,9 +241,17 @@ checkDict30: {"success":true,"code":"200","message":"OK"}
#预期结果
checkDict31: {"success":true,"code":"200","message":"OK"}
#测试场景三十二:根据需求id获取公司id验证
"url32": "/order/mall/getCompanyIdByDemandId"
"payload32": {"demandId":"%s"}
#预期结果
checkDict32: {"success":true,"code":"200","message":"OK"}
#测试场景三十三:查询线下支付账号信息验证
"url33": "/cms/mall/account/queryPageByCompanyId"
"payload33": {"pageSize":9,"pageNumber":1,"companyId":"7","sort":"0200002919200155850"}
#预期结果
checkDict33: {"total":"%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