Commit 5dc8c075 authored by xiao-hesheng's avatar xiao-hesheng
Browse files

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

parent f9ab8645
# -*- 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,j7运维管理_打印模板设置_资源查询,id2263,id2263-113,sit,on
内网:j7运维管理_打印模板设置_资源查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:j7运维管理_打印模板设置_资源查询
用例名称:j7运维管理_打印模板设置_资源查询
输入:无
输出:"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)
#j7运维管理_打印模板设置_资源查询
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "sysrPrintHead_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_21")
# # # 发送请求
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)
if code==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_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,j8运维管理_打印模板设置_资源查询_条件查询,id2263,id2263-114,sit,on
内网:j8运维管理_打印模板设置_资源查询_条件查询
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:j8运维管理_打印模板设置_资源查询_条件查询
用例名称:j8运维管理_打印模板设置_资源查询_条件查询
输入:无
输出:"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)
#j8运维管理_打印模板设置_资源查询_条件查询
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "sysrPrintHead_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"]
# list1=["条码","high_info","check_detail","高值打码","out_stock","goods_change_baseInfo","center_out_stock_pkg","mcms_centre_out_stock","pkg_info"
# "mcms_dept_out_stock","barcode_common","mcms_centre_in_stock","goods_change_price","mcms_dept_in_stock","check_detail_pkg",
# "center_out_stock_high","center_out_stock_high","high_consume","shelf_code","barcode_common_pkg","check_detail_high","balance_bill"
# "barcode_rfid","bottle_info","验收单明细打印","产品信息变更","中心库出库单低值","医院中心库出库单","包信息","医院科室出库单",
# "高值纸质条码打印"]
str=commonFuc().get_business_data(module,'data1')
list2=list(str.split(","))
print(list2)
#请求体
for i in list2:
request_body = commonFuc().get_business_data(module, "payload51_22",i)
# # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('result',i,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)
if code==0 and data!=[]:
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,j9运维管理_打印模板设置_资源查询_条件查询_异常,id2263,id2263-115,sit,on
内网:j9运维管理_打印模板设置_资源查询_条件查询_异常
"""
from common.common_func import commonFuc
from air_case.b1_herp3_login.登录内网系统.登录内网系统 import login_system
module = "b2_herp3_bs"
def test1():
"""
场景:j9运维管理_打印模板设置_资源查询_条件查询_异常
用例名称:j9运维管理_打印模板设置_资源查询_条件查询_异常
输入:无
输出:"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)
#j8运维管理_打印模板设置_资源查询_条件查询
url=commonFuc().get_api_url()+commonFuc().get_business_data(module, "sysrPrintHead_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"]
list1=["条码1","abce","!#$%","'","select","where 1=1"]
# #请求体
for i in list1:
request_body = commonFuc().get_business_data(module, "payload51_22",i)
# # # 发送请求
result = commonFuc().http_post(url, request_body, headers)
print('result'+str(i), 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)
if code==0 and data==[]:
commonFuc().check_text_exist(0, result)
else:
commonFuc().check_text_exist('error', result)
test1()
...@@ -43,7 +43,8 @@ ...@@ -43,7 +43,8 @@
"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_insert_url": "/hospitaltest2api/herpService/basic/sysConfig/insert"
"sysConfig_updateById_url": "/hospitaltest2api/herpService/basic/sysConfig/updateById" "sysConfig_updateById_url": "/hospitaltest2api/herpService/basic/sysConfig/updateById"
"sysrPrintHead_url": "/hospitaltest2api/platformService/sysrPrintHead/listVo"
data1: '条码,high_info,check_detail,高值打码,out_stock,goods_change_baseInfo,center_out_stock_pkg,mcms_centre_out_stock,pkg_info,mcms_dept_out_stock,barcode_common,mcms_centre_in_stock,goods_change_price,mcms_dept_in_stock,check_detail_pkg,center_out_stock_high,center_out_stock_high,high_consume,shelf_code,barcode_common_pkg,check_detail_high,balance_bill,barcode_rfid,bottle_info,验收单明细打印,产品信息变更,中心库出库单低值,医院中心库出库单,包信息,医院科室出库单,高值纸质条码打印,医院中心库入库单,产品调价,医院科室入库单,低值验收单,中心库出库单高值,高值耗材使用登记表,货位码,单元包纸质条码打印,高值验收单,结算单打印,高值RFID条码打印,单瓶码打印'
"username": "xhs1009" "username": "xhs1009"
"password": "1qaz!QAZ" "password": "1qaz!QAZ"
...@@ -280,7 +281,8 @@ json_headers2: { ...@@ -280,7 +281,8 @@ json_headers2: {
"payload51_18": {"corpId":"h0347","ename":"PC00028","val":"1","remark":"默认计费科室","projectCode":"herp","mgrRangeId":"d69a68df361a4289b2262e4ef75b55a5"} "payload51_18": {"corpId":"h0347","ename":"PC00028","val":"1","remark":"默认计费科室","projectCode":"herp","mgrRangeId":"d69a68df361a4289b2262e4ef75b55a5"}
"payload51_19": {"pageNum":1,"pageSize":50,"queryObject":{"ename":"%s","mgrRangeId":"d69a68df361a4289b2262e4ef75b55a5","levelCode":"KS"}} "payload51_19": {"pageNum":1,"pageSize":50,"queryObject":{"ename":"%s","mgrRangeId":"d69a68df361a4289b2262e4ef75b55a5","levelCode":"KS"}}
"payload51_20": {"val":"0","id":"%s"} "payload51_20": {"val":"0","id":"%s"}
"payload51_21": {"nameOrCode":""}
"payload51_22": {"nameOrCode":"%s"}
checkDict: {"code": 0,'msg': None,'data': True} checkDict: {"code": 0,'msg': None,'data': True}
checkDict1: { checkDict1: {
"code": 0, "code": 0,
......
...@@ -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分2</td> <td class='details-col-elapsed'>0分5</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/j6运维管理_科室配置_修改参数/log.html' target='_blank'>j6运维管理_科室配置_修改参数</a></td> <td class="details-col-elapsed"><a href='../log/j8运维管理_打印模板设置_资源查询_条件查询/log.html' target='_blank'>j8运维管理_打印模板设置_资源查询_条件查询</a></td>
<td class="success">成功</td> <td class="success">成功</td>
<td class="details-col-elapsed">2.547</td> <td class="details-col-elapsed">5.021</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