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
0eaf24b7
Commit
0eaf24b7
authored
Jan 05, 2024
by
xiao-hesheng
Browse files
增加根据结算类型查询产品信息_不结算,根据结算类型查询产品信息_入定向仓结算,根据结算类型查询产品信息_入中心库结算 脚本
parent
5b50977d
Changes
6
Hide whitespace changes
Inline
Side-by-side
air_case/b2_herp3_bs/g7_批量导入_查询产品信息.air/g7_批量导入_查询产品信息.py
View file @
0eaf24b7
...
...
@@ -59,9 +59,16 @@ def select1():
if
total
>=
0
:
print
(
total
)
data1
=
commonFuc
().
analysis_json
(
'data'
,
commonFuc
().
analysis_json
(
'data'
,
result
))
id1
=
commonFuc
().
analysis_json
(
'id'
,
data1
[
0
])
print
(
id1
)
# id1=commonFuc().analysis_json('id',data1[0])
commonFuc
().
check_text_exist
(
0
,
result
)
id1
=
commonFuc
().
analysis_json
(
'id'
,
data1
[
0
])
print
(
id1
)
print
(
'id1'
,
id1
)
info
=
(
id1
,
id1
)
titlename
=
(
'id1'
,
'id2'
)
# 将id1写入到文件中
FileUtils
().
w_info7
(
info
,
module
,
'产品信息1'
,
titlename
,
'message2'
)
return
id1
else
:
commonFuc
().
check_text_exist
(
'error'
,
result
)
...
...
air_case/b2_herp3_bs/g8_批量导入_导入一个产品_中心库结算.air/g8_批量导入_导入一个产品_中心库结算.py
→
air_case/b2_herp3_bs/g8_
1
批量导入_导入一个产品_中心库结算.air/g8_
1
批量导入_导入一个产品_中心库结算.py
View file @
0eaf24b7
...
...
@@ -45,8 +45,11 @@ def test1():
pro_path
=
commonFuc
().
get_pro_path
()
sys
.
path
.
append
(
pro_path
+
r
'\\air_case\\b2_herp3_bs\\g7_批量导入_查询产品信息.air'
)
using
(
pro_path
+
r
'\\air_case\\b2_herp3_bs\\g7_批量导入_查询产品信息.air'
)
from
g7_批量导入_查询产品信息
import
select1
id1
=
select1
()
# from g7_批量导入_查询产品信息 import select1
# id1 = select1()
info
=
FileUtils
().
r_info6
(
"b2_herp3_bs"
,
"产品信息1"
,
'message2'
)
print
(
info
)
id1
=
info
[
'id1'
]
# #请求体
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload49_7"
,
id1
)
print
(
request_body
)
...
...
air_case/b2_herp3_bs/g8_2批量导入_导入一个产品_不结算.air/g8_2批量导入_导入一个产品_不结算.py
0 → 100644
View file @
0eaf24b7
# -*- 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,g8_2批量导入_导入一个产品_不结算,id2263,id2263-70,sit,on
内网:g8_2批量导入_导入一个产品_不结算
"""
from
common.common_func
import
commonFuc
from
air_case.b1_herp3_login.登录内网系统.登录内网系统
import
login_system
module
=
"b2_herp3_bs"
def
test1
():
"""
场景:g8_批量导入_导入一个产品_中心库结算
用例名称:g8_批量导入_导入一个产品_中心库结算
输入:无
输出:"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)
#g8_批量导入_导入一个产品_中心库结算
url
=
commonFuc
().
get_api_url
()
+
commonFuc
().
get_business_data
(
module
,
"updateSettleType_url1"
)
# 获取请求头信息
headers
=
commonFuc
().
get_business_data
(
module
,
"json_headers2"
,
commonFuc
().
get_business_data
(
module
,
"json_contentType"
),
token
,
commonFuc
().
get_business_data
(
module
,
"X-APP-CODE"
))
# # 获取结算id
pro_path
=
commonFuc
().
get_pro_path
()
sys
.
path
.
append
(
pro_path
+
r
'\\air_case\\b2_herp3_bs\\g7_批量导入_查询产品信息.air'
)
using
(
pro_path
+
r
'\\air_case\\b2_herp3_bs\\g7_批量导入_查询产品信息.air'
)
# from g7_批量导入_查询产品信息 import select1
# id1 = select1()
info
=
FileUtils
().
r_info6
(
"b2_herp3_bs"
,
"产品信息1"
,
'message2'
)
print
(
info
)
id1
=
info
[
'id1'
]
# #请求体
request_body
=
commonFuc
().
get_business_data
(
module
,
"payload49_8"
,
id1
)
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
)
if
code
>=
0
:
print
(
code
)
commonFuc
().
check_text_exist
(
0
,
result
)
else
:
commonFuc
().
check_text_exist
(
'error'
,
result
)
test1
()
common/fileUtls.py
View file @
0eaf24b7
...
...
@@ -228,6 +228,29 @@ class FileUtils(object):
return
None
else
:
return
None
def
w_info7
(
self
,
info
,
module
,
keyname
,
titlename
,
message_no
):
module
=
module
dict
=
{}
value
=
{}
for
i
in
range
(
len
(
titlename
)):
value
[
titlename
[
i
]]
=
info
[
i
]
# value[titlename[0]] = info[0]
# value[titlename[1]] = info[1]
key
=
keyname
dict
[
key
]
=
value
w_path
=
rootPath
+
os
.
sep
+
'data'
+
os
.
sep
+
module
# print(w_path)
yamlpath
=
os
.
path
.
join
(
w_path
,
message_no
)
if
(
self
.
r_info2
(
module
,
keyname
)
!=
None
):
print
(
'已有相同信息,不写入'
)
# 写入到yaml文件
# with open(yamlpath, "w", encoding="utf-8") as f:
# yaml.dump(dict, f, Dumper=yaml.RoundTripDumper,allow_unicode=True)
else
:
# 写入到yaml文件
with
open
(
yamlpath
,
"a"
,
encoding
=
"utf-8"
)
as
f
:
yaml
.
dump
(
dict
,
f
,
Dumper
=
yaml
.
RoundTripDumper
,
allow_unicode
=
True
)
if
__name__
==
'__main__'
:
# info=("aaaa","bbbbbb","mdm3-pim")
# FileUtils().w_info(info,"产品新增")
...
...
data/b2_herp3_bs/data
View file @
0eaf24b7
...
...
@@ -227,6 +227,7 @@ json_headers2: {
"payload49_5": {"queryObject": {"goodsName": "","provName": "","purModes": [],"hosId": "h0347","settleType": 7,"goodsSpec": "" },"pageNum": 1,"pageSize": 100}
"payload49_6": {"queryObject":{"goodsName":"","provName":"","purModes":[],"goodsSpec":"","hosId":"h0347","settleType":0},"pageNum":1,"pageSize":50}
"payload49_7": {"ids":["%s"],"settleType":1,"opMenu":"/platform/settle/rules"}
"payload49_8": {"ids":["%s"],"settleType":2,"opMenu":"/platform/settle/rules"}
checkDict: {"code": 0,'msg': None,'data': True}
...
...
report/summary.html
View file @
0eaf24b7
...
...
@@ -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分
2
秒
</td>
<td
class=
'details-col-elapsed'
>
0分
0
秒
</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/g8_批量导入_导入一个产品_中心库结算/log.html'
target=
'_blank'
>
g8_批量导入_导入一个产品_中心库结算
</a></td>
<td
class=
"details-col-elapsed"
><a
href=
'../log/g8_
1
批量导入_导入一个产品_中心库结算/log.html'
target=
'_blank'
>
g8_
1
批量导入_导入一个产品_中心库结算
</a></td>
<td
class=
"success"
>
成功
</td>
<td
class=
"details-col-elapsed"
>
2.116
</td>
<td
class=
"details-col-elapsed"
>
0.83
</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