Commit dd372816 authored by liguangyu06's avatar liguangyu06
Browse files

用例新增:列表查询条件验证_红票明细列表

parent c531b7a4
# -*- encoding=utf8 -*-
__author__ = "liguangyu"
"""
case_tag:cmdc_api,cmdc列表查询条件验证_红票明细列表,2295,2295-75,sit,bs
主数据平台:后台运营系统获取红票明细列表接口
"""
from common.common_func import commonFuc
from air_case.cmdc_login.后台管理系统登录.后台管理系统登录 import CmdcDoLogin
import requests
import datetime
import random
import json
module = "cmdc_order_list"
# 第一步登录后台运营系统获取token
username = commonFuc().get_business_data(module, "username2")
password = commonFuc().get_business_data(module, "password2")
# 获取登录后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, "url74")
request_body = commonFuc().get_business_data(module, "payload74")
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 生成随机数
red_random = random.randint(0, len(result["data"]["list"]) - 1)
# 获取红票明细信息
demandParentCode = result["data"]["list"][red_random]["demandParentCode"]
demandCode = result["data"]["list"][red_random]["demandCode"]
customerName = result["data"]["list"][red_random]["customerName"]
orderStatus = result["data"]["list"][red_random]["orderStatus"]
startTime = result["data"]["list"][red_random]["auditTime"][:10] + " 00:00:00"
endTime = str(datetime.datetime.now().strftime("%Y-%m-%d")) + " 23:59:59"
# 第三步进行列表查询条件验证
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url75")
request_body = commonFuc().get_business_data(module, "payload75", demandParentCode, demandCode, customerName,
orderStatus,
startTime, endTime)
"""
场景: 列表查询条件验证_红票明细列表
用例名称:列表查询条件验证_红票明细列表
输出:{"demandCode":"%s"}
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间
api_time = float(result.elapsed.total_seconds())
# 获取查询结果中红票明细信息
result = json.loads(result.content)
result = {"demandCode": result["data"]["list"][0]["demandCode"]}
# 将接口响应时间添加至结果中
result["api_time"] = api_time
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict75", demandCode)
# print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -509,11 +509,15 @@ checkDict70: {"useSign":2}
#测试场景七十四:获取红票明细列表
"url74": "/order/back/findRedTicketDetailsList"
"payload74": {"demandCode":"","customerName":"","customerCode":"","demandParentCode":"","lackStatusList":[],"orderMark":"","sellerCompanyName":"","productLineName":"","materialCode":"","optionStr":"","projectName":"","projectCode":"","paidSearch":[],"auditSearch":[],"createSearch":[],"auditByName":"","productCode":"","distributionType":null,"shipmentType":null,"demandSubCode":"","sortSign":2,"afterPay":0,"debtTabSign":"0","productInfoValue":"","sellerCompanyCode":null,"supplierInfo":"","purchaseStatus":"","mergeSign":null,"pageStart":1,"pageSize":10,"total":null}
"payload74": {"demandParentCode":"","demandCode":"","customerName":"","orderStatus":"","pageStart":1,"pageSize":10}
#预期结果
checkDict74: {"success":true,"code":"200","message":"OK"}
#测试场景七十五:列表查询条件验证_红票明细列表
"url75": "/order/back/findRedTicketDetailsList"
"payload75": {"demandParentCode":"%s","demandCode":"%s","customerName":"%s","orderStatus":"%s","startTime":"%s","endTime":"%s","pageStart":1,"pageSize":10}
#预期结果
checkDict75: {"demandCode":"%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