2020-07-08 15:10:00 +00:00
|
|
|
# Copyright (C) 2020 by Maike <maike@systemli.org>
|
2020-07-17 13:47:55 +00:00
|
|
|
# Copyright (C) 2020 by Thomas Lindner <tom@dl6tom.de>
|
2020-07-08 15:10:00 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: 0BSD
|
|
|
|
|
|
|
|
from fastapi import status
|
|
|
|
|
|
|
|
|
|
|
|
def test_email_create_unauthorized(client, hood_id):
|
|
|
|
response = client.post('/api/hoods/%d/email/' % hood_id)
|
|
|
|
assert response.status_code == status.HTTP_401_UNAUTHORIZED
|
|
|
|
|
|
|
|
|
2020-07-11 02:29:44 +00:00
|
|
|
def test_email_delete_unauthorized(client, hood_id, email_row):
|
2020-07-17 13:47:55 +00:00
|
|
|
response = client.delete('/api/hoods/%d/email/%d' % (hood_id, email_row['id']))
|
2020-07-11 02:29:44 +00:00
|
|
|
assert response.status_code == status.HTTP_401_UNAUTHORIZED
|
|
|
|
|
|
|
|
|
|
|
|
def test_email_message_unauthorized(client, hood_id, email_row):
|
|
|
|
body = {"text": "test", "author": "author", "secret": "wrong"}
|
2020-07-13 01:21:11 +00:00
|
|
|
response = client.post('/api/hoods/%d/email/messages/' % hood_id, json=body)
|
2020-07-08 15:10:00 +00:00
|
|
|
assert response.status_code == status.HTTP_401_UNAUTHORIZED
|