Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
test
autotest-airtest-web-spd
Commits
d4313b91
Commit
d4313b91
authored
Feb 20, 2024
by
xiao-hesheng
Browse files
新增自动请领排程脚本
parent
020f41f0
Changes
6
Hide whitespace changes
Inline
Side-by-side
air_case/b2_herp3_bs/r_a10科室管理_科室人员查询_科室目录查询_条件查询_异常场景.air/r_a10科室管理_科室人员查询_科室目录查询_条件查询_异常场景.py
0 → 100644
View file @
d4313b91
# -*- 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,r_a10科室管理_科室人员查询_科室目录查询_条件查询_异常场景,id2263,id2263-212,sit,on
内网:r_a10科室管理_科室人员查询_科室目录查询_条件查询_异常场景
"""
from
common.common_func
import
commonFuc
from
air_case.b1_herp3_login.登录内网系统.登录内网系统
import
login_system
module
=
"b2_herp3_bs"
def
test1
():
"""
场景:r_a10科室管理_科室人员查询_科室目录查询_条件查询_异常场景
用例名称:r_a10科室管理_科室人员查询_科室目录查询_条件查询_异常场景
输入:""
输出:"rtn_msg": {"code": 0, "msg": null, "data":[]}
"""
# 内网登录
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)
# r_a10科室管理_科室人员查询_科室目录查询_条件查询_异常场景
# pro_path = commonFuc().get_pro_path()
# sys.path.append(pro_path + r'\\air_case\\b2_herp3_bs\\r_a4科室管理_自动请领排程_列表查询_获取id.air')
# using(pro_path + r'\\air_case\\b2_herp3_bs\\r_a4科室管理_自动请领排程_列表查询_获取id.air')
# from r_a4科室管理_自动请领排程_列表查询_获取id import test1
# list_id = test1()
# print(list_id)
# for i in list_id:
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"branchDept_url"
)
# url=url+i+'?id='+i
print
(
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
,
'data3'
)
list2
=
list
(
str
.
split
(
","
))
print
(
list2
)
# #获取日期
# date1=timeUtils().get_time_hms(2)
# date2=timeUtils().get_time_hms(2)
for
i
in
list2
:
# dept2_id = FileUtils().r_info(module, '科室信息')["dept2_id"]
# 请求体
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload61_1"
,
i
)
# request_body='['+str(request_body)+']'
# new_request_body = request_body.replace("'", '"')
# print(new_request_body)
# import json
# request_body_json = json.loads(new_request_body)
# # # 发送请求
result
=
commonFuc
().
http_post
(
url
,
request_body
,
headers
)
print
(
'resultaaaaaaaaaaaaaaaaaaaaaaaaaaa'
,
result
)
# 断言
code
=
commonFuc
().
analysis_json
(
'code'
,
result
)
data
=
commonFuc
().
analysis_json
(
'data'
,
result
)
data1
=
commonFuc
().
analysis_json
(
'data'
,
data
)
# print(len(data1))
if
code
==
0
and
len
(
data
)
==
0
:
commonFuc
().
check_text_exist
(
0
,
result
)
else
:
commonFuc
().
check_text_exist
(
'error'
,
result
)
test1
()
air_case/b2_herp3_bs/r_a7科室管理_科室人员查询_科室目录查询_查询全部.air/r_a7科室管理_科室人员查询_科室目录查询_查询全部.py
0 → 100644
View file @
d4313b91
# -*- 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,r_a7科室管理_科室人员查询_科室目录查询_查询全部,id2263,id2263-209,sit,on
内网:r_a7科室管理_科室人员查询_科室目录查询_查询全部
"""
from
common.common_func
import
commonFuc
from
air_case.b1_herp3_login.登录内网系统.登录内网系统
import
login_system
module
=
"b2_herp3_bs"
def
test1
():
"""
场景:r_a7科室管理_科室人员查询_科室目录查询_查询全部
用例名称:r_a7科室管理_科室人员查询_科室目录查询_查询全部
输入:""
输出:"rtn_msg": {"code": 0, "msg": null, "data":[]}
"""
# 内网登录
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)
# r_a7科室管理_科室人员查询_科室目录查询_查询全部
# pro_path = commonFuc().get_pro_path()
# sys.path.append(pro_path + r'\\air_case\\b2_herp3_bs\\r_a4科室管理_自动请领排程_列表查询_获取id.air')
# using(pro_path + r'\\air_case\\b2_herp3_bs\\r_a4科室管理_自动请领排程_列表查询_获取id.air')
# from r_a4科室管理_自动请领排程_列表查询_获取id import test1
# list_id = test1()
# print(list_id)
# for i in list_id:
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"branchDept_url"
)
# url=url+i+'?id='+i
print
(
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, 'data3')
# list2 = list(str.split(","))
# print(list2)
# #获取日期
# date1=timeUtils().get_time_hms(2)
# date2=timeUtils().get_time_hms(2)
# for i in list2:
# dept2_id = FileUtils().r_info(module, '科室信息')["dept2_id"]
# 请求体
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload61"
)
# request_body='['+str(request_body)+']'
# new_request_body = request_body.replace("'", '"')
# print(new_request_body)
# import json
# request_body_json = json.loads(new_request_body)
# # # 发送请求
result
=
commonFuc
().
http_post
(
url
,
request_body
,
headers
)
# print('resultaaaaaaaaaaaaaaaaaaaaaaaaaaa', result)
# 断言
code
=
commonFuc
().
analysis_json
(
'code'
,
result
)
data
=
commonFuc
().
analysis_json
(
'data'
,
result
)
data1
=
commonFuc
().
analysis_json
(
'data'
,
data
)
# print(len(data1))
if
code
==
0
and
len
(
data
)
>=
1
:
commonFuc
().
check_text_exist
(
0
,
result
)
else
:
commonFuc
().
check_text_exist
(
'error'
,
result
)
test1
()
air_case/b2_herp3_bs/r_a8科室管理_科室人员查询_科室目录查询_条件查询_精确查询.air/r_a8科室管理_科室人员查询_科室目录查询_条件查询_精确查询.py
0 → 100644
View file @
d4313b91
# -*- 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,r_a8科室管理_科室人员查询_科室目录查询_条件查询_精确查询,id2263,id2263-210,sit,on
内网:r_a8科室管理_科室人员查询_科室目录查询_条件查询_精确查询
"""
from
common.common_func
import
commonFuc
from
air_case.b1_herp3_login.登录内网系统.登录内网系统
import
login_system
module
=
"b2_herp3_bs"
def
test1
():
"""
场景:r_a8科室管理_科室人员查询_科室目录查询_条件查询_精确查询
用例名称:r_a8科室管理_科室人员查询_科室目录查询_条件查询_精确查询
输入:""
输出:"rtn_msg": {"code": 0, "msg": null, "data":[]}
"""
# 内网登录
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)
# r_a8科室管理_科室人员查询_科室目录查询_条件查询_精确查询
# pro_path = commonFuc().get_pro_path()
# sys.path.append(pro_path + r'\\air_case\\b2_herp3_bs\\r_a4科室管理_自动请领排程_列表查询_获取id.air')
# using(pro_path + r'\\air_case\\b2_herp3_bs\\r_a4科室管理_自动请领排程_列表查询_获取id.air')
# from r_a4科室管理_自动请领排程_列表查询_获取id import test1
# list_id = test1()
# print(list_id)
# for i in list_id:
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"branchDept_url"
)
# url=url+i+'?id='+i
print
(
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
,
'data12'
)
list2
=
list
(
str
.
split
(
","
))
print
(
list2
)
# #获取日期
# date1=timeUtils().get_time_hms(2)
# date2=timeUtils().get_time_hms(2)
for
i
in
list2
:
# dept2_id = FileUtils().r_info(module, '科室信息')["dept2_id"]
# 请求体
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload61_1"
,
i
)
# request_body='['+str(request_body)+']'
# new_request_body = request_body.replace("'", '"')
# print(new_request_body)
# import json
# request_body_json = json.loads(new_request_body)
# # # 发送请求
result
=
commonFuc
().
http_post
(
url
,
request_body
,
headers
)
print
(
'resultaaaaaaaaaaaaaaaaaaaaaaaaaaa'
,
result
)
# 断言
code
=
commonFuc
().
analysis_json
(
'code'
,
result
)
data
=
commonFuc
().
analysis_json
(
'data'
,
result
)
data1
=
commonFuc
().
analysis_json
(
'data'
,
data
)
# print(len(data1))
if
code
==
0
and
len
(
data
)
>=
1
:
commonFuc
().
check_text_exist
(
0
,
result
)
else
:
commonFuc
().
check_text_exist
(
'error'
,
result
)
test1
()
air_case/b2_herp3_bs/r_a9科室管理_科室人员查询_科室目录查询_条件查询_模糊查询.air/r_a9科室管理_科室人员查询_科室目录查询_条件查询_模糊查询.py
0 → 100644
View file @
d4313b91
# -*- 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,r_a9科室管理_科室人员查询_科室目录查询_条件查询_模糊查询,id2263,id2263-211,sit,on
内网:r_a9科室管理_科室人员查询_科室目录查询_条件查询_模糊查询
"""
from
common.common_func
import
commonFuc
from
air_case.b1_herp3_login.登录内网系统.登录内网系统
import
login_system
module
=
"b2_herp3_bs"
def
test1
():
"""
场景:r_a9科室管理_科室人员查询_科室目录查询_条件查询_模糊查询
用例名称:r_a9科室管理_科室人员查询_科室目录查询_条件查询_模糊查询
输入:""
输出:"rtn_msg": {"code": 0, "msg": null, "data":[]}
"""
# 内网登录
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)
# r_a9科室管理_科室人员查询_科室目录查询_条件查询_模糊查询
# pro_path = commonFuc().get_pro_path()
# sys.path.append(pro_path + r'\\air_case\\b2_herp3_bs\\r_a4科室管理_自动请领排程_列表查询_获取id.air')
# using(pro_path + r'\\air_case\\b2_herp3_bs\\r_a4科室管理_自动请领排程_列表查询_获取id.air')
# from r_a4科室管理_自动请领排程_列表查询_获取id import test1
# list_id = test1()
# print(list_id)
# for i in list_id:
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"branchDept_url"
)
# url=url+i+'?id='+i
print
(
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
,
'data13'
)
list2
=
list
(
str
.
split
(
","
))
print
(
list2
)
# #获取日期
# date1=timeUtils().get_time_hms(2)
# date2=timeUtils().get_time_hms(2)
for
i
in
list2
:
# dept2_id = FileUtils().r_info(module, '科室信息')["dept2_id"]
# 请求体
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload61_1"
,
i
)
# request_body='['+str(request_body)+']'
# new_request_body = request_body.replace("'", '"')
# print(new_request_body)
# import json
# request_body_json = json.loads(new_request_body)
# # # 发送请求
result
=
commonFuc
().
http_post
(
url
,
request_body
,
headers
)
print
(
'resultaaaaaaaaaaaaaaaaaaaaaaaaaaa'
,
result
)
# 断言
code
=
commonFuc
().
analysis_json
(
'code'
,
result
)
data
=
commonFuc
().
analysis_json
(
'data'
,
result
)
data1
=
commonFuc
().
analysis_json
(
'data'
,
data
)
# print(len(data1))
if
code
==
0
and
len
(
data
)
>=
1
:
commonFuc
().
check_text_exist
(
0
,
result
)
else
:
commonFuc
().
check_text_exist
(
'error'
,
result
)
test1
()
data/b2_herp3_bs/data
View file @
d4313b91
...
...
@@ -99,6 +99,7 @@ data9: "不存在的眼科,1眼,2科,111,jyk2"
data10: "00001977,手术衣,ssy"
data11: "10,20,60"
data12: "002,006检验科1,0,1,006,检验科"
data13: "0,00,2,006检验科,0,1,006,检验科"
"username": "xhs1009"
"password": "1qaz!QAZ"
...
...
@@ -431,6 +432,8 @@ json_headers2: {
"payload60_2": {"branchId":"h0347-2011","deptId":"b3753145b3ba4c7da96b5cdf6c3d436b","orderNum":1,"intervalType":"1","intervalNum":"1","intervalWeek":65,"id":"","hosId":"h0347"}
"payload60_3": {"pageNum":1,"pageSize":50,"orderBy":"","queryObject":{"ename":"%s","branchId":"h0347-2011","hosId":"h0347"}}
"payload60_4": {"id":"%s","branchId":"h0347-2011","deptId":"96c4d23bff8541599eb1a7f5f813e421","orderNum":2,"intervalType":"0","intervalNum":2,"intervalWeek":"","hosId":"h0347"}
"payload61": {"corpId":"h0347","orgName":""}
"payload61_1": {"corpId":"h0347","orgName":"%s"}
checkDict: {"code": 0,'msg': None,'data': True}
checkDict1: {
...
...
report/summary.html
View file @
d4313b91
...
...
@@ -56,7 +56,7 @@
<tr
width=
"600"
>
<td
class=
'details-col-elapsed'
>
1
</td>
<td
class=
'details-col-elapsed'
>
1
</td>
<td
class=
'details-col-elapsed'
>
0分
5
秒
</td>
<td
class=
'details-col-elapsed'
>
0分
2
秒
</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/r_a
6
科室管理_
自动请领排程_删除排程
/log.html'
target=
'_blank'
>
r_a
6
科室管理_
自动请领排程_删除排程
</a></td>
<td
class=
"details-col-elapsed"
><a
href=
'../log/r_a
10
科室管理_
科室人员查询_科室目录查询_条件查询_异常场景
/log.html'
target=
'_blank'
>
r_a
10
科室管理_
科室人员查询_科室目录查询_条件查询_异常场景
</a></td>
<td
class=
"success"
>
成功
</td>
<td
class=
"details-col-elapsed"
>
5.19
4
</td>
<td
class=
"details-col-elapsed"
>
2.83
4
</td>
<td
class=
"details-col-elapsed"
>
xiaohesheng
</td>
</tr>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment