Commit ad87a1c7 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:收货地址批量导入_代客下单

parent cb55c02c
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc收货地址批量导入_代客下单,2295,2295-45,sit,bs
主数据平台:后台运营系统收货地址批量导入接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
from common.handle_excel import HandleExcel
from common.db.db import mySql
import requests
import json
import os
import uuid
module = "cmdc_order_list"
# 第一步登录后台运营系统获取token
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_file", cmdc_access_token)
# 获取文件
BASE_DIR = os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
file_path = BASE_DIR + "/data/cmdc_files/批量导入收货地址模板.xlsx"
# 生成随机数
uuid_random = str(uuid.uuid4())[:8]
# 将收货地址写入文件中
excel = HandleExcel(file_path, "Sheet1")
excel.write_data(row=2, column=1, value=uuid_random)
excel.write_data(row=2, column=2, value="18800000000")
excel.write_data(row=2, column=3, value=uuid_random)
# 第二步收货地址批量导入
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url46")
request_body = commonFuc().get_business_data(module, "payload46")
# 获取文件
file = open(file_path, "rb")
files = {"file": file}
"""
场景:收货地址批量导入_代客下单
用例名称:收货地址批量导入_代客下单
输出:{"userId":"32"}
"""
# 发送请求
result = requests.post(url, files=files, headers=headers, data=request_body)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
file.close()
# 数据库操作
mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 查询数据库中收货地址信息
sql = "SELECT t.userId FROM `cmdc-user`.cmdc_address t " \
"WHERE address = '{}' and receiverName = '{}' and deleteSign = 0".format(uuid_random, uuid_random)
# print(sql)
result = {"userId": mysql_handle.selectSql(host, port, user, pwd, "cmdc-user", sql)[0][0]}
# 将接口响应时间添加至result
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict46")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
""" """
case_tag:cmdc_api,cmdc收货地址批量导入空数据_代客下单,2295,2295-46,sit,bs case_tag:cmdc_api,cmdc收货地址批量导入空数据_代客下单,2295,2295-46,sit,bs
......
...@@ -319,7 +319,11 @@ checkDict44: {"success":true,"code":"200","message":"OK","data":false} ...@@ -319,7 +319,11 @@ checkDict44: {"success":true,"code":"200","message":"OK","data":false}
#预期结果 #预期结果
checkDict45: {"success":false,"code":"5000070","message":"1,0,1","data":null,"freshToken":null} checkDict45: {"success":false,"code":"5000070","message":"1,0,1","data":null,"freshToken":null}
#测试场景四十六:收货地址批量导入_代客下单
"url46": "/user/public/importAddress"
"payload46": {"type":2,"userId":"32"}
#预期结果
checkDict46: {"userId":"32"}
......
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