|
@@ -69,7 +69,7 @@ def test_auth_register_success(flask_client):
|
|
|
assert AccountActivation.get(1) is None
|
|
|
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_register"), json={"email": "a@b.c", "password": "password"},
|
|
|
+ url_for("api.auth_register"), json={"email": "a@b.c", "password": "password"}
|
|
|
)
|
|
|
|
|
|
assert r.status_code == 200
|
|
@@ -84,7 +84,7 @@ def test_auth_register_success(flask_client):
|
|
|
|
|
|
def test_auth_register_too_short_password(flask_client):
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_register"), json={"email": "a@b.c", "password": "short"},
|
|
|
+ url_for("api.auth_register"), json={"email": "a@b.c", "password": "short"}
|
|
|
)
|
|
|
|
|
|
assert r.status_code == 400
|
|
@@ -93,7 +93,7 @@ def test_auth_register_too_short_password(flask_client):
|
|
|
|
|
|
def test_auth_activate_success(flask_client):
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_register"), json={"email": "a@b.c", "password": "password"},
|
|
|
+ url_for("api.auth_register"), json={"email": "a@b.c", "password": "password"}
|
|
|
)
|
|
|
|
|
|
assert r.status_code == 200
|
|
@@ -105,14 +105,14 @@ def test_auth_activate_success(flask_client):
|
|
|
assert len(act_code.code) == 6
|
|
|
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_activate"), json={"email": "a@b.c", "code": act_code.code},
|
|
|
+ url_for("api.auth_activate"), json={"email": "a@b.c", "code": act_code.code}
|
|
|
)
|
|
|
assert r.status_code == 200
|
|
|
|
|
|
|
|
|
def test_auth_activate_wrong_email(flask_client):
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_activate"), json={"email": "a@b.c", "code": "123456"},
|
|
|
+ url_for("api.auth_activate"), json={"email": "a@b.c", "code": "123456"}
|
|
|
)
|
|
|
assert r.status_code == 400
|
|
|
|
|
@@ -122,14 +122,14 @@ def test_auth_activate_user_already_activated(flask_client):
|
|
|
db.session.commit()
|
|
|
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_activate"), json={"email": "a@b.c", "code": "123456"},
|
|
|
+ url_for("api.auth_activate"), json={"email": "a@b.c", "code": "123456"}
|
|
|
)
|
|
|
assert r.status_code == 400
|
|
|
|
|
|
|
|
|
def test_auth_activate_wrong_code(flask_client):
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_register"), json={"email": "a@b.c", "password": "password"},
|
|
|
+ url_for("api.auth_register"), json={"email": "a@b.c", "password": "password"}
|
|
|
)
|
|
|
|
|
|
assert r.status_code == 200
|
|
@@ -145,7 +145,7 @@ def test_auth_activate_wrong_code(flask_client):
|
|
|
wrong_code = act_code.code + "123"
|
|
|
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_activate"), json={"email": "a@b.c", "code": wrong_code},
|
|
|
+ url_for("api.auth_activate"), json={"email": "a@b.c", "code": wrong_code}
|
|
|
)
|
|
|
assert r.status_code == 400
|
|
|
|
|
@@ -156,7 +156,7 @@ def test_auth_activate_wrong_code(flask_client):
|
|
|
|
|
|
def test_auth_activate_too_many_wrong_code(flask_client):
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_register"), json={"email": "a@b.c", "password": "password"},
|
|
|
+ url_for("api.auth_register"), json={"email": "a@b.c", "password": "password"}
|
|
|
)
|
|
|
|
|
|
assert r.status_code == 200
|
|
@@ -173,13 +173,13 @@ def test_auth_activate_too_many_wrong_code(flask_client):
|
|
|
|
|
|
for _ in range(2):
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_activate"), json={"email": "a@b.c", "code": wrong_code},
|
|
|
+ url_for("api.auth_activate"), json={"email": "a@b.c", "code": wrong_code}
|
|
|
)
|
|
|
assert r.status_code == 400
|
|
|
|
|
|
# the activation code is deleted
|
|
|
r = flask_client.post(
|
|
|
- url_for("api.auth_activate"), json={"email": "a@b.c", "code": wrong_code},
|
|
|
+ url_for("api.auth_activate"), json={"email": "a@b.c", "code": wrong_code}
|
|
|
)
|
|
|
|
|
|
assert r.status_code == 410
|
|
@@ -192,7 +192,7 @@ def test_auth_reactivate_success(flask_client):
|
|
|
User.create(email="a@b.c", password="password", name="Test User")
|
|
|
db.session.commit()
|
|
|
|
|
|
- r = flask_client.post(url_for("api.auth_reactivate"), json={"email": "a@b.c"},)
|
|
|
+ r = flask_client.post(url_for("api.auth_reactivate"), json={"email": "a@b.c"})
|
|
|
assert r.status_code == 200
|
|
|
|
|
|
# make sure an activation code is created
|