forked from Github-Mirrors/canaille
300 lines
8.4 KiB
Python
300 lines
8.4 KiB
Python
from datetime import datetime
|
|
from datetime import timedelta
|
|
|
|
from canaille.account import Invitation
|
|
from canaille.models import User
|
|
|
|
|
|
def test_invitation(testclient, logged_admin, foo_group, smtpd):
|
|
assert User.get("someone") is None
|
|
|
|
res = testclient.get("/invite", status=200)
|
|
|
|
res.form["uid"] = "someone"
|
|
res.form["uid_editable"] = False
|
|
res.form["mail"] = "someone@domain.tld"
|
|
res.form["groups"] = [foo_group.dn]
|
|
res = res.form.submit(name="action", value="send", status=200)
|
|
assert len(smtpd.messages) == 1
|
|
|
|
url = res.pyquery("#copy-text")[0].value
|
|
|
|
# logout
|
|
with testclient.session_transaction() as sess:
|
|
del sess["user_id"]
|
|
|
|
res = testclient.get(url, status=200)
|
|
|
|
assert res.form["uid"].value == "someone"
|
|
assert res.form["uid"].attrs["readonly"]
|
|
assert res.form["mail"].value == "someone@domain.tld"
|
|
assert res.form["groups"].value == [foo_group.dn]
|
|
|
|
res.form["password1"] = "whatever"
|
|
res.form["password2"] = "whatever"
|
|
res.form["givenName"] = "George"
|
|
res.form["sn"] = "Abitbol"
|
|
|
|
res = res.form.submit(status=302)
|
|
res = res.follow(status=200)
|
|
|
|
assert "You account has been created successfuly." in res
|
|
|
|
user = User.get("someone")
|
|
user.load_groups()
|
|
foo_group.reload()
|
|
assert user.check_password("whatever")
|
|
assert user.groups == [foo_group]
|
|
|
|
with testclient.session_transaction() as sess:
|
|
assert "user_id" in sess
|
|
del sess["user_id"]
|
|
|
|
res = testclient.get(url, status=302)
|
|
|
|
|
|
def test_invitation_editable_uid(testclient, logged_admin, foo_group, smtpd):
|
|
assert User.get("jackyjack") is None
|
|
assert User.get("djorje") is None
|
|
|
|
res = testclient.get("/invite", status=200)
|
|
|
|
res.form["uid"] = "jackyjack"
|
|
res.form["uid_editable"] = True
|
|
res.form["mail"] = "jackyjack@domain.tld"
|
|
res.form["groups"] = [foo_group.dn]
|
|
res = res.form.submit(name="action", value="send", status=200)
|
|
assert len(smtpd.messages) == 1
|
|
|
|
url = res.pyquery("#copy-text")[0].value
|
|
|
|
# logout
|
|
with testclient.session_transaction() as sess:
|
|
del sess["user_id"]
|
|
|
|
res = testclient.get(url, status=200)
|
|
|
|
assert res.form["uid"].value == "jackyjack"
|
|
assert "readonly" not in res.form["uid"].attrs
|
|
assert res.form["mail"].value == "jackyjack@domain.tld"
|
|
assert res.form["groups"].value == [foo_group.dn]
|
|
|
|
res.form["uid"] = "djorje"
|
|
res.form["password1"] = "whatever"
|
|
res.form["password2"] = "whatever"
|
|
res.form["givenName"] = "George"
|
|
res.form["sn"] = "Abitbol"
|
|
|
|
res = res.form.submit(status=302)
|
|
res = res.follow(status=200)
|
|
|
|
assert "You account has been created successfuly." in res
|
|
|
|
user = User.get("djorje")
|
|
user.load_groups()
|
|
foo_group.reload()
|
|
assert user.check_password("whatever")
|
|
assert user.groups == [foo_group]
|
|
|
|
with testclient.session_transaction() as sess:
|
|
assert "user_id" in sess
|
|
del sess["user_id"]
|
|
|
|
|
|
def test_generate_link(testclient, logged_admin, foo_group, smtpd):
|
|
assert User.get("sometwo") is None
|
|
|
|
res = testclient.get("/invite", status=200)
|
|
|
|
res.form["uid"] = "sometwo"
|
|
res.form["mail"] = "sometwo@domain.tld"
|
|
res.form["groups"] = [foo_group.dn]
|
|
res = res.form.submit(name="action", value="generate", status=200)
|
|
assert len(smtpd.messages) == 0
|
|
|
|
url = res.pyquery("#copy-text")[0].value
|
|
|
|
# logout
|
|
with testclient.session_transaction() as sess:
|
|
del sess["user_id"]
|
|
|
|
res = testclient.get(url, status=200)
|
|
|
|
assert res.form["uid"].value == "sometwo"
|
|
assert res.form["mail"].value == "sometwo@domain.tld"
|
|
assert res.form["groups"].value == [foo_group.dn]
|
|
|
|
res.form["password1"] = "whatever"
|
|
res.form["password2"] = "whatever"
|
|
res.form["givenName"] = "George"
|
|
res.form["sn"] = "Abitbol"
|
|
|
|
res = res.form.submit(status=302)
|
|
res = res.follow(status=200)
|
|
|
|
user = User.get("sometwo")
|
|
user.load_groups()
|
|
foo_group.reload()
|
|
assert user.check_password("whatever")
|
|
assert user.groups == [foo_group]
|
|
|
|
with testclient.session_transaction() as sess:
|
|
assert "user_id" in sess
|
|
del sess["user_id"]
|
|
|
|
res = testclient.get(url, status=302)
|
|
|
|
|
|
def test_invitation_login_already_taken(testclient, logged_admin):
|
|
res = testclient.get("/invite", status=200)
|
|
|
|
res.form["uid"] = logged_admin.uid
|
|
res.form["mail"] = logged_admin.mail[0]
|
|
res = res.form.submit(name="action", value="send", status=200)
|
|
|
|
assert "The login 'admin' already exists" in res.text
|
|
assert "The email 'jane@doe.com' already exists" in res.text
|
|
|
|
|
|
def test_registration(testclient, foo_group):
|
|
invitation = Invitation(
|
|
datetime.now().isoformat(),
|
|
"someoneelse",
|
|
False,
|
|
"someone@mydomain.tld",
|
|
[foo_group.dn],
|
|
)
|
|
b64 = invitation.b64()
|
|
hash = invitation.profile_hash()
|
|
|
|
testclient.get(f"/register/{b64}/{hash}", status=200)
|
|
|
|
|
|
def test_registration_invalid_hash(testclient, foo_group):
|
|
now = datetime.now().isoformat()
|
|
invitation = Invitation(
|
|
now, "anything", False, "someone@mydomain.tld", [foo_group.dn]
|
|
)
|
|
b64 = invitation.b64()
|
|
|
|
testclient.get(f"/register/{b64}/invalid", status=302)
|
|
|
|
|
|
def test_registration_invalid_data(testclient, foo_group):
|
|
invitation = Invitation(
|
|
datetime.now().isoformat(),
|
|
"someoneelse",
|
|
False,
|
|
"someone@mydomain.tld",
|
|
[foo_group.dn],
|
|
)
|
|
hash = invitation.profile_hash()
|
|
|
|
testclient.get(f"/register/invalid/{hash}", status=302)
|
|
|
|
|
|
def test_registration_more_than_48_hours_after_invitation(testclient, foo_group):
|
|
two_days_ago = datetime.now() - timedelta(hours=48)
|
|
invitation = Invitation(
|
|
two_days_ago.isoformat(),
|
|
"someoneelse",
|
|
False,
|
|
"someone@mydomain.tld",
|
|
[foo_group.dn],
|
|
)
|
|
hash = invitation.profile_hash()
|
|
b64 = invitation.b64()
|
|
|
|
testclient.get(f"/register/{b64}/{hash}", status=302)
|
|
|
|
|
|
def test_registration_no_password(testclient, foo_group):
|
|
invitation = Invitation(
|
|
datetime.now().isoformat(),
|
|
"someoneelse",
|
|
False,
|
|
"someone@mydomain.tld",
|
|
[foo_group.dn],
|
|
)
|
|
hash = invitation.profile_hash()
|
|
b64 = invitation.b64()
|
|
url = f"/register/{b64}/{hash}"
|
|
|
|
res = testclient.get(url, status=200)
|
|
assert "required" in res.form["password1"].attrs
|
|
assert "required" in res.form["password2"].attrs
|
|
|
|
res = res.form.submit(status=200)
|
|
assert "This field is required." in res.text, res.text
|
|
|
|
assert not User.get("someoneelse")
|
|
|
|
with testclient.session_transaction() as sess:
|
|
assert "user_id" not in sess
|
|
|
|
|
|
def test_no_registration_if_logged_in(testclient, logged_user, foo_group):
|
|
invitation = Invitation(
|
|
datetime.now().isoformat(),
|
|
"someoneelse",
|
|
False,
|
|
"someone@mydomain.tld",
|
|
[foo_group.dn],
|
|
)
|
|
hash = invitation.profile_hash()
|
|
b64 = invitation.b64()
|
|
url = f"/register/{b64}/{hash}"
|
|
|
|
testclient.get(url, status=302)
|
|
|
|
|
|
def test_unavailable_if_no_smtp(testclient, logged_admin):
|
|
res = testclient.get("/users")
|
|
assert "Invite a user" in res.text
|
|
res = testclient.get("/profile")
|
|
assert "Invite a user" in res.text
|
|
testclient.get("/invite")
|
|
|
|
del testclient.app.config["SMTP"]
|
|
|
|
res = testclient.get("/users")
|
|
assert "Invite a user" not in res.text
|
|
res = testclient.get("/profile")
|
|
assert "Invite a user" not in res.text
|
|
testclient.get("/invite", status=500, expect_errors=True)
|
|
|
|
|
|
def test_groups_are_saved_even_when_user_does_not_have_read_permission(
|
|
testclient, foo_group
|
|
):
|
|
testclient.app.config["ACL"]["DEFAULT"]["READ"] = [
|
|
"uid"
|
|
] # remove groups from default read permissions
|
|
|
|
invitation = Invitation(
|
|
datetime.now().isoformat(),
|
|
"someoneelse",
|
|
False,
|
|
"someone@mydomain.tld",
|
|
[foo_group.dn],
|
|
)
|
|
b64 = invitation.b64()
|
|
hash = invitation.profile_hash()
|
|
|
|
res = testclient.get(f"/register/{b64}/{hash}", status=200)
|
|
|
|
assert res.form["groups"].value == [foo_group.dn]
|
|
assert res.form["groups"].attrs["readonly"]
|
|
|
|
res.form["password1"] = "whatever"
|
|
res.form["password2"] = "whatever"
|
|
res.form["givenName"] = "George"
|
|
res.form["sn"] = "Abitbol"
|
|
|
|
res = res.form.submit(status=302)
|
|
res = res.follow(status=200)
|
|
|
|
user = User.get("someoneelse")
|
|
user.load_groups()
|
|
foo_group.reload()
|
|
assert user.groups == [foo_group]
|