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
0a2f0b3a
Commit
0a2f0b3a
authored
Aug 19, 2021
by
edz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改密码
parent
a9eba9ef
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
49 additions
and
0 deletions
+49
-0
user_request.py
all_backend_api/user_request.py
+11
-0
user_request.yaml
all_backend_api/user_request.yaml
+15
-0
path_setting.py
path_setting.py
+2
-0
test_change_pwdd.py
test_backend_case/user_case/test_change_pwdd.py
+21
-0
No files found.
all_backend_api/user_request.py
View file @
0a2f0b3a
...
...
@@ -157,6 +157,14 @@ class user_request(BaseRequest):
return
self
.
api_send
(
self
.
data
[
"change_pwd"
])
# 修改密码
def
change_pwdd
(
self
,
version
,
change_type
,
password
,
new_password
,
repeat_password
):
self
.
params
[
"version"
]
=
version
self
.
params
[
"change_type"
]
=
change_type
self
.
params
[
"password"
]
=
password
self
.
params
[
"new_password"
]
=
new_password
self
.
params
[
"repeat_password"
]
=
repeat_password
return
self
.
api_send
(
self
.
data
[
"change_pwdd"
])
...
...
@@ -200,6 +208,9 @@ 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
))
all_backend_api/user_request.yaml
View file @
0a2f0b3a
...
...
@@ -223,3 +223,17 @@ change_pwd:
repeat_password
:
${repeat_password}
json
:
{}
isLogin
:
1
#修改密码
change_pwdd
:
method
:
post
url
:
/api/user/change_pwd
params
:
version
:
${version}
data
:
password
:
${password}
change_type
:
${change_type}
new_password
:
${new_password}
repeat_password
:
${repeat_password}
json
:
{}
isLogin
:
1
\ No newline at end of file
path_setting.py
View file @
0a2f0b3a
...
...
@@ -641,6 +641,8 @@ FOLLOW_ADD = os.path.join(BASE_DIR, "backend_auto/test_backend_data/user_data",
FOLLOW_DEL
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/test_backend_data/user_data"
,
"follow_del.yaml"
)
#忘记密码-设置密码
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"
)
#主播-推荐袋美购列表展示
LIVESERVICES_CONFIG
=
os
.
path
.
join
(
BASE_DIR
,
"backend_auto/all_backend_api"
,
"janus_live_request.yaml"
)
...
...
test_backend_case/user_case/test_change_pwdd.py
View file @
0a2f0b3a
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
TestChangePwdd
:
data
=
BaseRequest
()
.
api_load
(
path_setting
.
CHANGE_PWDD
)
change_pwdd_case
,
change_pwdd_data
=
get_ids
(
data
,
"change_pwdd"
)
@pytest.mark.parametrize
(
"param"
,
change_pwdd_data
,
ids
=
change_pwdd_case
)
def
test_change_pwdd
(
self
,
param
):
r
=
user_request
()
.
change_pwdd
(
param
[
"version"
],
param
[
"password"
]
,
param
[
"change_type"
],
param
[
"new_password"
],
param
[
"repeat_password"
])
if
r
.
get
(
"error_code"
)
==
22006
:
assert
r
[
"message"
]
==
param
[
"assert"
]
elif
r
.
get
(
"error_code"
)
==
-
1
:
assert
r
[
"message"
]
==
param
[
"assert"
]
elif
r
.
get
(
"error"
)
==
0
:
assert
r
[
"error"
]
==
param
[
"assert"
]
# else:
# assert r["message"] == param["assert2"]
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