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
917fe120
Commit
917fe120
authored
May 12, 2021
by
张慧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
购物车列表接口
parent
d1f02f59
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
54 additions
and
0 deletions
+54
-0
shopcart_request.py
all_backend_api/shopcart_request.py
+18
-0
shopcart_request.yaml
all_backend_api/shopcart_request.yaml
+9
-0
path_setting.py
path_setting.py
+4
-0
__init__.py
test_backend_case/shopcart_case/__init__.py
+0
-0
test_list.py
test_backend_case/shopcart_case/test_list.py
+18
-0
__init__.py
test_backend_data/shopcart_data/__init__.py
+0
-0
list.yaml
test_backend_data/shopcart_data/list.yaml
+5
-0
No files found.
all_backend_api/shopcart_request.py
View file @
917fe120
import
path_setting
from
in_common.base_request
import
BaseRequest
class
shopcart_request
(
BaseRequest
):
def
__init__
(
self
):
self
.
data
=
self
.
api_load
(
path_setting
.
SHOPCART_CONFIG
)
#购物车列表
def
list
(
self
):
return
self
.
api_send
(
self
.
data
[
"list"
])
if
__name__
==
'__main__'
:
#打印购物车列表接口返回
print
(
shopcart_request
()
.
list
())
\ No newline at end of file
all_backend_api/shopcart_request.yaml
View file @
917fe120
#购物车列表
list
:
method
:
get
url
:
/api/shopcart/list/v2
params
:
{}
data
:
{}
json
:
{}
isLogin
:
1
\ No newline at end of file
path_setting.py
View file @
917fe120
...
...
@@ -78,6 +78,10 @@ DOCTOR_V2_SERVICE = os.path.join(BASE_DIR, "backend_auto/test_backend_data/docto
USER_ANSWER_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"user_request.yaml"
)
USER_ANSWER
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"answer.yaml"
)
#购物车列表
SHOPCART_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"shopcart_request.yaml"
)
SHOPCART_LIST
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/shopcart_data"
,
"list.yaml"
)
#消息列表
MY_CONVERSATION_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"my_conversation_request.yaml"
)
MY_CONVERSATION
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/my_conversation_data"
,
"my_conversation.yaml"
)
...
...
test_backend_case/shopcart_case/__init__.py
0 → 100644
View file @
917fe120
test_backend_case/shopcart_case/test_list.py
0 → 100644
View file @
917fe120
import
pytest
from
all_backend_api.shopcart_request
import
shopcart_request
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
class
TestList
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
SHOPCART_LIST
)
list_case
,
list_data
=
get_ids
(
data
,
"list"
)
@pytest.mark.parametrize
(
"param"
,
list_data
,
ids
=
list_case
)
def
test_list
(
self
,
param
):
r
=
shopcart_request
()
.
list
()
if
r
[
"error"
]
==
0
:
assert
r
[
"error"
]
==
param
[
"assert_error"
]
test_backend_data/shopcart_data/__init__.py
0 → 100644
View file @
917fe120
test_backend_data/shopcart_data/list.yaml
0 → 100644
View file @
917fe120
list
:
-
case
:
"
校验接口返回成功case"
assert_error
:
0
\ No newline at end of file
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