amanuensis/tests/test_membership.py

42 lines
1.4 KiB
Python
Raw Normal View History

2021-05-31 19:13:37 +00:00
import pytest
from sqlalchemy import select
from amanuensis.db import *
from amanuensis.errors import ArgumentError
2021-05-30 00:38:14 +00:00
import amanuensis.backend.membership as memq
2021-05-31 17:52:37 +00:00
def test_create_membership(db: DbContext, make_user, make_lexicon):
2021-05-30 00:38:14 +00:00
"""Test joining a game."""
# Set up a user and a lexicon
2021-05-31 17:52:37 +00:00
new_user = make_user()
2021-05-30 00:38:14 +00:00
assert new_user.id, 'Failed to create user'
2021-05-31 17:52:37 +00:00
new_lexicon = make_lexicon()
2021-05-30 00:38:14 +00:00
assert new_lexicon.id, 'Failed to create lexicon'
# Add the user to the lexicon as an editor
mem = memq.create(db, new_user.id, new_lexicon.id, True)
assert mem, 'Failed to create membership'
# Check that the user and lexicon are mutually visible in the ORM relationships
2021-05-31 19:13:37 +00:00
assert any(map(lambda mem: mem.lexicon == new_lexicon, new_user.memberships))
assert any(map(lambda mem: mem.user == new_user, new_lexicon.memberships))
2021-05-30 00:38:14 +00:00
# Check that the editor flag was set properly
2021-05-31 19:13:37 +00:00
editor = db(
select(User)
.join(User.memberships)
.join(Membership.lexicon)
.where(Lexicon.id == new_lexicon.id)
.where(Membership.is_editor == True)
).scalar_one()
assert editor is not None
assert isinstance(editor, User)
assert editor.id == new_user.id
# Check that joining twice is not allowed
with pytest.raises(ArgumentError):
mem2 = memq.create(db, new_user.id, new_lexicon.id, False)
assert mem2