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
c8f50b49
Commit
c8f50b49
authored
Apr 19, 2021
by
张伟男
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
测颜值
parent
dae7aba5
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
67 additions
and
0 deletions
+67
-0
oneimage_request.py
all_backend_api/oneimage_request.py
+19
-0
oneimage_request.yaml
all_backend_api/oneimage_request.yaml
+10
-0
path_setting.py
path_setting.py
+4
-0
readme.md
readme.md
+6
-0
__init__.py
test_backend_case/oneimage_case/__init__.py
+0
-0
test_share_v4.py
test_backend_case/oneimage_case/test_share_v4.py
+20
-0
__init__.py
test_backend_data/oneimage_data/__init__.py
+0
-0
share_v4.yaml
test_backend_data/oneimage_data/share_v4.yaml
+8
-0
No files found.
all_backend_api/oneimage_request.py
0 → 100644
View file @
c8f50b49
import
path_setting
from
in_common.base_request
import
BaseRequest
class
oneimage_request
(
BaseRequest
):
def
__init__
(
self
):
self
.
data
=
self
.
api_load
(
path_setting
.
ONEIMAGE_SHARE_V4_CONFIG
)
# 测颜值结果页
def
share_v4
(
self
,
version
,
face_id
):
self
.
params
[
"version"
]
=
version
self
.
params
[
"face_id"
]
=
face_id
return
self
.
api_send
(
self
.
data
[
"share_v4"
])
if
__name__
==
'__main__'
:
print
(
oneimage_request
()
.
share_v4
(
"7.42.2"
,
"27320150"
))
\ No newline at end of file
all_backend_api/oneimage_request.yaml
0 → 100644
View file @
c8f50b49
share_v4
:
method
:
post
url
:
/api/one_image/share/v4
params
:
version
:
${version}
data
:
face_id
:
${face_id}
json
:
{}
path_setting.py
View file @
c8f50b49
...
...
@@ -43,6 +43,10 @@ SERVICE_URL=os.path.join(BASE_DIR, "backend_auto/all_doctor_api", "web2_request.
FEED_INDEXV9_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"feed_request.yaml"
)
FEED_INDEXV9_DATA
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/feed_data"
,
"index_v9.yaml"
)
# 测颜值结果页
ONEIMAGE_SHARE_V4_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"oneimage_request.yaml"
)
ONEIMAGE_SHARE_V4_DATA
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/oneimage_data"
,
"share_v4.yaml"
)
LOGIN_PASSWD
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/accounts_data"
,
"login_passwd.yaml"
)
LOGIN_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"accounts_request.yaml"
)
...
...
readme.md
View file @
c8f50b49
...
...
@@ -32,8 +32,14 @@
-
test_backend_data 文件主要放测试用例的case
-
host.yaml 维护测试环境的配置文件
-
path_setting.py 文件主要是配置yaml文件的读取路径
-
login_session_function.py 文件主要提供获取session的功能,方便需登录的接口获取session 2021-4-19新增
-
login_session_function.yaml login_session_function.py文件需要登录的数据 2021-4-19新增
-
run.py 统一执行入口
### 关于yaml文明书写的注意事项 2021-4-19新增
-
yaml文件对空格换行要求非常严格,所以书写时要特别注意

### 如何写一个用例
-
先在all_backend_api下找到对应的模块,比如我写节点account下面的接口,那就找到account_request.py这个文件,写接口请求
...
...
test_backend_case/oneimage_case/__init__.py
0 → 100644
View file @
c8f50b49
test_backend_case/oneimage_case/test_share_v4.py
0 → 100644
View file @
c8f50b49
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_backend_api.oneimage_request
import
oneimage_request
class
TestShareV4
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
ONEIMAGE_SHARE_V4_DATA
)
sharev4_case
,
sharev4_data
=
get_ids
(
data
,
"share_v4"
)
@pytest.mark.parametrize
(
"param"
,
sharev4_data
,
ids
=
sharev4_case
)
def
test_share_v4
(
self
,
param
):
r
=
oneimage_request
()
.
share_v4
(
param
[
"version"
],
param
[
"face_id"
])
if
r
[
"error"
]
==
0
:
data
=
r
.
get
(
"data"
)
assert
1
==
1
test_backend_data/oneimage_data/__init__.py
0 → 100644
View file @
c8f50b49
test_backend_data/oneimage_data/share_v4.yaml
0 → 100644
View file @
c8f50b49
share_v4
:
#成功登录case
-
case
:
"
请求成功,有数据返回"
version
:
"
7.42.2"
face_id
:
"
27320150"
assert
:
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