Commit d8d646f7 authored by xiao-hesheng's avatar xiao-hesheng
Browse files

基础设置模块-运维管理脚本

parent 9e2926d4
...@@ -53,8 +53,13 @@ def test1(): ...@@ -53,8 +53,13 @@ def test1():
data=commonFuc().analysis_json('data',result) data=commonFuc().analysis_json('data',result)
total=commonFuc().analysis_json('total',data) total=commonFuc().analysis_json('total',data)
data1=commonFuc().analysis_json('data',data) data1=commonFuc().analysis_json('data',data)
if code==0 and total>=0: if code==0 and total==0:
commonFuc().check_text_exist(0, result) commonFuc().check_text_exist(0, result)
elif total>=1:
# print('data1',data1)
id1=commonFuc().analysis_json('id',data1[0])
# print(id1)
return id1
else: else:
commonFuc().check_text_exist('error', result) commonFuc().check_text_exist('error', result)
test1() test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
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,i7运维管理_院区配置新增列表查询,id2263,id2263-104,sit,on
内网:i7运维管理_院区配置新增列表查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:i6运维管理_院区配置列表查询
用例名称:i6运维管理_院区配置列表查询
输入:无
输出:"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)
#i6运维管理_院区配置列表查询
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "mcmsParamConfig_page_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"]
# #请求体
request_body = commonFuc().get_business_data(module, "payload51_12")
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:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
# -*- encoding=utf8 -*-
import sys
from airtest.core.helper import using
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,i8运维管理_院区配置新增参数,id2263,id2263-105,sit,on
内网:i8运维管理_院区配置新增参数
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:i8运维管理_院区配置新增参数
用例名称:i8运维管理_院区配置新增参数
输入:无
输出:"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)
#i6运维管理_院区配置列表查询
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "sysConfig_insert_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"]
# #请求体
request_body = commonFuc().get_business_data(module, "payload51_14")
request_body="["+str(request_body)+"]"
print(request_body)
import json
new_request_body = request_body.replace("'", '"')
print(new_request_body)
request_body_json = json.loads(new_request_body)
# # # 发送请求
result = commonFuc().http_post(url, request_body_json, 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 data==1:
commonFuc().check_text_exist(0, result)
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 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,i9运维管理_院区配置修改参数,id2263,id2263-106,sit,on
内网:i9运维管理_院区配置修改参数
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:i9运维管理_院区配置修改参数
用例名称:i9运维管理_院区配置修改参数
输入:无
输出:"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)
#i6运维管理_院区配置列表查询
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "sysConfig_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"]
pro_path = commonFuc().get_pro_path()
sys.path.append(pro_path + r'\\air_case\\b2_herp3_bs\\i6运维管理_院区配置列表查询.air')
using(pro_path + r'\\air_case\\b2_herp3_bs\\i6运维管理_院区配置列表查询.air')
from i6运维管理_院区配置列表查询 import test1
id1= test1()
print(id1)
# #请求体
request_body = commonFuc().get_business_data(module, "payload51_15", 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)
total=commonFuc().analysis_json('total',data)
data1=commonFuc().analysis_json('data',data)
if code==0 and data==1:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
#
delData().Delete_sys_config()
\ No newline at end of file
...@@ -29,5 +29,18 @@ class delData(object): ...@@ -29,5 +29,18 @@ class delData(object):
cursor.execute("commit;") cursor.execute("commit;")
print('产品调价和产品信息变更数据已删除成功') print('产品调价和产品信息变更数据已删除成功')
cursor.close() cursor.close()
def Delete_sys_config(self):
connection = pymysql.connect(host="10.17.65.108", user="root", password="Cmic.2023", database="spd3_herp_test2",
charset="utf8")
cursor = connection.cursor()
# 删除产品信息修改数据
sql = "delete from sys_config where create_user = 'UID-050151';"
print(sql)
cursor.execute(sql)
cursor.execute("commit;")
print('院区参数信息已经删除成功 ')
cursor.close()
# delData().Delete_branch_by_id() # delData().Delete_branch_by_id()
# delData().Delete_goods_change_info() # delData().Delete_goods_change_info()
\ No newline at end of file # delData().Delete_sys_config()
\ No newline at end of file
...@@ -41,6 +41,9 @@ ...@@ -41,6 +41,9 @@
"baseInfoChangePage_url1": "/hospitaltest2api/herpService/goodsChgMain/baseInfoChangePage" "baseInfoChangePage_url1": "/hospitaltest2api/herpService/goodsChgMain/baseInfoChangePage"
"sysConfig_page_url": "/hospitaltest2api/herpService/basic/sysConfig/page" "sysConfig_page_url": "/hospitaltest2api/herpService/basic/sysConfig/page"
"mcmsParamConfig_page_url": "/hospitaltest2api/herpService/basic/mcmsParamConfig/page" "mcmsParamConfig_page_url": "/hospitaltest2api/herpService/basic/mcmsParamConfig/page"
"sysConfig_insert_url": "/hospitaltest2api/herpService/basic/sysConfig/insert"
"sysConfig_updateById_url": "/hospitaltest2api/herpService/basic/sysConfig/updateById"
"username": "xhs1009" "username": "xhs1009"
"password": "1qaz!QAZ" "password": "1qaz!QAZ"
...@@ -269,6 +272,10 @@ json_headers2: { ...@@ -269,6 +272,10 @@ json_headers2: {
"payload51_10": {"pageNum":1,"pageSize":50,"queryObject":{"ename":"","mgrRangeId":"h0347"}} "payload51_10": {"pageNum":1,"pageSize":50,"queryObject":{"ename":"","mgrRangeId":"h0347"}}
"payload51_11": {"pageNum":1,"pageSize":50,"queryObject":{"cname":"","hosId":"h0347","mgrRangeId":"h0347","levelCode":"YY"}} "payload51_11": {"pageNum":1,"pageSize":50,"queryObject":{"cname":"","hosId":"h0347","mgrRangeId":"h0347","levelCode":"YY"}}
"payload51_12": {"pageNum":1,"pageSize":50,"queryObject":{"ename":"","mgrRangeId":"h0347-2011","levelCode":"YQ"}} "payload51_12": {"pageNum":1,"pageSize":50,"queryObject":{"ename":"","mgrRangeId":"h0347-2011","levelCode":"YQ"}}
"payload51_13": {"pageNum":1,"pageSize":50,"queryObject":{"cname":"","hosId":"h0347","mgrRangeId":"h0347-2011","levelCode":"YQ"}}
"payload51_14": {"corpId":"h0347","ename":"PC00027","val":"1","remark":"单元包院区科室添加产品是否自动维护单元含量(1:是 0:否)","projectCode":"herp","mgrRangeId":"h0347-2011"}
"payload51_15": {"val":"0","id":"%s"}
checkDict: {"code": 0,'msg': None,'data': True} checkDict: {"code": 0,'msg': None,'data': True}
checkDict1: { checkDict1: {
......
...@@ -56,7 +56,7 @@ ...@@ -56,7 +56,7 @@
<tr width="600"> <tr width="600">
<td class='details-col-elapsed'>1</td> <td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>1</td> <td class='details-col-elapsed'>1</td>
<td class='details-col-elapsed'>0分1</td> <td class='details-col-elapsed'>0分2</td>
<td class="details-col-elapsed">100.0%</td> <td class="details-col-elapsed">100.0%</td>
</tr> </tr>
</table> </table>
...@@ -72,9 +72,9 @@ ...@@ -72,9 +72,9 @@
</tr> </tr>
<tr width="600"> <tr width="600">
<td class="details-col-elapsed"><a href='../log/i6运维管理_院区配置列表查询/log.html' target='_blank'>i6运维管理_院区配置列表查询</a></td> <td class="details-col-elapsed"><a href='../log/i9运维管理_院区配置修改参数/log.html' target='_blank'>i9运维管理_院区配置修改参数</a></td>
<td class="success">成功</td> <td class="success">成功</td>
<td class="details-col-elapsed">0.971</td> <td class="details-col-elapsed">2.557</td>
<td class="details-col-elapsed">xiaohesheng</td> <td class="details-col-elapsed">xiaohesheng</td>
</tr> </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