2020-01-28 05:50:25 +01:00
|
|
|
from flask import url_for
|
|
|
|
|
2022-10-14 17:35:34 +02:00
|
|
|
from app.db import Session
|
2022-12-08 10:57:46 +01:00
|
|
|
from app.models import DailyMetric
|
2022-10-14 17:35:34 +02:00
|
|
|
|
2020-01-28 05:50:25 +01:00
|
|
|
|
|
|
|
def test_register_success(flask_client):
|
|
|
|
r = flask_client.post(
|
|
|
|
url_for("auth.register"),
|
2022-12-08 10:57:46 +01:00
|
|
|
data={"email": "abcd@gmail.com", "password": "password"},
|
2020-01-28 05:50:25 +01:00
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert r.status_code == 200
|
2022-10-14 17:35:34 +02:00
|
|
|
# User arrives at the waiting activation page.
|
2020-01-28 05:50:25 +01:00
|
|
|
assert b"An email to validate your email is on its way" in r.data
|
|
|
|
|
|
|
|
|
2022-10-14 17:35:34 +02:00
|
|
|
def test_register_increment_nb_new_web_non_proton_user(flask_client):
|
|
|
|
daily_metric = DailyMetric.get_or_create_today_metric()
|
|
|
|
Session.commit()
|
|
|
|
nb_new_web_non_proton_user = daily_metric.nb_new_web_non_proton_user
|
|
|
|
|
|
|
|
r = flask_client.post(
|
|
|
|
url_for("auth.register"),
|
2022-12-08 10:57:46 +01:00
|
|
|
data={"email": "abcd@gmail.com", "password": "password"},
|
2022-10-14 17:35:34 +02:00
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert r.status_code == 200
|
|
|
|
new_daily_metric = DailyMetric.get_or_create_today_metric()
|
|
|
|
assert new_daily_metric.nb_new_web_non_proton_user == nb_new_web_non_proton_user + 1
|
|
|
|
|
|
|
|
|
2020-01-28 05:50:25 +01:00
|
|
|
def test_register_disabled(flask_client):
|
|
|
|
"""User cannot create new account when DISABLE_REGISTRATION."""
|
2022-12-08 10:57:46 +01:00
|
|
|
from app import config
|
2020-01-28 05:50:25 +01:00
|
|
|
|
|
|
|
config.DISABLE_REGISTRATION = True
|
|
|
|
|
|
|
|
r = flask_client.post(
|
|
|
|
url_for("auth.register"),
|
2020-04-27 23:15:30 +02:00
|
|
|
data={"email": "abcd@gmail.com", "password": "password"},
|
2020-01-28 05:50:25 +01:00
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert b"Registration is closed" in r.data
|