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
d4da7430
Commit
d4da7430
authored
May 19, 2021
by
张慧
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
商祥页-分享接口
parent
8b57e135
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
61 additions
and
0 deletions
+61
-0
services_request.py
all_backend_api/services_request.py
+20
-0
services_request.yaml
all_backend_api/services_request.yaml
+10
-0
path_setting.py
path_setting.py
+3
-0
__init__.py
test_backend_case/services_case/__init__.py
+0
-0
test_share_data.py
test_backend_case/services_case/test_share_data.py
+21
-0
__init__.py
test_backend_data/services_data/__init__.py
+0
-0
share_data.yaml
test_backend_data/services_data/share_data.yaml
+7
-0
No files found.
all_backend_api/services_request.py
0 → 100644
View file @
d4da7430
import
path_setting
from
in_common.base_request
import
BaseRequest
class
services_request
(
BaseRequest
):
def
__init__
(
self
):
self
.
data
=
self
.
api_load
(
path_setting
.
SERVICES_CONFIG
)
#商祥页-分享
def
share_data
(
self
,
p_id
,
u_id
):
self
.
params
[
"p_id"
]
=
p_id
self
.
params
[
"u_id"
]
=
u_id
return
self
.
api_send
(
self
.
data
[
"share_data"
])
if
__name__
==
'__main__'
:
#打印商祥页-分享接口返回
print
(
services_request
()
.
share_data
(
"5857263"
,
"618788"
))
\ No newline at end of file
all_backend_api/services_request.yaml
0 → 100644
View file @
d4da7430
#商祥页-分享
share_data
:
method
:
get
url
:
/api/services/share_data
params
:
p_id
:
${p_id}
u_id
:
${u_id}
data
:
{}
json
:
{}
\ No newline at end of file
path_setting.py
View file @
d4da7430
...
@@ -131,6 +131,9 @@ JANUS_PRODUCT_DETAIL = os.path.join(BASE_DIR, "backend_auto/test_backend_data/ja
...
@@ -131,6 +131,9 @@ JANUS_PRODUCT_DETAIL = os.path.join(BASE_DIR, "backend_auto/test_backend_data/ja
JANUS_SKU_INFO
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/janus_data"
,
"sku_info.yaml"
)
JANUS_SKU_INFO
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/janus_data"
,
"sku_info.yaml"
)
#商祥页-收藏
#商祥页-收藏
SERVICE_FAVOR
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/service_data"
,
"service_favor.yaml"
)
SERVICE_FAVOR
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/service_data"
,
"service_favor.yaml"
)
#商祥页-分享
SERVICES_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"services_request.yaml"
)
SERVICES_SHARE_DATA
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/services_data"
,
"share_data.yaml"
)
if
__name__
==
'__main__'
:
if
__name__
==
'__main__'
:
print
(
"=========="
,
LIVEYAML_CONFIG
)
print
(
"=========="
,
LIVEYAML_CONFIG
)
test_backend_case/services_case/__init__.py
0 → 100644
View file @
d4da7430
test_backend_case/services_case/test_share_data.py
0 → 100644
View file @
d4da7430
import
pytest
from
all_backend_api.services_request
import
services_request
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
class
TestShareData
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
SERVICES_SHARE_DATA
)
share_data_case
,
share_data_data
=
get_ids
(
data
,
"share_data"
)
@pytest.mark.parametrize
(
"param"
,
share_data_data
,
ids
=
share_data_case
)
def
test_share_data
(
self
,
param
):
r
=
services_request
()
.
share_data
(
param
[
"p_id"
],
param
[
"u_id"
])
if
r
[
"error"
]
==
0
:
assert
r
[
"error"
]
==
param
[
"assert_error"
]
# print(services_request().share_data())
test_backend_data/services_data/__init__.py
0 → 100644
View file @
d4da7430
test_backend_data/services_data/share_data.yaml
0 → 100644
View file @
d4da7430
share_data
:
-
case
:
"
校验接口返回成功case"
p_id
:
"
5857263"
u_id
:
"
618788"
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