Commit 424bff92 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:附件上传功能验证_代客下单

parent 21d588a8
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc附件上传功能验证_代客下单,2295,2295-92,sit,be
主数据平台:后台运营系统附件上传功能验证_代客下单接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import json
import os
module = "cmdc_order_list"
# 获取登录所需账号密码
username = commonFuc().get_business_data(module, "username_be")
password = commonFuc().get_business_data(module, "password_be")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
headers = commonFuc().get_business_data(module, "json_headers_file_1", cmdc_access_token)
print(headers)
# 获取文件地址
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/test_file.jpg"
# 第二步上传附件
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url92")
print(url)
# 获取文件
file = open(file_path, "rb")
files = {"file": file}
"""
场景: 附件上传功能验证_代客下单
用例名称:附件上传功能验证_代客下单
输出:{"success":true,"code":"200","message":"OK"}
"""
# 发送请求
result = requests.post(url, files=files, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
result = json.loads(result.content)
print(result)
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict92")
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
file.close()
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
"username2": "Admin00102" "username2": "Admin00102"
"password2": "Aa123456" "password2": "Aa123456"
"username_be": "admin2"
"password_be": "@Aa123456"
#后台管理系统headers #后台管理系统headers
json_headers: { json_headers: {
...@@ -22,6 +24,11 @@ json_headers_file: { ...@@ -22,6 +24,11 @@ json_headers_file: {
"Cmdc_access_token": "%s" "Cmdc_access_token": "%s"
} }
json_headers_file_1: {
"Cmdc_access_token": "%s",
"Sourcetype": "mall"
}
#多采商城headers #多采商城headers
json_headers1: { json_headers1: {
"Cmdc_access_token": "%s", "Cmdc_access_token": "%s",
...@@ -617,7 +624,10 @@ checkDict90: {"productInfo":"%s"} ...@@ -617,7 +624,10 @@ checkDict90: {"productInfo":"%s"}
#预期结果 #预期结果
checkDict91: {"productInfo":"%s"} checkDict91: {"productInfo":"%s"}
#测试场景九十二:附件上传功能验证_代客下单
"url92": "/order/mall/demandFileUpload"
#预期结果
checkDict92: {"success":true,"code":"200","message":"OK"}
......
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