2021-06-16 19:23:25 -04:00
|
|
|
"""Main test module."""
|
|
|
|
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
|
|
|
|
import aiohttp
|
|
|
|
import nio
|
|
|
|
|
2021-07-11 10:17:09 -04:00
|
|
|
from .utils import BOT_URL, MATRIX_ID, MATRIX_PW, MATRIX_URL, AbstractBotTest
|
2021-06-16 19:23:25 -04:00
|
|
|
|
|
|
|
KEY = os.environ['API_KEY']
|
|
|
|
|
|
|
|
|
|
|
|
class BotTest(AbstractBotTest):
|
|
|
|
"""Main test class."""
|
|
|
|
async def test_errors(self):
|
|
|
|
"""Check the bot's error paths."""
|
|
|
|
async with aiohttp.ClientSession() as session:
|
2021-07-11 10:17:09 -04:00
|
|
|
async with session.get(BOT_URL) as response:
|
2021-06-16 19:23:25 -04:00
|
|
|
self.assertEqual(await response.json(), {'status': 400, 'ret': 'Invalid JSON'})
|
2021-07-11 10:17:09 -04:00
|
|
|
async with session.post(BOT_URL, data=json.dumps({'toto': 3})) as response:
|
2021-06-16 19:23:25 -04:00
|
|
|
self.assertEqual(await response.json(), {'status': 400, 'ret': 'Missing text and/or API key property'})
|
2021-07-11 10:17:09 -04:00
|
|
|
async with session.post(BOT_URL, data=json.dumps({'text': 3, 'key': None})) as response:
|
2021-06-16 19:23:25 -04:00
|
|
|
self.assertEqual(await response.json(), {'status': 401, 'ret': 'Invalid API key'})
|
2021-07-11 10:17:09 -04:00
|
|
|
async with session.post(BOT_URL, data=json.dumps({'text': 3, 'key': KEY})) as response:
|
2021-06-16 19:23:25 -04:00
|
|
|
# TODO: we are not sending to a real room, so this should not be "OK"
|
|
|
|
self.assertEqual(await response.json(), {'status': 200, 'ret': 'OK'})
|
|
|
|
|
|
|
|
async def test_message(self):
|
|
|
|
"""Send a markdown message, and check the result."""
|
|
|
|
text = '# Hello'
|
|
|
|
messages = []
|
|
|
|
client = nio.AsyncClient(MATRIX_URL, MATRIX_ID)
|
|
|
|
|
|
|
|
await client.login(MATRIX_PW)
|
|
|
|
|
|
|
|
room = await client.room_create()
|
|
|
|
|
2021-07-11 10:17:09 -04:00
|
|
|
url = f'{BOT_URL}/{room.room_id}'
|
2021-06-16 19:23:25 -04:00
|
|
|
async with aiohttp.ClientSession() as session:
|
|
|
|
async with session.post(url, data=json.dumps({'text': text, 'key': KEY})) as response:
|
|
|
|
self.assertEqual(await response.json(), {'status': 200, 'ret': 'OK'})
|
|
|
|
|
|
|
|
sync = await client.sync()
|
|
|
|
messages = await client.room_messages(room.room_id, sync.next_batch)
|
|
|
|
|
|
|
|
message = messages.chunk[0]
|
|
|
|
self.assertEqual(message.sender, '@bot:tests')
|
|
|
|
self.assertEqual(message.body, text)
|
|
|
|
self.assertEqual(message.formatted_body, '<h1>Hello</h1>')
|
|
|
|
await client.close()
|