Commit 8caf476d authored by xiao-hesheng's avatar xiao-hesheng
Browse files

优化脚本

parent e5f122d9
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delByBranchId
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,g2_20调价管理列表_根据产品编号查询,id2263,id2263-81,sit,on
内网:g2_20调价管理列表_根据产品编号查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:g2_20调价管理列表_根据产品编号查询
用例名称:g2_20调价管理列表_根据产品编号查询
输入:无
输出:"rtn_msg": {"code": 0, "msg": null, "data": 1}
"""
#内网登录
username = commonFuc().get_business_data(module, "username")
# # print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token,projectCode,uxid,corpId,info= login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
#g2_20调价管理列表_根据产品编号查询
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "pricePage_url")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
list1=['00000332','一次性使用Y型连接器套件','Y型连接器套件']
# #请求体
for i in list1:
request_body = commonFuc().get_business_data(module, "payload50_8",i)
print(request_body)
# # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaaaaaaaaaa', result)
#断言
# checkDict=commonFuc().get_business_data(module,'checkDict10')
# commonFuc().check_result(checkDict,result)
code=commonFuc().analysis_json('code',result)
data=commonFuc().analysis_json('data',result)
total=commonFuc().analysis_json('total',data)
data1=commonFuc().analysis_json('data',data)
if code>=0 and total>=0:
# print(code)
# GChid=commonFuc().analysis_json('id',data1[0])
# orderNo=commonFuc().analysis_json('orderNo',data1[0])
# print(GChid,orderNo)
commonFuc().check_text_exist(0, result)
# return GChid,orderNo
else:
commonFuc().check_text_exist('error', result)
test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delByBranchId
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,g2_21调价管理列表_根据供应商查询,id2263,id2263-82,sit,on
内网:g2_21调价管理列表_根据供应商查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:g2_21调价管理列表_根据供应商查询
用例名称:g2_21调价管理列表_根据供应商查询
输入:无
输出:"rtn_msg": {"code": 0, "msg": null, "data": 1}
"""
#内网登录
username = commonFuc().get_business_data(module, "username")
# # print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token,projectCode,uxid,corpId,info= login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
#g2_21调价管理列表_根据供应商查询
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "pricePage_url")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
# #请求体
request_body = commonFuc().get_business_data(module, "payload50_9")
print(request_body)
# # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaaaaaaaaaa', result)
#断言
# checkDict=commonFuc().get_business_data(module,'checkDict10')
# commonFuc().check_result(checkDict,result)
code=commonFuc().analysis_json('code',result)
data=commonFuc().analysis_json('data',result)
total=commonFuc().analysis_json('total',data)
data1=commonFuc().analysis_json('data',data)
if code>=0 and total>=0:
# print(code)
# GChid=commonFuc().analysis_json('id',data1[0])
# orderNo=commonFuc().analysis_json('orderNo',data1[0])
# print(GChid,orderNo)
commonFuc().check_text_exist(0, result)
# return GChid,orderNo
else:
commonFuc().check_text_exist('error', result)
test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delByBranchId
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,g2_22调价管理列表_根据供应商查询_异常,id2263,id2263-83,sit,on
内网:g2_22调价管理列表_根据供应商查询_异常
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:g2_22调价管理列表_根据供应商查询_异常
用例名称:g2_22调价管理列表_根据供应商查询_异常
输入:无
输出:"rtn_msg": {"code": 0, "msg": null, "data": 1}
"""
#内网登录
username = commonFuc().get_business_data(module, "username")
# # print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token,projectCode,uxid,corpId,info= login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
#g2_22调价管理列表_根据供应商查询_异常
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "pricePage_url")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
# #请求体
request_body = commonFuc().get_business_data(module, "payload50_10",'aaaaa')
print(request_body)
# # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaaaaaaaaaa', result)
#断言
# checkDict=commonFuc().get_business_data(module,'checkDict10')
# commonFuc().check_result(checkDict,result)
code=commonFuc().analysis_json('code',result)
data=commonFuc().analysis_json('data',result)
total=commonFuc().analysis_json('total',data)
data1=commonFuc().analysis_json('data',data)
if code>=0 and total==0:
# print(code)
# GChid=commonFuc().analysis_json('id',data1[0])
# orderNo=commonFuc().analysis_json('orderNo',data1[0])
# print(GChid,orderNo)
commonFuc().check_text_exist(0, result)
# return GChid,orderNo
else:
commonFuc().check_text_exist('error', result)
test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delByBranchId
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,g2_23调价管理列表_根据状态查询,id2263,id2263-84,sit,on
内网:g2_23调价管理列表_根据状态查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:g2_23调价管理列表_根据状态查询
用例名称:g2_23调价管理列表_根据状态查询
输入:无
输出:"rtn_msg": {"code": 0, "msg": null, "data": 1}
"""
#内网登录
username = commonFuc().get_business_data(module, "username")
# # print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token,projectCode,uxid,corpId,info= login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
#g2_23调价管理列表_根据状态查询
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "pricePage_url")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
list1 = ['6','2','0','5','3','1','4']
# #请求体
for i in list1:
request_body = commonFuc().get_business_data(module, "payload50_11",i)
print(request_body)
# # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaaaaaaaaaa', result)
#断言
# checkDict=commonFuc().get_business_data(module,'checkDict10')
# commonFuc().check_result(checkDict,result)
code=commonFuc().analysis_json('code',result)
data=commonFuc().analysis_json('data',result)
total=commonFuc().analysis_json('total',data)
data1=commonFuc().analysis_json('data',data)
if code==0 and total>=0:
# print(code)
# GChid=commonFuc().analysis_json('id',data1[0])
# orderNo=commonFuc().analysis_json('orderNo',data1[0])
# print(GChid,orderNo)
commonFuc().check_text_exist(0, result)
# return GChid,orderNo
else:
commonFuc().check_text_exist('error', result)
test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delByBranchId
from common.db.sql.sql_del_kind_goodsinfo import delKindGoodsinfo
from common.db.sql.sql_del_notices_info import delByNoticeName
from common.fileUtls import FileUtils
from common.timeUtils import timeUtils
__author__ = "xiaohesheng"
"""
case_tag:api,herp-web,g2_24调价管理列表_根据状态查询_异常,id2263,id2263-85,sit,on
内网:g2_24调价管理列表_根据状态查询_异常
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:g2_24调价管理列表_根据状态查询_异常
用例名称:g2_24调价管理列表_根据状态查询_异常
输入:无
输出:"rtn_msg": {"code": 0, "msg": null, "data": 1}
"""
#内网登录
username = commonFuc().get_business_data(module, "username")
# # print('医院名称',username)
password = commonFuc().get_business_data(module, "password")
# print(username, password,'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa')
# 获取token和projectCode
token,projectCode,uxid,corpId,info= login_system(username, password).get_token()
# print( token,projectCode,uxid,corpId,info)
#g2_24调价管理列表_根据状态查询_异常
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "pricePage_url")
# 获取请求头信息
headers = commonFuc().get_business_data(module, "json_headers2",
commonFuc().get_business_data(module, "json_contentType"), token,
commonFuc().get_business_data(module, "X-APP-CODE"))
list1 = ['a','b','c','d','e','f','g']
# #请求体
for i in list1:
request_body = commonFuc().get_business_data(module, "payload50_11",i)
print(request_body)
# # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('resultaaaaaaaaaaaaaaaaaaaaaaaaaaa', result)
#断言
# checkDict=commonFuc().get_business_data(module,'checkDict10')
# commonFuc().check_result(checkDict,result)
code=commonFuc().analysis_json('code',result)
data=commonFuc().analysis_json('data',result)
total=commonFuc().analysis_json('total',data)
data1=commonFuc().analysis_json('data',data)
if code==1004:
# print(code)
# GChid=commonFuc().analysis_json('id',data1[0])
# orderNo=commonFuc().analysis_json('orderNo',data1[0])
# print(GChid,orderNo)
commonFuc().check_text_exist(1004, result)
# return GChid,orderNo
else:
commonFuc().check_text_exist('error', result)
test1()
......@@ -244,6 +244,10 @@ json_headers2: {
"payload50_5": {"attachments":[{"fileName": "","filePath": ""}],"changeDetails": [{"hosGoodsId": "%s","newValue": 2659,"oldValue": 2658,"supplyProvId": "%s"}],"chgType": "GOODS_COLLECT_CHANGE_PRICE","provId": "p10d95","subProvId":"p10d95","hosId": "h0347","planEffectiveDate": "%s 00:00:00","remark": "","id": "%s","submit": true}
"payload50_6": {"pageNum":1,"pageSize":50,"queryObject":{"orderNo":"","createOrderTimeStart":"","createOrderTimeEnd":""}}
"payload50_7": {"dtos":[{"remark":"22","taskId":"%s"}],"opinion":1}
"payload50_8": {"pageNum":1,"pageSize":50,"orderBy":"mgcm.create_time desc","queryObject":{"startDate":null,"endDate":null,"goodsName":"%s","hosId":"h0347", "tbStatus":"0"}}
"payload50_9": {"pageNum":1,"pageSize":50,"orderBy":"mgcm.create_time desc","queryObject":{"startDate":null,"endDate":null,"goodsName":"","hosId":"h0347","provId":"p10d95"}}
"payload50_10": {"pageNum":1,"pageSize":50,"orderBy":"mgcm.create_time desc","queryObject":{"startDate":null,"endDate":null,"goodsName":"","hosId":"h0347","provId":"%s"}}
"payload50_11": {"pageNum":1,"pageSize":50,"orderBy":"mgcm.create_time desc","queryObject":{"startDate":null,"endDate":null,"goodsName":"","hosId":"h0347","provId":"","tbStatus":"%s"}}
checkDict: {"code": 0,'msg': None,'data': True}
checkDict1: {
......
......@@ -55,9 +55,9 @@
<tr width="600">
<td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>0</td>
<td class='details-col-elapsed'>0分2</td>
<td class="details-col-elapsed">0.0%</td>
<td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>0分1</td>
<td class="details-col-elapsed">100.0%</td>
</tr>
</table>
......@@ -72,9 +72,9 @@
</tr>
<tr width="600">
<td class="details-col-elapsed"><a href='../log/g2_19审批中心_审核通过/log.html' target='_blank'>g2_19审批中心_审核通过</a></td>
<td class="fail">失败</td>
<td class="details-col-elapsed">2.439</td>
<td class="details-col-elapsed"><a href='../log/g2_24调价管理列表_根据状态查询_异常/log.html' target='_blank'>g2_24调价管理列表_根据状态查询_异常</a></td>
<td class="success">成功</td>
<td class="details-col-elapsed">1.338</td>
<td class="details-col-elapsed">xiaohesheng</td>
</tr>
......
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