Commit 50856ad7 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:批量上传商品限购规则日志获取

parent a5104ec8
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc批量上传商品限购规则日志获取,2293,2293-044,sit,bs
主数据平台:运营后台管理系统批量上传商品限购规则日志接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import json
module = "cmdc_product"
# 获取登录所需账号密码
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)
# 上传日志获取
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url44")
request_body = commonFuc().get_business_data(module, "payload44")
"""
场景: 批量上传商品限购规则日志获取
用例名称:批量上传商品限购规则日志获取
输出:{"success":true,"code":"200","message":"OK"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict44")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -310,10 +310,18 @@ checkDict42: {"productCode":"%s"}
#预期结果
checkDict43: {"success":true,"code":"200","message":"OK"}
#测试场景四十四:批量上传商品限购规则日志获取
"url44": "/product/productLimitBuy/queryList"
"payload44": {"pageNum":1,"pageSize":10,"total":null}
#预期结果
checkDict44: {"success":true,"code":"200","message":"OK"}
#测试场景四十五:商品限购明细导出验证
"url45": "/product/productLimitBuy/excel"
"payload45": {"productName":null,"productCode":"%s","customerCode":null,"customerName":null,"specifications":null,"filialeCode":null,"productLineName":null,"manufacturer":null,"materialCode":null,"startTime":null,"pageNum":1,"pageSize":8,"total":1}
#预期结果
checkDict45: {"productCode":"%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