Commit 92dd1aa3 authored by liguangyu06's avatar liguangyu06
Browse files

优化

parent 80f445a0
......@@ -19,32 +19,28 @@ username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
# print(cmdc_access_token)
headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# print(headers)
# 第二步提交创建需求单(代客下单)
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url1")
# print(url)
request_body = commonFuc().get_business_data(module, "payload1")
# print(request_body)
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 第三步在需求单列表查询到已创建的需求单
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url2")
# print(url)
request_body = commonFuc().get_business_data(module, "payload2")
# print(request_body)
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 第四步审核刚刚创建的需求单
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url3")
# print(url)
request_body = commonFuc().get_business_data(module, "payload3")
# print(request_body)
"""
场景:通过代客下单提交创建需求单,并完成审核
用例名称:需求单审核通过
......@@ -53,9 +49,14 @@ request_body = commonFuc().get_business_data(module, "payload3")
# 发送请求
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)
print(result)
if result["success"]:
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict2")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
else:
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict_401")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
......@@ -20,18 +20,14 @@ username = commonFuc().get_business_data(module, "username1")
password = commonFuc().get_business_data(module, "password1")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcMaiiLogin(username, password).get_token()
# print(cmdc_access_token)
headers1 = commonFuc().get_business_data(module, "json_headers1", cmdc_access_token)
# print(headers1)
# 第二步创建并提交需求单
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url4")
# print(url)
request_body = commonFuc().get_business_data(module, "payload4")
# print(request_body)
# 发送请求
result = requests.post(url, json=request_body, headers=headers1)
result = json.loads(result.content)
# print(result)
# 第三步登录后台管理系统
# 获取登录所需账号密码
......@@ -39,25 +35,20 @@ username = commonFuc().get_business_data(module, "username")
password = commonFuc().get_business_data(module, "password")
# 获取登录后Cmdc_access_token
cmdc_access_token = CmdcDoLogin(username, password).get_token()
# print(cmdc_access_token)
headers = commonFuc().get_business_data(module, "json_headers", cmdc_access_token)
# print(headers)
# 第四步在需求单列表查询刚刚创建的需求单
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url2")
# print(url)
request_body = commonFuc().get_business_data(module, "payload2")
print(request_body)
# 发送请求
result = requests.post(url, json=request_body, headers=headers)
result = json.loads(result.content)
# print(result)
# 第五步进行需求单审核处理
url = commonFuc().get_api_url() + commonFuc().get_business_data(module, "url3")
# print(url)
request_body = commonFuc().get_business_data(module, "payload3")
# print(request_body)
"""
场景:通过快速下单入口提交创建需求单,并进行审核通过操作
用例名称:通过快速下单入口提交创建并审核需求单
......@@ -67,8 +58,13 @@ request_body = commonFuc().get_business_data(module, "payload3")
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)
if result["success"]:
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict2")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
else:
# 获取预期结果
check_dict = commonFuc().get_business_data(module, "checkDict_401")
# 断言实际结果中是否包含预期结果的内容
commonFuc().check_result(check_dict, result)
This diff is collapsed.
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