mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
3de83f2f05
* Add toggle to check if a user is premium without the partner subscription * fix test * Parter created users do not have a newsletter alias id --------- Co-authored-by: Adrià Casajús <adria.casajus@proton.ch>
27 lines
786 B
Python
27 lines
786 B
Python
from flask import url_for
|
|
|
|
from app.db import Session
|
|
from app.models import User, ResetPasswordCode
|
|
from tests.utils import create_new_user, random_token
|
|
|
|
|
|
def test_successful_reset_password(flask_client):
|
|
user = create_new_user()
|
|
original_pass_hash = user.password
|
|
user_id = user.id
|
|
reset_code = random_token()
|
|
ResetPasswordCode.create(user_id=user.id, code=reset_code)
|
|
ResetPasswordCode.create(user_id=user.id, code=random_token())
|
|
Session.commit()
|
|
|
|
r = flask_client.post(
|
|
url_for("auth.reset_password", code=reset_code),
|
|
data={"password": "1231idsfjaads"},
|
|
)
|
|
|
|
assert r.status_code == 302
|
|
|
|
assert ResetPasswordCode.get_by(user_id=user_id) is None
|
|
user = User.get(user_id)
|
|
assert user.password != original_pass_hash
|