Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
backend_auto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
邓莹莹
backend_auto
Commits
a4093a0a
Commit
a4093a0a
authored
Jun 17, 2021
by
张淑琴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的服务订单
parent
9d792a68
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
80 additions
and
2 deletions
+80
-2
web_request.py
all_doctor_api/web_request.py
+9
-2
web_request.yaml
all_doctor_api/web_request.yaml
+10
-0
path_setting.py
path_setting.py
+2
-0
test_artemis_order_list.py
test_doctor_case/web_case/test_artemis_order_list.py
+21
-0
artemis_order_list.yaml
test_doctor_data/web_data/artemis_order_list.yaml
+38
-0
No files found.
all_doctor_api/web_request.py
View file @
a4093a0a
...
...
@@ -65,6 +65,9 @@ class web_request(BaseRequest):
return
self
.
api_send
(
self
.
ACCOUNT_URL
[
"cpc_homepage"
])
def
artemis_ad_type_list
(
self
):
return
self
.
api_send
(
self
.
ACCOUNT_URL
[
"artemis_ad_type_list"
])
def
artemis_order_list
(
self
,
status
):
self
.
params
[
"status"
]
=
status
return
self
.
api_send
(
self
.
ACCOUNT_URL
[
"artemis_order_list"
])
...
...
@@ -84,4 +87,8 @@ if __name__ == '__main__':
# print(web_request().file_upload("19","PC8uTySuxipukIMuqNV1OPB376C2ZZ3g","WU_FILE_0","lADPDg7mQdiUTiLNAZDNAZA_400_400.jpg_720x720g.jpg","image/jpeg","Mon Apr 26 2021 11:29:45 GMT+0800 (中国标准时间)","17688","(binary)"))
print
(
web_request
()
.
conversation_user_id
(
0
,
"您好"
,
602329
,
"271caac2ae1687ca0a56ee18115b8183"
,
"NLeTxEx1BOQo1zjv2us9BQ00ViMAHGpJ"
))
print
(
web_request
()
.
cpc_homepage
())
print
(
web_request
()
.
artemis_ad_type_list
())
\ No newline at end of file
print
(
web_request
()
.
artemis_ad_type_list
())
print
(
"发送"
)
print
(
web_request
()
.
artemis_order_list
(
0
))
print
(
web_request
()
.
artemis_order_list
(
1
))
print
(
web_request
()
.
artemis_order_list
(
2
))
\ No newline at end of file
all_doctor_api/web_request.yaml
View file @
a4093a0a
...
...
@@ -135,4 +135,13 @@ artemis_ad_type_list:
params
:
{}
data
:
{}
json
:
{}
isLogin
:
1
#需要登录
artemis_order_list
:
method
:
get
url
:
/api/web/artemis/order/list
params
:
status
:
${status}
data
:
{}
json
:
{}
isLogin
:
1
#需要登录
\ No newline at end of file
path_setting.py
View file @
a4093a0a
...
...
@@ -390,6 +390,8 @@ CONVERSATIONUSERID=os.path.join(BASE_DIR, "backend_auto/test_doctor_data/web_dat
ADTYPELIST
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web_data"
,
"artemis_ad_type_list.yaml"
)
#医生后台-我的购物车
ADADDSHOPPINGCARTINFO
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web2_data"
,
"artemis_ad_add_shopping_cart_info.yaml"
)
#医生后台-我的服务订单
ORDERLIST
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web_data"
,
"artemis_order_list.yaml"
)
#医生后台-点点通商品-概览
CPCHOMEPAGE
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_doctor_data/web_data"
,
"cpc_homepage.yaml"
)
...
...
test_doctor_case/web_case/test_artemis_order_list.py
0 → 100644
View file @
a4093a0a
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_doctor_api.web_request
import
web_request
class
TestArtemisOrderList
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
ORDERLIST
)
orderlist_case
,
orderlist_data
=
get_ids
(
data
,
"artemis_order_list"
)
@pytest.mark.parametrize
(
"param"
,
orderlist_data
,
ids
=
orderlist_case
)
def
test_artemis_order_list
(
self
,
param
):
'''我的服务订单'''
r
=
web_request
()
.
artemis_order_list
(
param
[
"status"
])
if
r
[
"error"
]
==
0
:
orders
=
r
.
get
(
"data"
)
.
get
(
"orders"
,
[])
assert
len
(
orders
)
>=
param
[
"assert"
]
test_doctor_data/web_data/artemis_order_list.yaml
0 → 100644
View file @
a4093a0a
artemis_order_list
:
#我的服务订单case
-
case
:
"
我的服务订单请求失败case"
status
:
"
"
assert
:
0
-
case
:
"
我的服务订单-待支付广告包case"
status
:
0
assert
:
0
-
case
:
"
我的服务订单-已购买case"
status
:
1
assert
:
0
-
case
:
"
我的服务订单-待审核case"
status
:
2
assert
:
0
-
case
:
"
我的服务订单-待上线case"
status
:
3
assert
:
0
-
case
:
"
我的服务订单-上线中case"
status
:
4
assert
:
0
-
case
:
"
我的服务订单-已下线case"
status
:
5
assert
:
0
-
case
:
"
我的服务订单-已支付广告包case"
status
:
6
assert
:
0
-
case
:
"
我的服务订单-已关闭广告包case"
status
:
7
assert
:
0
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a 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