Commit 3a75ed88 authored by liguangyu06's avatar liguangyu06
Browse files

新增用例:通过Excel复制添加商品接口用例

parent 018def49
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc通过Excel复制添加商品功能验证_结算页面,2288,2288-16,sit,bs
涉及到接口:多采商城通过Excel复制添加商品接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.多采商城登录.多采商城登录 import CmdcMaiiLogin
import requests
import random
import json
module = "cmdc_order_handle"
# 第一步登录多采商城获取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)
# 生成随机数据
random_code = random.randint(0, 10)
product_code = "13977315"
material_code = "00-8800-000-10"
# 第二步通过Excel复制添加商品
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url14")
request_body = commonFuc().get_business_data(module, "payload14", product_code, material_code, random_code)
"""
场景:验证结算页面通过Excel复制添加商品接口连通性
用例名称:通过Excel复制添加商品功能验证_结算页面
输出:{"productCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 获取查询结果中数据
result = {"productCode": result["data"]["data"][0]["productCode"]}
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict14", product_code)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
...@@ -129,7 +129,12 @@ checkDict12: {"data":"%s"} ...@@ -129,7 +129,12 @@ checkDict12: {"data":"%s"}
checkDict13: {"materialCode":"%s"} checkDict13: {"materialCode":"%s"}
#测试场景十四:通过Excel复制添加商品功能验证_结算页面
#接口信息
"url14": "/product/public/listQuickOrderProductExcel"
"payload14": {"queryList":[{"productCode":"%s","materialCode":"%s","quantity":"%s"}],"productLineCode":"","companyCode":"00102","userNo":1068927}
#预期结果
checkDict14: {"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