Commit e6800bb2 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:获取站点列表

parent 1fc76cf7
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc获取站点列表,2256,2256-1,sit,bs
主数据平台:后台运营系统获取站点列表接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
from common.db.db import mySql
import requests
import json
module = "cmdc_website"
# 第一步登录后台运营系统获取token
username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(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, "url4")
request_body = commonFuc().get_business_data(module, "payload4")
# print(request_body)
"""
场景: 获取站点列表
用例名称:获取站点列表
输出:{"total":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取站点列表站点数量
result = json.loads(result.content)
# print(result)
result = {"total": result["data"]["total"]}
# 将接口响应时间添加至result
result["api_time"] = api_time
# 数据库操作
mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 查询数据库中站点数量
sql = "SELECT count(t.websiteId) FROM `cmdc-cms`.cms_website t WHERE deleteSign = 0 and supplierSign = 0"
total = mysql_handle.selectSql(host, port, user, pwd, "cmdc-order", sql)[0][0]
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict4", total)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -11,24 +11,99 @@ json_headers: { ...@@ -11,24 +11,99 @@ json_headers: {
"Sourcetype": "mall" "Sourcetype": "mall"
} }
#获取站点信息接口地址 #后台管理系统headers
json_headers1: {
"Content-Type": "application/json",
"Cmdc_access_token": "%s"
}
#测试场景1:获取站点信息接口地址
"url1": "/cms/public/website/queryAll" "url1": "/cms/public/website/queryAll"
"payload1": {} "payload1": {}
#预期结果 #预期结果
checkDict1: {"success":true,"code":"200","message":"操作成功"} checkDict1: {"success":true,"code":"200","message":"操作成功"}
#站点切换接口地址 #测试场景2:站点切换接口地址
"url2": "/user/mall/switchWebsite" "url2": "/user/mall/switchWebsite"
"payload2": {"companyId":3,"companyCode":"00103"} "payload2": {"companyId":3,"companyCode":"00103"}
#预期结果 #预期结果
checkDict2: {"success":true,"code":"200","message":"OK","data":null} checkDict2: {"success":true,"code":"200","message":"OK","data":null}
#获取站点商品接口地址 #测试场景3:获取站点商品接口地址
"url3": "/product/mall/queryPcProductInfoByPage" "url3": "/product/mall/queryPcProductInfoByPage"
"payload3": {"filterConditions":[],"ranking":"","searchName":"","pageNum":1,"pageSize":40,"orderBy":"","orderByType":""} "payload3": {"filterConditions":[],"ranking":"","searchName":"","pageNum":1,"pageSize":40,"orderBy":"","orderByType":""}
#预期结果 #预期结果
checkDict3: {"success":true,"code":"200","message":"OK"} checkDict3: {"success":true,"code":"200","message":"OK"}
#登录失败预期结果 #登录失败预期结果
checkDict_401: {"code":"401","message":"Unauthorized","success":false} checkDict_401: {"code":"401","message":"Unauthorized","success":false}
\ No newline at end of file
#测试场景4:获取站点列表
"url4": "/cms/website/queryListPage"
"payload4": {"websiteName":"","orderApportionPrinciple":"","companyName":"","companyType":"","allocationSite":"","pageStart":1,"pageSize":10,"total":10,"pageNumber":1,"pageTotal":0}
#预期结果
checkDict4: {"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