python-telegram-bot/tests/test_chat.py

111 lines
3.6 KiB
Python
Raw Normal View History

2016-05-15 02:39:11 +02:00
#!/usr/bin/env python
2015-09-07 19:10:57 +02:00
#
# A library that provides a Python interface to the Telegram Bot API
# Copyright (C) 2015-2017
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
2015-09-07 19:10:57 +02:00
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see [http://www.gnu.org/licenses/].
2016-10-17 00:22:40 +02:00
"""This module contains an object that represents Tests for Telegram Chat"""
2015-09-07 19:10:57 +02:00
import unittest
import sys
from flaky import flaky
2015-09-07 19:10:57 +02:00
sys.path.append('.')
import telegram
from tests.base import BaseTest
2015-12-16 15:31:02 +01:00
class ChatTest(BaseTest, unittest.TestCase):
"""This object represents Tests for Telegram Chat."""
2015-09-07 19:10:57 +02:00
def setUp(self):
self._id = -28767330
2015-09-07 19:10:57 +02:00
self.title = 'ToledosPalaceBot - Group'
2015-10-08 15:19:05 +02:00
self.type = 'group'
self.all_members_are_administrators = False
2015-09-07 19:10:57 +02:00
2016-10-12 22:56:57 +02:00
self.json_dict = {
'id': self._id,
2016-10-12 22:56:57 +02:00
'title': self.title,
'type': self.type,
'all_members_are_administrators': self.all_members_are_administrators
2016-10-12 22:56:57 +02:00
}
2015-09-07 19:10:57 +02:00
2015-09-08 01:11:02 +02:00
def test_group_chat_de_json_empty_json(self):
group_chat = telegram.Chat.de_json({}, self._bot)
2015-09-08 01:11:02 +02:00
self.assertEqual(group_chat, None)
2015-09-07 19:10:57 +02:00
def test_group_chat_de_json(self):
group_chat = telegram.Chat.de_json(self.json_dict, self._bot)
2015-09-07 19:10:57 +02:00
self.assertEqual(group_chat.id, self._id)
2015-09-07 19:10:57 +02:00
self.assertEqual(group_chat.title, self.title)
2015-10-08 15:19:05 +02:00
self.assertEqual(group_chat.type, self.type)
self.assertEqual(group_chat.all_members_are_administrators,
self.all_members_are_administrators)
2015-09-07 19:10:57 +02:00
def test_group_chat_to_json(self):
group_chat = telegram.Chat.de_json(self.json_dict, self._bot)
2015-09-07 19:10:57 +02:00
self.assertTrue(self.is_json(group_chat.to_json()))
def test_group_chat_to_dict(self):
group_chat = telegram.Chat.de_json(self.json_dict, self._bot)
2015-09-07 19:10:57 +02:00
self.assertTrue(self.is_dict(group_chat.to_dict()))
self.assertEqual(group_chat['id'], self._id)
2015-09-07 19:10:57 +02:00
self.assertEqual(group_chat['title'], self.title)
2015-10-08 15:19:05 +02:00
self.assertEqual(group_chat['type'], self.type)
self.assertEqual(group_chat['all_members_are_administrators'],
self.all_members_are_administrators)
2015-09-07 19:10:57 +02:00
@flaky(3, 1)
def test_send_action(self):
"""Test for Chat.send_action"""
self.json_dict['id'] = self._chat_id
group_chat = telegram.Chat.de_json(self.json_dict, self._bot)
group_chat.bot = self._bot
result = group_chat.send_action(telegram.ChatAction.TYPING)
self.assertTrue(result)
def test_equality(self):
a = telegram.Chat(self._id, self.title, self.type)
b = telegram.Chat(self._id, self.title, self.type)
c = telegram.Chat(self._id, "", "")
d = telegram.Chat(0, self.title, self.type)
e = telegram.User(self._id, "")
self.assertEqual(a, b)
self.assertEqual(hash(a), hash(b))
self.assertIsNot(a, b)
self.assertEqual(a, c)
self.assertEqual(hash(a), hash(c))
self.assertNotEqual(a, d)
self.assertNotEqual(hash(a), hash(d))
self.assertNotEqual(a, e)
self.assertNotEqual(hash(a), hash(e))
2016-05-15 02:39:11 +02:00
2015-09-07 19:10:57 +02:00
if __name__ == '__main__':
unittest.main()