ticketfrei3/backend/tests/tests_telegram/test_api_telegram_delete_bot.py

60 lines
2.2 KiB
Python
Raw Normal View History

2020-07-19 12:02:43 +00:00
# Copyright (C) 2020 by Cathy Hu <cathy.hu@fau.de>
# Copyright (C) 2020 by Martin Rey <martin.rey@mailbox.org>
2020-07-19 12:02:43 +00:00
#
# SPDX-License-Identifier: 0BSD
from fastapi import status
from ormantic.exceptions import NoMatch
2023-04-01 13:23:33 +00:00
import pytest
2020-07-19 12:02:43 +00:00
2020-10-13 08:35:20 +00:00
from kibicara.platforms.telegram.model import Telegram, TelegramUser
2020-07-19 12:02:43 +00:00
2023-04-01 13:23:33 +00:00
@pytest.mark.parametrize(
"bot", [{"api_token": "apitoken123", "welcome_message": "msg"}]
)
@pytest.mark.anyio
async def test_telegram_delete_bot(asyncclient, bot, telegram, auth_header):
2023-04-01 13:23:33 +00:00
await TelegramUser.objects.create(user_id=1234, bot=telegram.id)
await TelegramUser.objects.create(user_id=5678, bot=telegram.id)
response = await asyncclient.delete(
"/api/hoods/{0}/telegram/{1}".format(telegram.hood.id, telegram.id),
2020-10-12 20:47:06 +00:00
headers=auth_header,
2020-07-19 12:02:43 +00:00
)
assert response.status_code == status.HTTP_204_NO_CONTENT
2023-04-01 13:23:33 +00:00
with pytest.raises(NoMatch):
await Telegram.objects.get(id=telegram.id)
with pytest.raises(NoMatch):
await TelegramUser.objects.get(id=telegram.id)
2020-07-19 12:02:43 +00:00
2023-04-01 13:23:33 +00:00
@pytest.mark.anyio
async def test_telegram_delete_bot_invalid_id(asyncclient, auth_header, hood_id):
response = await asyncclient.delete(
"/api/hoods/1337/telegram/123", headers=auth_header
)
2020-07-19 12:02:43 +00:00
assert response.status_code == status.HTTP_404_NOT_FOUND
2023-04-01 13:23:33 +00:00
response = await asyncclient.delete(
"/api/hoods/wrong/telegram/123", headers=auth_header
)
2020-07-19 12:02:43 +00:00
assert response.status_code == status.HTTP_422_UNPROCESSABLE_ENTITY
2023-04-01 13:23:33 +00:00
response = await asyncclient.delete(
"/api/hoods/{0}/telegram/7331".format(hood_id), headers=auth_header
2020-10-12 20:47:06 +00:00
)
2020-07-19 12:02:43 +00:00
assert response.status_code == status.HTTP_404_NOT_FOUND
2023-04-01 13:23:33 +00:00
response = await asyncclient.delete(
"/api/hoods/{0}/telegram/wrong".format(hood_id), headers=auth_header
2020-07-19 12:02:43 +00:00
)
assert response.status_code == status.HTTP_422_UNPROCESSABLE_ENTITY
2023-04-01 13:23:33 +00:00
@pytest.mark.parametrize(
"bot", [{"api_token": "apitoken123", "welcome_message": "msg"}]
)
@pytest.mark.anyio
async def test_telegram_delete_bot_unauthorized(asyncclient, bot, telegram):
response = await asyncclient.delete(
"/api/hoods/{0}/telegram/{1}".format(telegram.hood.id, telegram.id)
2020-10-12 20:47:06 +00:00
)
2020-07-19 12:02:43 +00:00
assert response.status_code == status.HTTP_401_UNAUTHORIZED