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
71d7c6c5
Commit
71d7c6c5
authored
May 19, 2021
by
张淑琴
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
标记为已读
parent
82d3031e
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
50 additions
and
3 deletions
+50
-3
notification_request.py
all_backend_api/notification_request.py
+7
-2
notification_request.yaml
all_backend_api/notification_request.yaml
+14
-0
path_setting.py
path_setting.py
+2
-1
test_readall.py
test_backend_case/notification_case/test_readall.py
+18
-0
readall.yaml
test_backend_data/notification_data/readall.yaml
+9
-0
No files found.
all_backend_api/notification_request.py
View file @
71d7c6c5
...
...
@@ -10,7 +10,12 @@ class notification_request(BaseRequest):
self
.
params
[
"uqid"
]
=
uqid
self
.
params
[
"trace_id"
]
=
trace_id
return
self
.
api_send
(
self
.
data
[
"unread"
])
def
readall
(
self
,
uqid
,
trace_id
,
ua
):
self
.
params
[
"uqid"
]
=
uqid
self
.
params
[
"trace_id"
]
=
trace_id
self
.
params
[
"ua"
]
=
ua
return
self
.
api_send
(
self
.
data
[
"readall"
])
if
__name__
==
'__main__'
:
print
(
notification_request
()
.
unread
(
"1B519701-A4F5-453E-9D99-140B5AF697A0"
,
"2021/04/22/1722/46cf97b999b0"
))
#print(notification_request().unread("1B519701-A4F5-453E-9D99-140B5AF697A0", "2021/04/22/1722/46cf97b999b0"))
print
(
notification_request
()
.
readall
(
"1B519701-A4F5-453E-9D99-140B5AF697A0"
,
"2021/05/19/1526/19fcd4c4be47"
,
"Mozilla/5.0 (iPhone; CPU iPhone OS 12_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148"
))
all_backend_api/notification_request.yaml
View file @
71d7c6c5
#未读消息数
unread
:
method
:
get
url
:
/api/notification/unread
...
...
@@ -9,3 +10,15 @@ unread:
json
:
{}
isLogin
:
1
#需要登录的接口
#标记为已读
readall
:
method
:
post
url
:
/api/notification/readall
params
:
uqid
:
${uqid}
trace_id
:
${trace_id}
ua
:
${ua}
data
:
{}
json
:
{}
isLogin
:
1
#需要登录的接口
\ No newline at end of file
path_setting.py
View file @
71d7c6c5
...
...
@@ -82,7 +82,8 @@ AUTO_MSG = os.path.join(BASE_DIR, "backend_auto/test_backend_data/im_data", "aut
#消息页未读数
UNREAD_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"notification_request.yaml"
)
UNREAD
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/notification_data"
,
"unread.yaml"
)
#标记为已读
READALL
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/notification_data"
,
"readall.yaml"
)
if
__name__
==
'__main__'
:
print
(
"=========="
,
LIVEYAML_CONFIG
)
test_backend_case/notification_case/test_readall.py
0 → 100644
View file @
71d7c6c5
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_backend_api.notification_request
import
notification_request
class
TestReadall
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
READALL
)
readall_case
,
readall_data
=
get_ids
(
data
,
"readall"
)
@pytest.mark.parametrize
(
"param"
,
readall_data
,
ids
=
readall_case
)
def
test_readall
(
self
,
param
):
r
=
notification_request
()
.
readall
(
param
[
"uqid"
],
param
[
"trace_id"
],
param
[
"ua"
])
print
(
r
)
assert
r
[
"error"
]
==
0
\ No newline at end of file
test_backend_data/notification_data/readall.yaml
0 → 100644
View file @
71d7c6c5
readall
:
#验证成功case
-
case
:
"
标记为已读成功"
uqid
:
"
1B519701-A4F5-453E-9D99-140B5AF697A0"
trace_id
:
"
2021/05/19/1526/19fcd4c4be47"
ua
:
"
Mozilla/5.0
(iPhone;
CPU
iPhone
OS
12_2
like
Mac
OS
X)
AppleWebKit/605.1.15
(KHTML,
like
Gecko)
Mobile/15E148"
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