From b946d4acbcf470812dc8b3578fa36ea16f08a77a Mon Sep 17 00:00:00 2001 From: liguangyu06 <1666071293@qq.com> Date: Wed, 28 Feb 2024 16:10:35 +0800 Subject: [PATCH] =?UTF-8?q?=E7=94=A8=E4=BE=8B=E6=96=B0=E5=A2=9E=EF=BC=9A?= =?UTF-8?q?=E9=87=87=E8=B4=AD=E5=8D=8F=E8=AE=AE=E5=AF=BC=E5=87=BA=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E9=AA=8C=E8=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...37\350\203\275\351\252\214\350\257\201.py" | 62 +++++++++++++++++++ data/cmdc_32st/data | 6 +- 2 files changed, 67 insertions(+), 1 deletion(-) create mode 100644 "air_case/cmdc_32st/\351\207\207\350\264\255\345\215\217\350\256\256\345\257\274\345\207\272\345\212\237\350\203\275\351\252\214\350\257\201.air/\351\207\207\350\264\255\345\215\217\350\256\256\345\257\274\345\207\272\345\212\237\350\203\275\351\252\214\350\257\201.py" diff --git "a/air_case/cmdc_32st/\351\207\207\350\264\255\345\215\217\350\256\256\345\257\274\345\207\272\345\212\237\350\203\275\351\252\214\350\257\201.air/\351\207\207\350\264\255\345\215\217\350\256\256\345\257\274\345\207\272\345\212\237\350\203\275\351\252\214\350\257\201.py" "b/air_case/cmdc_32st/\351\207\207\350\264\255\345\215\217\350\256\256\345\257\274\345\207\272\345\212\237\350\203\275\351\252\214\350\257\201.air/\351\207\207\350\264\255\345\215\217\350\256\256\345\257\274\345\207\272\345\212\237\350\203\275\351\252\214\350\257\201.py" new file mode 100644 index 00000000..346ef42d --- /dev/null +++ "b/air_case/cmdc_32st/\351\207\207\350\264\255\345\215\217\350\256\256\345\257\274\345\207\272\345\212\237\350\203\275\351\252\214\350\257\201.air/\351\207\207\350\264\255\345\215\217\350\256\256\345\257\274\345\207\272\345\212\237\350\203\275\351\252\214\350\257\201.py" @@ -0,0 +1,62 @@ +# -*- encoding=utf8 -*- +__author__ = "liguangyu" + +""" +case_tag:cmdc_api,cmdc采购协议导出功能验证,32,32-6,sit,be +主数据平台:后台运营系统采购协议导出接口 +""" + +from common.common_func import commonFuc +from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin +from common.handle_excel import HandleExcel +import requests +import os + + +module = "cmdc_32st" + +# 第一步登录后台运营系统获取token +username = commonFuc().get_business_data(module, "username1_be") +password = commonFuc().get_business_data(module, "password1_be") +# 获取登录后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, "url6") +request_body = commonFuc().get_business_data(module, "payload6") + +""" + + 场景: 采购协议导出功能验证 + 用例名称:采购协议导出功能验证 + 输出:{"tcdl01":"202401040918001"} +""" + +# 发送请求 +result = requests.post(url, json=request_body, headers=headers) +# 获取接口响应时间 +api_time = float(result.elapsed.total_seconds()) + +# 获取文件 +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" + +# 获取到导出文件存入cmdc_files文件中 +with open(file_path, 'wb') as f: + f.write(result.content) + +# 获取导出文件中采购协议 +excel = HandleExcel(file_path, "Sheet1") +# print(excel.read_data()) +result = {"tcdl01": excel.read_data()[0].get("采购协议")} + +# 将接口响应时间添加至结果中 +result["api_time"] = api_time + +# 获取预期结果 +check_dict = commonFuc().get_business_data(module, "checkDict6") +# print(check_dict) +# 断言实际结果中是否包含预期结果的内容 +commonFuc().check_result(check_dict, result) + diff --git a/data/cmdc_32st/data b/data/cmdc_32st/data index 2da0c1aa..6c0d532a 100644 --- a/data/cmdc_32st/data +++ b/data/cmdc_32st/data @@ -143,7 +143,11 @@ checkDict4: {"success":false,"code":"stock","message":"第2行客户编码或采 #预期结果 checkDict5: {"success":false,"code":"stock","message":"客户编码:1000086对应采购协议重复","data":null,"freshToken":null} - +#测试场景6:采购协议导出功能验证 +"url6": "/product/public/exportPurchaseAgreeExcel" +"payload6": {"stockRuleId":51} +#预期结果 +checkDict6: {"tcdl01":"202401040918001"} -- GitLab