mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
87 lines
2.5 KiB
Python
87 lines
2.5 KiB
Python
from flask import url_for
|
|
|
|
from app.models import User, UserEmailVerification
|
|
from .utils import login, logout, is_logged_in
|
|
from .utils import client # noqa
|
|
|
|
|
|
def test_login_logout(client):
|
|
rv = client.get("/")
|
|
assert not is_logged_in(rv)
|
|
|
|
rv = login(client, "rubenwardy", "tuckfrump")
|
|
assert b"Logged in successfully." in rv.data
|
|
assert is_logged_in(rv)
|
|
|
|
rv = client.get("/")
|
|
assert is_logged_in(rv)
|
|
|
|
rv = logout(client)
|
|
assert not is_logged_in(rv)
|
|
|
|
rv = login(client, "rubenwardy", "wrongpass")
|
|
assert b"Incorrect password. Did you set one?" in rv.data
|
|
assert not is_logged_in(rv)
|
|
|
|
rv = login(client, "badname", "wrongpass")
|
|
assert b"User badname does not exist" in rv.data
|
|
assert not is_logged_in(rv)
|
|
|
|
rv = login(client, "bad@email.com", "wrongpass")
|
|
assert b"Incorrect email or password" in rv.data
|
|
assert not is_logged_in(rv)
|
|
|
|
|
|
def register(client, username, display_name, password, email, question):
|
|
return client.post("/user/register/", data=dict(
|
|
username=username,
|
|
display_name=display_name,
|
|
email=email,
|
|
password=password,
|
|
question=question,
|
|
agree=True
|
|
), follow_redirects=True)
|
|
|
|
|
|
def test_register(client):
|
|
username = "testuser123"
|
|
assert User.query.filter_by(username=username).first() is None
|
|
|
|
rv = register(client, username, "Test User", "password", "test@example.com", "13")
|
|
assert b"Incorrect captcha answer" in rv.data
|
|
|
|
rv = register(client, "££££!!!", "Test User", "password", "test@example.com", "13")
|
|
assert b"invalid-feedback" in rv.data
|
|
assert b"Only a-zA-Z0-9._ allowed</p>" in rv.data
|
|
|
|
|
|
def test_register_flow(client):
|
|
username = "testuser123"
|
|
|
|
assert User.query.filter_by(username=username).first() is None
|
|
|
|
rv = register(client, username, "Test User", "password", "test@example.com", "19")
|
|
assert b"Check your email address to verify your account" in rv.data
|
|
|
|
user = User.query.filter_by(username=username).first()
|
|
assert user is not None
|
|
assert user.username == username
|
|
assert user.display_name == "Test User"
|
|
assert not user.is_active
|
|
assert user.email_confirmed_at is None
|
|
assert user.email == "test@example.com"
|
|
|
|
rv = login(client, username, "password")
|
|
assert b"You need to confirm the registration email" in rv.data
|
|
assert not is_logged_in(rv)
|
|
|
|
email = UserEmailVerification.query.filter_by(user_id=user.id).first()
|
|
assert email is not None
|
|
|
|
rv = client.get(url_for('users.verify_email', token=email.token), follow_redirects=True)
|
|
assert b"You may now log in" in rv.data
|
|
|
|
rv = login(client, username, "password")
|
|
assert b"Logged in successfully." in rv.data
|
|
assert is_logged_in(rv)
|