2023-04-24 06:57:38 +00:00
|
|
|
from flask import current_app as Response
|
|
|
|
from flask.testing import FlaskClient
|
|
|
|
|
|
|
|
from app import models as m
|
|
|
|
from tests.utils import login
|
|
|
|
|
|
|
|
|
|
|
|
def test_create_book(client: FlaskClient):
|
|
|
|
login(client)
|
|
|
|
|
|
|
|
BOOK_NAME = "Test Book"
|
|
|
|
|
|
|
|
# label len < 6
|
|
|
|
response: Response = client.post(
|
|
|
|
"/book/create",
|
|
|
|
data=dict(
|
|
|
|
label="12345",
|
|
|
|
),
|
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert b"Label must be between 6 and 1024 characters long." in response.data
|
|
|
|
|
|
|
|
book = m.Book.query.filter_by(label=BOOK_NAME).first()
|
|
|
|
|
|
|
|
assert not book
|
|
|
|
assert not m.Book.query.count()
|
|
|
|
|
|
|
|
# label len > 1024
|
|
|
|
response: Response = client.post(
|
|
|
|
"/book/create",
|
|
|
|
data=dict(
|
|
|
|
label="".join(["0" for _ in range(1025)]),
|
|
|
|
),
|
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert b"Label must be between 6 and 1024 characters long." in response.data
|
|
|
|
|
|
|
|
book = m.Book.query.filter_by(label=BOOK_NAME).first()
|
|
|
|
|
|
|
|
assert not book
|
|
|
|
assert not m.Book.query.count()
|
|
|
|
|
|
|
|
response: Response = client.post(
|
|
|
|
"/book/create",
|
|
|
|
data=dict(
|
|
|
|
label=BOOK_NAME,
|
|
|
|
),
|
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert b"Book added!" in response.data
|
|
|
|
|
|
|
|
book = m.Book.query.filter_by(label=BOOK_NAME).first()
|
|
|
|
|
|
|
|
assert book
|
2023-04-24 07:20:31 +00:00
|
|
|
assert book.versions
|
|
|
|
assert len(book.versions) == 1
|
|
|
|
|
|
|
|
|
2023-04-24 08:30:44 +00:00
|
|
|
def test_add_contributor(client: FlaskClient):
|
|
|
|
_, user = login(client)
|
|
|
|
user: m.User
|
2023-04-24 07:20:31 +00:00
|
|
|
|
2023-04-24 08:30:44 +00:00
|
|
|
moderator = m.User(username="Moderator", password="test").save()
|
2023-04-24 07:20:31 +00:00
|
|
|
|
2023-04-24 08:30:44 +00:00
|
|
|
moderators_book = m.Book(label="Test Book", user_id=moderator.id).save()
|
|
|
|
response: Response = client.post(
|
|
|
|
f"/book/{moderators_book.id}/add_contributor",
|
|
|
|
data=dict(user_id=moderator.id, role=m.BookContributor.Roles.MODERATOR),
|
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert b"You are not owner of this book!" in response.data
|
2023-04-24 07:20:31 +00:00
|
|
|
|
2023-04-24 08:30:44 +00:00
|
|
|
book = m.Book(label="Test Book", user_id=user.id).save()
|
|
|
|
|
|
|
|
response: Response = client.post(
|
|
|
|
f"/book/{book.id}/add_contributor",
|
|
|
|
data=dict(user_id=moderator.id, role=m.BookContributor.Roles.MODERATOR),
|
|
|
|
follow_redirects=True,
|
|
|
|
)
|
2023-04-24 07:20:31 +00:00
|
|
|
|
2023-04-24 08:30:44 +00:00
|
|
|
assert response.status_code == 200
|
|
|
|
assert b"Contributor was added!" in response.data
|
2023-04-25 08:20:37 +00:00
|
|
|
response: Response = client.post(
|
|
|
|
f"/book/{book.id}/add_contributor",
|
|
|
|
data=dict(user_id=moderator.id, role=m.BookContributor.Roles.MODERATOR),
|
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert b"Already exists!" in response.data
|
2023-04-24 08:30:44 +00:00
|
|
|
|
|
|
|
contributor: m.BookContributor = m.BookContributor.query.filter_by(
|
|
|
|
user=moderator, book=book
|
|
|
|
).first()
|
|
|
|
assert contributor.role == m.BookContributor.Roles.MODERATOR
|
|
|
|
assert len(book.contributors) == 1
|
|
|
|
|
|
|
|
editor = m.User(username="Editor", password="test").save()
|
|
|
|
response: Response = client.post(
|
|
|
|
f"/book/{book.id}/add_contributor",
|
|
|
|
data=dict(user_id=editor.id, role=m.BookContributor.Roles.EDITOR),
|
|
|
|
follow_redirects=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
assert response.status_code == 200
|
|
|
|
assert b"Contributor was added!" in response.data
|
2023-04-24 07:20:31 +00:00
|
|
|
|
2023-04-24 08:30:44 +00:00
|
|
|
contributor: m.BookContributor = m.BookContributor.query.filter_by(
|
|
|
|
user=editor, book=book
|
|
|
|
).first()
|
|
|
|
assert contributor.role == m.BookContributor.Roles.EDITOR
|
|
|
|
assert len(book.contributors) == 2
|