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
2f19e05e
Commit
2f19e05e
authored
Aug 19, 2021
by
edz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
点击修改密码时获取用户信息
parent
0a2f0b3a
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
41 additions
and
3 deletions
+41
-3
user_request.py
all_backend_api/user_request.py
+7
-3
user_request.yaml
all_backend_api/user_request.yaml
+10
-0
path_setting.py
path_setting.py
+2
-0
test_check_pwd.py
test_backend_case/user_case/test_check_pwd.py
+16
-0
check_pwd.yaml
test_backend_data/user_data/check_pwd.yaml
+6
-0
No files found.
all_backend_api/user_request.py
View file @
2f19e05e
...
...
@@ -166,8 +166,9 @@ class user_request(BaseRequest):
self
.
params
[
"repeat_password"
]
=
repeat_password
return
self
.
api_send
(
self
.
data
[
"change_pwdd"
])
#点击修改密码时获取用户信息
def
check_pwd
(
self
):
return
self
.
api_send
(
self
.
data
[
"check_pwd"
])
if
__name__
==
'__main__'
:
#个人中心
...
...
@@ -208,9 +209,12 @@ if __name__ == '__main__':
#忘记密码-修改密码
print
(
user_request
()
.
change_pwd
(
'7.48.0'
,
1
,
123456
,
123456
))
#
忘记密码-
修改密码
#修改密码
print
(
user_request
()
.
change_pwdd
(
'7.48.0'
,
123456
,
1
,
123456
,
123456
))
#修改密码时获取账号信息
print
(
user_request
()
.
check_pwd
())
all_backend_api/user_request.yaml
View file @
2f19e05e
...
...
@@ -236,4 +236,13 @@ change_pwdd:
new_password
:
${new_password}
repeat_password
:
${repeat_password}
json
:
{}
isLogin
:
1
#修改密码时获取用户信息
check_pwd
:
method
:
get
url
:
/api/user/check_pwd
params
:
data
:
json
:
{}
isLogin
:
1
\ No newline at end of file
path_setting.py
View file @
2f19e05e
...
...
@@ -643,6 +643,8 @@ FOLLOW_DEL = os.path.join(BASE_DIR, "backend_auto/test_backend_data/user_data",
CHANGE_PWD
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"change_pwd.yaml"
)
#修改密码
CHANGE_PWDD
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"change_pwdd.yaml"
)
#设置密码时获取用户信息
CHECK_PWD
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"check_pwd.yaml"
)
#主播-推荐袋美购列表展示
LIVESERVICES_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"janus_live_request.yaml"
)
...
...
test_backend_case/user_case/test_check_pwd.py
0 → 100644
View file @
2f19e05e
import
pytest
from
ids_list
import
get_ids
import
path_setting
from
in_common.base_request
import
BaseRequest
from
all_backend_api.user_request
import
user_request
class
TestCheckPwd
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
CHECK_PWD
)
check_pwd_case
,
check_pwd_data
=
get_ids
(
data
,
"check_pwd"
)
@pytest.mark.parametrize
(
"param"
,
check_pwd_data
,
ids
=
check_pwd_case
)
def
test_check_pwd
(
self
,
param
):
r
=
user_request
()
.
check_pwd
()
if
r
[
"error"
]
==
0
:
assert
r
[
"error"
]
==
param
[
"assert"
]
\ No newline at end of file
test_backend_data/user_data/check_pwd.yaml
0 → 100644
View file @
2f19e05e
check_pwd
:
#点击修改密码时获取用户信息
-
case
:
"
点击修改密码时成功获取用户信息"
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