Commit 5063eb1d authored by xiao-hesheng's avatar xiao-hesheng
Browse files

优化脚本

parent ecd48223
......@@ -12,7 +12,7 @@ __author__ = "xiaohesheng"
"""
case_tag:api,herp-web,h1产品信息变更_新增 ,id2263,id2263-90,sit,on
内网:h1产品信息变更_新增
内网:h1产品信息变更_新增
"""
from common.common_func import commonFuc
......
......@@ -74,5 +74,3 @@ def test1():
commonFuc().check_text_exist('error', result)
test1()
#利用数据库删除消息通知模板类型
delData().Delete_sys_message_template()
\ No newline at end of file
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
from common.db.sql.sql_del_branch_info import delData
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,o2运维管理_消息通知模板_消息类型_编辑消息类型,id2263,id2263-165,sit,on
内网:o2运维管理_消息通知模板_消息类型_编辑消息类型
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:o2运维管理_消息通知模板_消息类型_编辑消息类型
用例名称:o2运维管理_消息通知模板_消息类型_编辑消息类型
输入:无
输出:"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)
pro_path = commonFuc().get_pro_path()
sys.path.append(pro_path + r'\\air_case\\b2_herp3_bs\\n7运维管理_消息通知模板_消息类型_获取消息模板ID.air')
using(pro_path + r'\\air_case\\b2_herp3_bs\\n7运维管理_消息通知模板_消息类型_获取消息模板ID.air')
from n7运维管理_消息通知模板_消息类型_获取消息模板ID import test1
id1= test1()
print(id1)
#o2运维管理_消息通知模板_消息类型_编辑消息类型
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "message_template_updateById_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"))
# branch_id = FileUtils().r_info(module, '院区新增')["branch_id"]
# str = commonFuc().get_business_data(module, 'data7')
# list2 = list(str.split(","))
# print(list2)
# #获取日期
# date1=timeUtils().get_time_hms(2)
# date2=timeUtils().get_time_hms(2)
# for i in list2:
# #请求体
request_body = commonFuc().get_business_data(module, "payload57_3",id1)
# # # 发送请求
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)
pageSize=commonFuc().analysis_json('pageSize',data)
# print(pageSize)
if code==0 and data==1:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
#利用数据库删除消息通知模板类型
delData().Delete_sys_message_template()
\ No newline at end of file
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