mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-25 08:37:07 +01:00
cedc38dcdf
* Added telegram.jpg to gitignore since we're downloading it now * moved download tests to the right tests to make test_file file_id free
228 lines
8.3 KiB
Python
228 lines
8.3 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# 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>
|
|
#
|
|
# 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/].
|
|
"""This module contains an object that represents Tests for Telegram Sticker"""
|
|
|
|
import os
|
|
import unittest
|
|
|
|
from flaky import flaky
|
|
from future.utils import PY2
|
|
|
|
import telegram
|
|
from tests.base import BaseTest, timeout
|
|
from tests.bots import get_bot
|
|
|
|
|
|
class StickerTest(BaseTest, unittest.TestCase):
|
|
"""This object represents Tests for Telegram Sticker."""
|
|
|
|
@classmethod
|
|
def setUpClass(cls):
|
|
cls.emoji = telegram.Emoji.FLEXED_BICEPS
|
|
cls.sticker_file_url = "https://raw.githubusercontent.com/python-telegram-bot/python-telegram-bot/master/tests/data/telegram.webp" # noqa
|
|
|
|
bot_info = get_bot()
|
|
cls._chat_id = bot_info['chat_id']
|
|
cls._bot = telegram.Bot(bot_info['token'])
|
|
|
|
sticker_file = open('tests/data/telegram.webp', 'rb')
|
|
sticker = cls._bot.send_sticker(cls._chat_id, sticker=sticker_file, timeout=10).sticker
|
|
cls.sticker = sticker
|
|
cls.thumb = sticker.thumb
|
|
|
|
# Make sure file has been uploaded.
|
|
# Simple assertions PY2 Only
|
|
assert isinstance(cls.sticker, telegram.Sticker)
|
|
assert isinstance(cls.sticker.file_id, str)
|
|
assert cls.sticker.file_id is not ''
|
|
assert isinstance(cls.thumb, telegram.PhotoSize)
|
|
assert isinstance(cls.thumb.file_id, str)
|
|
assert cls.thumb.file_id is not ''
|
|
|
|
def setUp(self):
|
|
self.sticker_file = open('tests/data/telegram.webp', 'rb')
|
|
self.json_dict = {
|
|
'file_id': self.sticker.file_id,
|
|
'width': self.sticker.width,
|
|
'height': self.sticker.height,
|
|
'thumb': self.thumb.to_dict(),
|
|
'emoji': self.emoji,
|
|
'file_size': self.sticker.file_size
|
|
}
|
|
|
|
def test_expected_values(self):
|
|
self.assertEqual(self.sticker.width, 510)
|
|
self.assertEqual(self.sticker.height, 512)
|
|
self.assertEqual(self.sticker.file_size, 39518)
|
|
self.assertEqual(self.thumb.width, 90)
|
|
self.assertEqual(self.thumb.height, 90)
|
|
self.assertEqual(self.thumb.file_size, 3672)
|
|
|
|
@flaky(3, 1)
|
|
@timeout(10)
|
|
def test_send_sticker_all_args(self):
|
|
message = self._bot.sendSticker(chat_id=self._chat_id, sticker=self.sticker.file_id, disable_notification=False)
|
|
sticker = message.sticker
|
|
|
|
self.assertEqual(sticker, self.sticker)
|
|
|
|
@flaky(3, 1)
|
|
@timeout(10)
|
|
def test_get_and_download_sticker(self):
|
|
new_file = self._bot.getFile(self.sticker.file_id)
|
|
|
|
self.assertEqual(new_file.file_size, self.sticker.file_size)
|
|
self.assertEqual(new_file.file_id, self.sticker.file_id)
|
|
self.assertTrue(new_file.file_path.startswith('https://'))
|
|
|
|
new_file.download('telegram.webp')
|
|
|
|
self.assertTrue(os.path.isfile('telegram.webp'))
|
|
|
|
@flaky(3, 1)
|
|
@timeout(10)
|
|
def test_send_sticker_resend(self):
|
|
message = self._bot.sendSticker(chat_id=self._chat_id, sticker=self.sticker.file_id)
|
|
|
|
sticker = message.sticker
|
|
|
|
self.assertEqual(sticker.file_id, self.sticker.file_id)
|
|
self.assertEqual(sticker.width, self.sticker.width)
|
|
self.assertEqual(sticker.height, self.sticker.height)
|
|
self.assertIsInstance(sticker.thumb, telegram.PhotoSize)
|
|
self.assertEqual(sticker.file_size, self.sticker.file_size)
|
|
|
|
@flaky(3, 1)
|
|
@timeout(10)
|
|
def test_sticker_on_server_emoji(self):
|
|
server_file_id = "CAADAQADHAADyIsGAAFZfq1bphjqlgI"
|
|
message = self._bot.sendSticker(chat_id=self._chat_id, sticker=server_file_id)
|
|
sticker = message.sticker
|
|
if PY2:
|
|
self.assertEqual(sticker.emoji, self.emoji.decode('utf-8'))
|
|
else:
|
|
self.assertEqual(sticker.emoji, self.emoji)
|
|
|
|
@flaky(3, 1)
|
|
@timeout(10)
|
|
def test_send_sticker_from_url(self):
|
|
message = self._bot.sendSticker(chat_id=self._chat_id, sticker=self.sticker_file_url)
|
|
sticker = message.sticker
|
|
|
|
self.assertIsInstance(sticker, telegram.Sticker)
|
|
self.assertIsInstance(sticker.file_id, str)
|
|
self.assertNotEqual(sticker.file_id, '')
|
|
self.assertEqual(sticker.file_size, self.sticker.file_size)
|
|
self.assertEqual(sticker.height, self.sticker.height)
|
|
self.assertEqual(sticker.width, self.sticker.width)
|
|
thumb = sticker.thumb
|
|
self.assertIsInstance(thumb, telegram.PhotoSize)
|
|
self.assertIsInstance(thumb.file_id, str)
|
|
self.assertNotEqual(thumb.file_id, '')
|
|
self.assertEqual(thumb.file_size, self.thumb.file_size)
|
|
self.assertEqual(thumb.width, self.thumb.width)
|
|
self.assertEqual(thumb.height, self.thumb.height)
|
|
|
|
def test_sticker_de_json(self):
|
|
sticker = telegram.Sticker.de_json(self.json_dict, self._bot)
|
|
|
|
self.assertEqual(sticker.file_id, self.sticker.file_id)
|
|
self.assertEqual(sticker.width, self.sticker.width)
|
|
self.assertEqual(sticker.height, self.sticker.height)
|
|
self.assertIsInstance(sticker.thumb, telegram.PhotoSize)
|
|
self.assertEqual(sticker.emoji, self.emoji)
|
|
self.assertEqual(sticker.file_size, self.sticker.file_size)
|
|
|
|
def test_sticker_to_json(self):
|
|
self.assertTrue(self.is_json(self.sticker.to_json()))
|
|
|
|
def test_sticker_to_dict(self):
|
|
sticker = self.sticker.to_dict()
|
|
|
|
self.is_dict(sticker)
|
|
self.assertEqual(sticker['file_id'], self.sticker.file_id)
|
|
self.assertEqual(sticker['width'], self.sticker.width)
|
|
self.assertEqual(sticker['height'], self.sticker.height)
|
|
self.assertIsInstance(sticker['thumb'], dict)
|
|
self.assertEqual(sticker['file_size'], self.sticker.file_size)
|
|
|
|
@flaky(3, 1)
|
|
@timeout(10)
|
|
def test_error_send_sticker_empty_file(self):
|
|
json_dict = self.json_dict
|
|
|
|
del (json_dict['file_id'])
|
|
json_dict['sticker'] = open(os.devnull, 'rb')
|
|
|
|
with self.assertRaises(telegram.TelegramError):
|
|
self._bot.sendSticker(chat_id=self._chat_id, **json_dict)
|
|
|
|
@flaky(3, 1)
|
|
@timeout(10)
|
|
def test_error_send_sticker_empty_file_id(self):
|
|
json_dict = self.json_dict
|
|
|
|
del (json_dict['file_id'])
|
|
json_dict['sticker'] = ''
|
|
|
|
with self.assertRaises(telegram.TelegramError):
|
|
self._bot.sendSticker(chat_id=self._chat_id, **json_dict)
|
|
|
|
@flaky(3, 1)
|
|
@timeout(10)
|
|
def test_error_sticker_without_required_args(self):
|
|
json_dict = self.json_dict
|
|
|
|
del (json_dict['file_id'])
|
|
|
|
with self.assertRaises(TypeError):
|
|
self._bot.sendSticker(chat_id=self._chat_id, **json_dict)
|
|
|
|
@flaky(3, 1)
|
|
@timeout(10)
|
|
def test_reply_sticker(self):
|
|
"""Test for Message.reply_sticker"""
|
|
message = self._bot.sendMessage(self._chat_id, '.')
|
|
message = message.reply_sticker(self.sticker.file_id)
|
|
|
|
self.assertNotEqual(message.sticker.file_id, '')
|
|
|
|
def test_equality(self):
|
|
a = telegram.Sticker(self.sticker.file_id, self.sticker.width, self.sticker.height)
|
|
b = telegram.Sticker(self.sticker.file_id, self.sticker.width, self.sticker.height)
|
|
c = telegram.Sticker(self.sticker.file_id, 0, 0)
|
|
d = telegram.Sticker("", self.sticker.width, self.sticker.height)
|
|
e = telegram.PhotoSize(self.sticker.file_id, self.sticker.width, self.sticker.height)
|
|
|
|
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))
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|