Commit 8d9338d4 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent 14c495d5
...@@ -25,57 +25,60 @@ headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_toke ...@@ -25,57 +25,60 @@ headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_toke
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url41") url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url41")
request_body = commonFuc().get_business_data(module, "payload41") request_body = commonFuc().get_business_data(module, "payload41")
# 发送请求 # 发送请求
result = requests.get(url, params=request_body, headers=headers) result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content) result = json.loads(result.content)
# print(result)
# 生成随机数
product_random = random.randint(0, len(result["data"]["list"]) - 1)
# 判断是否获取到商品限购信息
if result["data"]["list"]:
# print(result)
# 生成随机数
product_random = random.randint(0, len(result["data"]["list"]) - 1)
# 此函数用于当x为none时,进行空字符串替换
def func(x):
if x is None:
x = ""
return x
else:
return x
# 此函数用于当x为none时,进行空字符串替换
def func(x):
if x is None:
x = ""
return x
else:
return x
# 获取商品限购信息
product_name = func(result["data"]["list"][product_random]["productName"])
product_code = result["data"]["list"][product_random]["productCode"]
customer_code = func(result["data"]["list"][product_random]["customerCode"])
customer_name = func(result["data"]["list"][product_random]["customerName"])
specifications = func(result["data"]["list"][product_random]["specifications"])
product_line_name = func(result["data"]["list"][product_random]["cpdl01"])
manufacturer = func(result["data"]["list"][product_random]["manufacturer"])
material_code = func(result["data"]["list"][product_random]["materialCode"])
start_time = result["data"]["list"][product_random]["takeEffectTime"] + " 00:00:00"
# 进行查询条件验证操作 # 获取商品限购信息
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url42") product_name = func(result["data"]["list"][product_random]["productName"])
request_body = commonFuc().get_business_data(module, "payload42", product_name, product_code, product_code = result["data"]["list"][product_random]["productCode"]
customer_code, customer_name, specifications, product_line_name, customer_code = func(result["data"]["list"][product_random]["customerCode"])
manufacturer, material_code, start_time) customer_name = func(result["data"]["list"][product_random]["customerName"])
# print(request_body) specifications = func(result["data"]["list"][product_random]["specifications"])
""" product_line_name = func(result["data"]["list"][product_random]["cpdl01"])
manufacturer = func(result["data"]["list"][product_random]["manufacturer"])
material_code = func(result["data"]["list"][product_random]["materialCode"])
start_time = result["data"]["list"][product_random]["takeEffectTime"] + " 00:00:00"
场景: 查询条件验证_商品限购列表 # 进行查询条件验证操作
用例名称:查询条件验证_商品限购列表 url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url42")
输出:{"productCode":"%s"} request_body = commonFuc().get_business_data(module, "payload42", product_name, product_code,
""" customer_code, customer_name, specifications, product_line_name,
manufacturer, material_code, start_time)
# print(request_body)
"""
场景: 查询条件验证_商品限购列表
用例名称:查询条件验证_商品限购列表
输出:{"productCode":"%s"}
"""
# 发送请求 # 发送请求
result = requests.get(url, params=request_body, headers=headers) result = requests.post(url, json=request_body, headers=headers)
# 获取接口响应时间 # 获取接口响应时间
api_time = float(result.elapsed.total_seconds()) api_time = float(result.elapsed.total_seconds())
result = json.loads(result.content) result = json.loads(result.content)
# print(result) # print(result)
# 获取查询结果中商品信息 # 获取查询结果中商品信息
result = {"productCode": result["data"]["list"][0]["productCode"]} result = {"productCode": result["data"]["list"][0]["productCode"]}
result["api_time"] = api_time result["api_time"] = api_time
# 获取预期结果 # 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict42", product_code) check_dict = commonFuc().get_business_data(module, "checkDict42", product_code)
# print(check_dict) # print(check_dict)
# 断言实际结果中是否包含预期结果的内容 # 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result) commonFuc().check_result(check_dict, result)
...@@ -306,7 +306,7 @@ checkDict41: {"success":true,"code":"200","message":"OK"} ...@@ -306,7 +306,7 @@ checkDict41: {"success":true,"code":"200","message":"OK"}
#测试场景四十二:查询条件验证_商品限购列表 #测试场景四十二:查询条件验证_商品限购列表
"url42": "/product/productLimitBuy/listPage" "url42": "/product/productLimitBuy/listPage"
"payload42": {"productName":"%s","productCode":"%s","customerCode":"%s","customerName":"%s","specifications":"%s","productLineName":"%s","manufacturer":"%s","materialCode":"%s","startTime":"%s","pageNum":1,"pageSize":8,"total":null} "payload42": {"productName":"%s","productCode":"%s","customerCode":"%s","customerName":"%s","specifications":"%s","productLineName":"%s","manufacturer":"%s","materialCode":"%s","startTime":"%s","pageNum":1,"pageSize":8,"total":null,"filialeCode": null,"limitType": "0"}
#预期结果 #预期结果
checkDict42: {"productCode":"%s"} checkDict42: {"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