Commit 3446c743 authored by liguangyu06's avatar liguangyu06
Browse files

用例优化

parent 3f81f254
......@@ -29,43 +29,51 @@ request_body = commonFuc().get_business_data(module, "payload_demand")
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# 数据库操作
mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 频繁创建需求单会创建失败,因此添加了判断
if result["code"] == "200":
# 数据库操作
mysql_handle = mySql()
# 获取conf.ini文件中配置的数据库信息
host, port, user, pwd = mysql_handle.getConf(db="cmdc_db")
# 进行需求单查询
sql = "SELECT t.demandCode FROM `cmdc-order`.tc_demand t ORDER BY createTime DESC LIMIT 101"
demand_code = mysql_handle.selectSql(host, port, user, pwd, "cmdc-order", sql)[0][0]
sql = "UPDATE `cmdc-order`.tc_demand t SET t.orderStatus = 99 WHERE t.demandCode = '{}'".format(demand_code)
mysql_handle.executeUpdate(host, port, user, pwd, "cmdc-order", sql)
# 进行需求单查询
sql = "SELECT t.demandCode FROM `cmdc-order`.tc_demand t ORDER BY demandId DESC LIMIT 1"
demand_code = mysql_handle.selectSql(host, port, user, pwd, "cmdc-order", sql)[0][0]
sql = "UPDATE `cmdc-order`.tc_demand t SET t.orderStatus = 99 WHERE t.demandCode = '{}'".format(demand_code)
mysql_handle.executeUpdate(host, port, user, pwd, "cmdc-order", sql)
# 第二步查询需求单列表中待首营的需求单
url1 = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url1")
request_body1 = commonFuc().get_business_data(module, "payload10")
# 发送请求
result1 = requests.post(url1, json=request_body1, headers=headers)
result1 = json.loads(result1.content)
# print(result1)
# 获取demandId
demand_id = result1["data"]["list"][0]["demandId"]
# 第三步删除操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url")
request_body = commonFuc().get_business_data(module, "payload1", demand_id)
# 第二步查询需求单列表中待首营的需求单
url1 = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url1")
request_body1 = commonFuc().get_business_data(module, "payload10")
# 发送请求
result1 = requests.post(url1, json=request_body1, headers=headers)
result1 = json.loads(result1.content)
# print(result1)
# 获取demandId
demand_id = result1["data"]["list"][0]["demandId"]
print(demand_id)
"""
场景:需求删除
用例名称:需求单删除
输出:{"success":true,"code":"200","message":"OK","data":1,"freshToken":null}
备注:此模块删除为待首营状态下需求单对应的删除图标,非删除按钮
"""
# 第三步删除操作
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url")
request_body = commonFuc().get_business_data(module, "payload1", demand_id)
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict2")
print(check_dict)
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
"""
场景:需求删除
用例名称:需求单删除
输出:{"success":true,"code":"200","message":"OK","data":1,"freshToken":null}
备注:此模块删除为待首营状态下需求单对应的删除图标,非删除按钮
"""
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
print(result)
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict2")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
else:
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict12")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -21,6 +21,8 @@ json_headers1: {
"payload1": {"demandId":"%d","auditStatus":2,"auditRemark":"#未首营平台取消#"}
#预期结果
checkDict2: {"success":true,"code":"200","message":"OK","data":1,"freshToken":null}
checkDict12: {"success":false,"code":"666","message":"请勿重复提交","data":null,"freshToken":null}
#测试场景二:删除不存在的需求单
"payload2": {"demandId":"%d","auditStatus":2,"auditRemark":"#待国药审核#"}
......
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