2016-01-12 01:25:46 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2018-01-04 16:16:06 +01:00
|
|
|
# Copyright (C) 2015-2018
|
2016-01-12 01:25:46 +01:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
2017-08-11 23:58:41 +02:00
|
|
|
# it under the terms of the GNU Lesser Public License as published by
|
2016-01-12 01:25:46 +01:00
|
|
|
# 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
|
2017-08-11 23:58:41 +02:00
|
|
|
# GNU Lesser Public License for more details.
|
2016-01-12 01:25:46 +01:00
|
|
|
#
|
2017-08-11 23:58:41 +02:00
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
2016-01-12 01:25:46 +01:00
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2016-04-24 04:11:25 +02:00
|
|
|
import os
|
2017-06-21 17:38:20 +02:00
|
|
|
from io import BytesIO
|
2016-04-27 00:28:21 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
import pytest
|
2016-02-21 12:52:47 +01:00
|
|
|
from flaky import flaky
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
from telegram import Sticker, TelegramError, PhotoSize, InputFile
|
2016-01-12 01:25:46 +01:00
|
|
|
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.fixture(scope='function')
|
|
|
|
def photo_file():
|
2018-04-25 22:13:00 +02:00
|
|
|
f = open(u'tests/data/telegram.jpg', 'rb')
|
2017-08-11 23:58:41 +02:00
|
|
|
yield f
|
|
|
|
f.close()
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-07-31 23:16:44 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.fixture(scope='class')
|
|
|
|
def _photo(bot, chat_id):
|
|
|
|
with open('tests/data/telegram.jpg', 'rb') as f:
|
2018-02-22 14:13:57 +01:00
|
|
|
return bot.send_photo(chat_id, photo=f, timeout=50).photo
|
2017-06-21 17:21:18 +02:00
|
|
|
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.fixture(scope='class')
|
|
|
|
def thumb(_photo):
|
|
|
|
return _photo[0]
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-06-21 17:21:18 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.fixture(scope='class')
|
|
|
|
def photo(_photo):
|
|
|
|
return _photo[1]
|
2016-01-12 01:25:46 +01:00
|
|
|
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
class TestPhoto(object):
|
|
|
|
width = 300
|
|
|
|
height = 300
|
2018-02-18 16:11:04 +01:00
|
|
|
caption = u'<b>PhotoTest</b> - *Caption*'
|
2017-08-11 23:58:41 +02:00
|
|
|
photo_file_url = 'https://python-telegram-bot.org/static/testfiles/telegram.jpg'
|
|
|
|
file_size = 10209
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_creation(self, thumb, photo):
|
|
|
|
# Make sure file has been uploaded.
|
|
|
|
assert isinstance(photo, PhotoSize)
|
|
|
|
assert isinstance(photo.file_id, str)
|
|
|
|
assert photo.file_id is not ''
|
|
|
|
|
|
|
|
assert isinstance(thumb, PhotoSize)
|
|
|
|
assert isinstance(thumb.file_id, str)
|
|
|
|
assert thumb.file_id is not ''
|
|
|
|
|
|
|
|
def test_expected_values(self, photo, thumb):
|
|
|
|
assert photo.width == self.width
|
|
|
|
assert photo.height == self.height
|
|
|
|
assert photo.file_size == self.file_size
|
|
|
|
assert thumb.width == 90
|
|
|
|
assert thumb.height == 90
|
|
|
|
assert thumb.file_size == 1478
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2016-02-22 00:52:31 +01:00
|
|
|
@flaky(3, 1)
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_send_photo_all_args(self, bot, chat_id, photo_file, thumb, photo):
|
|
|
|
message = bot.send_photo(chat_id, photo_file, caption=self.caption,
|
2018-02-18 16:11:04 +01:00
|
|
|
disable_notification=False, parse_mode='Markdown')
|
2017-08-11 23:58:41 +02:00
|
|
|
|
|
|
|
assert isinstance(message.photo[0], PhotoSize)
|
|
|
|
assert isinstance(message.photo[0].file_id, str)
|
|
|
|
assert message.photo[0].file_id != ''
|
|
|
|
assert message.photo[0].width == thumb.width
|
|
|
|
assert message.photo[0].height == thumb.height
|
|
|
|
assert message.photo[0].file_size == thumb.file_size
|
|
|
|
|
|
|
|
assert isinstance(message.photo[1], PhotoSize)
|
|
|
|
assert isinstance(message.photo[1].file_id, str)
|
|
|
|
assert message.photo[1].file_id != ''
|
|
|
|
assert message.photo[1].width == photo.width
|
|
|
|
assert message.photo[1].height == photo.height
|
|
|
|
assert message.photo[1].file_size == photo.file_size
|
|
|
|
|
2018-02-18 16:11:04 +01:00
|
|
|
assert message.caption == TestPhoto.caption.replace('*', '')
|
|
|
|
|
|
|
|
@flaky(3, 1)
|
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_send_photo_parse_mode_markdown(self, bot, chat_id, photo_file, thumb, photo):
|
|
|
|
message = bot.send_photo(chat_id, photo_file, caption=self.caption,
|
|
|
|
parse_mode='Markdown')
|
|
|
|
assert isinstance(message.photo[0], PhotoSize)
|
|
|
|
assert isinstance(message.photo[0].file_id, str)
|
|
|
|
assert message.photo[0].file_id != ''
|
|
|
|
assert message.photo[0].width == thumb.width
|
|
|
|
assert message.photo[0].height == thumb.height
|
|
|
|
assert message.photo[0].file_size == thumb.file_size
|
|
|
|
|
|
|
|
assert isinstance(message.photo[1], PhotoSize)
|
|
|
|
assert isinstance(message.photo[1].file_id, str)
|
|
|
|
assert message.photo[1].file_id != ''
|
|
|
|
assert message.photo[1].width == photo.width
|
|
|
|
assert message.photo[1].height == photo.height
|
|
|
|
assert message.photo[1].file_size == photo.file_size
|
|
|
|
|
|
|
|
assert message.caption == TestPhoto.caption.replace('*', '')
|
|
|
|
assert len(message.caption_entities) == 1
|
|
|
|
|
|
|
|
@flaky(3, 1)
|
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_send_photo_parse_mode_html(self, bot, chat_id, photo_file, thumb, photo):
|
|
|
|
message = bot.send_photo(chat_id, photo_file, caption=self.caption,
|
|
|
|
parse_mode='HTML')
|
|
|
|
assert isinstance(message.photo[0], PhotoSize)
|
|
|
|
assert isinstance(message.photo[0].file_id, str)
|
|
|
|
assert message.photo[0].file_id != ''
|
|
|
|
assert message.photo[0].width == thumb.width
|
|
|
|
assert message.photo[0].height == thumb.height
|
|
|
|
assert message.photo[0].file_size == thumb.file_size
|
|
|
|
|
|
|
|
assert isinstance(message.photo[1], PhotoSize)
|
|
|
|
assert isinstance(message.photo[1].file_id, str)
|
|
|
|
assert message.photo[1].file_id != ''
|
|
|
|
assert message.photo[1].width == photo.width
|
|
|
|
assert message.photo[1].height == photo.height
|
|
|
|
assert message.photo[1].file_size == photo.file_size
|
|
|
|
|
|
|
|
assert message.caption == TestPhoto.caption.replace('<b>', '').replace('</b>', '')
|
|
|
|
assert len(message.caption_entities) == 1
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@flaky(3, 1)
|
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_get_and_download(self, bot, photo):
|
|
|
|
new_file = bot.getFile(photo.file_id)
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert new_file.file_size == photo.file_size
|
|
|
|
assert new_file.file_id == photo.file_id
|
|
|
|
assert new_file.file_path.startswith('https://') is True
|
2017-06-22 18:29:21 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
new_file.download('telegram.jpg')
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert os.path.isfile('telegram.jpg') is True
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2016-02-22 00:52:31 +01:00
|
|
|
@flaky(3, 1)
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_send_url_jpg_file(self, bot, chat_id, thumb, photo):
|
|
|
|
message = bot.send_photo(chat_id, photo=self.photo_file_url)
|
|
|
|
|
|
|
|
assert isinstance(message.photo[0], PhotoSize)
|
|
|
|
assert isinstance(message.photo[0].file_id, str)
|
|
|
|
assert message.photo[0].file_id != ''
|
|
|
|
assert message.photo[0].width == thumb.width
|
|
|
|
assert message.photo[0].height == thumb.height
|
|
|
|
assert message.photo[0].file_size == thumb.file_size
|
|
|
|
|
|
|
|
assert isinstance(message.photo[1], PhotoSize)
|
|
|
|
assert isinstance(message.photo[1].file_id, str)
|
|
|
|
assert message.photo[1].file_id != ''
|
|
|
|
assert message.photo[1].width == photo.width
|
|
|
|
assert message.photo[1].height == photo.height
|
|
|
|
assert message.photo[1].file_size == photo.file_size
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-06-21 18:10:00 +02:00
|
|
|
@flaky(3, 1)
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_send_url_png_file(self, bot, chat_id):
|
|
|
|
message = bot.send_photo(photo='http://dummyimage.com/600x400/000/fff.png&text=telegram',
|
|
|
|
chat_id=chat_id)
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-06-21 18:46:50 +02:00
|
|
|
photo = message.photo[-1]
|
2017-06-21 18:10:00 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert isinstance(photo, PhotoSize)
|
|
|
|
assert isinstance(photo.file_id, str)
|
|
|
|
assert photo.file_id != ''
|
2017-06-21 18:10:00 +02:00
|
|
|
|
|
|
|
@flaky(3, 1)
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_send_url_gif_file(self, bot, chat_id):
|
|
|
|
message = bot.send_photo(photo='http://dummyimage.com/600x400/000/fff.png&text=telegram',
|
|
|
|
chat_id=chat_id)
|
2017-06-21 18:10:00 +02:00
|
|
|
|
2017-06-21 18:46:50 +02:00
|
|
|
photo = message.photo[-1]
|
2017-06-21 18:10:00 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert isinstance(photo, PhotoSize)
|
|
|
|
assert isinstance(photo.file_id, str)
|
|
|
|
assert photo.file_id != ''
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-05-29 09:38:02 +02:00
|
|
|
@flaky(3, 1)
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_send_bytesio_jpg_file(self, bot, chat_id):
|
|
|
|
file_name = 'tests/data/telegram_no_standard_header.jpg'
|
|
|
|
|
2017-05-29 09:38:02 +02:00
|
|
|
# raw image bytes
|
2017-08-11 23:58:41 +02:00
|
|
|
raw_bytes = BytesIO(open(file_name, 'rb').read())
|
Bot API 4.0 (#1168)
Telegram Passport (#1174):
- Add full support for telegram passport.
- New types: PassportData, PassportFile, EncryptedPassportElement, EncryptedCredentials, PassportElementError, PassportElementErrorDataField, PassportElementErrorFrontSide, PassportElementErrorReverseSide, PassportElementErrorSelfie, PassportElementErrorFile and PassportElementErrorFiles.
- New bot method: set_passport_data_errors
- New filter: Filters.passport_data
- Field passport_data field on Message
- PassportData is automagically decrypted when you specify your private key when creating Updater or Bot.
- PassportFiles is also automagically decrypted as you download/retrieve them.
- See new passportbot.py example for details on how to use, or go to our telegram passport wiki page for more info
- NOTE: Passport decryption requires new dependency `cryptography`.
Inputfile rework (#1184):
- Change how Inputfile is handled internally
- This allows support for specifying the thumbnails of photos and videos using the thumb= argument in the different send_ methods.
- Also allows Bot.send_media_group to actually finally send more than one media.
- Add thumb to Audio, Video and Videonote
- Add Bot.edit_message_media together with InputMediaAnimation, InputMediaAudio, and inputMediaDocument.
Other Bot API 4.0 changes:
- Add forusquare_type to Venue, InlineQueryResultVenue, InputVenueMessageContent, and Bot.send_venue. (#1170)
- Add vCard support by adding vcard field to Contact, InlineQueryResultContact, InputContactMessageContent, and Bot.send_contact. (#1166)
- Support new message entities: CASHTAG and PHONE_NUMBER. (#1179)
- Cashtag seems to be things like $USD and $GBP, but it seems telegram doesn't currently send them to bots.
- Phone number also seems to have limited support for now
- Add Bot.send_animation, add width, height, and duration to Animation, and add Filters.animation. (#1172)
Co-authored-by: Jasmin Bom <jsmnbom@gmail.com>
Co-authored-by: code1mountain <32801117+code1mountain@users.noreply.github.com>
Co-authored-by: Eldinnie <pieter.schutz+github@gmail.com>
Co-authored-by: mathefreak1 <mathefreak@hi2.in>
2018-08-29 14:18:58 +02:00
|
|
|
input_file = InputFile(raw_bytes)
|
|
|
|
assert input_file.mimetype == 'application/octet-stream'
|
2017-05-29 09:38:02 +02:00
|
|
|
|
|
|
|
# raw image bytes with name info
|
2017-08-11 23:58:41 +02:00
|
|
|
raw_bytes = BytesIO(open(file_name, 'rb').read())
|
|
|
|
raw_bytes.name = file_name
|
Bot API 4.0 (#1168)
Telegram Passport (#1174):
- Add full support for telegram passport.
- New types: PassportData, PassportFile, EncryptedPassportElement, EncryptedCredentials, PassportElementError, PassportElementErrorDataField, PassportElementErrorFrontSide, PassportElementErrorReverseSide, PassportElementErrorSelfie, PassportElementErrorFile and PassportElementErrorFiles.
- New bot method: set_passport_data_errors
- New filter: Filters.passport_data
- Field passport_data field on Message
- PassportData is automagically decrypted when you specify your private key when creating Updater or Bot.
- PassportFiles is also automagically decrypted as you download/retrieve them.
- See new passportbot.py example for details on how to use, or go to our telegram passport wiki page for more info
- NOTE: Passport decryption requires new dependency `cryptography`.
Inputfile rework (#1184):
- Change how Inputfile is handled internally
- This allows support for specifying the thumbnails of photos and videos using the thumb= argument in the different send_ methods.
- Also allows Bot.send_media_group to actually finally send more than one media.
- Add thumb to Audio, Video and Videonote
- Add Bot.edit_message_media together with InputMediaAnimation, InputMediaAudio, and inputMediaDocument.
Other Bot API 4.0 changes:
- Add forusquare_type to Venue, InlineQueryResultVenue, InputVenueMessageContent, and Bot.send_venue. (#1170)
- Add vCard support by adding vcard field to Contact, InlineQueryResultContact, InputContactMessageContent, and Bot.send_contact. (#1166)
- Support new message entities: CASHTAG and PHONE_NUMBER. (#1179)
- Cashtag seems to be things like $USD and $GBP, but it seems telegram doesn't currently send them to bots.
- Phone number also seems to have limited support for now
- Add Bot.send_animation, add width, height, and duration to Animation, and add Filters.animation. (#1172)
Co-authored-by: Jasmin Bom <jsmnbom@gmail.com>
Co-authored-by: code1mountain <32801117+code1mountain@users.noreply.github.com>
Co-authored-by: Eldinnie <pieter.schutz+github@gmail.com>
Co-authored-by: mathefreak1 <mathefreak@hi2.in>
2018-08-29 14:18:58 +02:00
|
|
|
input_file = InputFile(raw_bytes)
|
|
|
|
assert input_file.mimetype == 'image/jpeg'
|
2017-05-29 09:38:02 +02:00
|
|
|
|
|
|
|
# send raw photo
|
2017-08-11 23:58:41 +02:00
|
|
|
raw_bytes = BytesIO(open(file_name, 'rb').read())
|
|
|
|
message = bot.send_photo(chat_id, photo=raw_bytes)
|
2017-05-29 09:38:02 +02:00
|
|
|
photo = message.photo[-1]
|
2017-08-11 23:58:41 +02:00
|
|
|
assert isinstance(photo.file_id, str)
|
|
|
|
assert photo.file_id != ''
|
|
|
|
assert isinstance(photo, PhotoSize)
|
2017-12-08 22:38:59 +01:00
|
|
|
assert photo.width == 1280
|
|
|
|
assert photo.height == 720
|
|
|
|
assert photo.file_size == 33372
|
2017-06-21 18:10:00 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_send_with_photosize(self, monkeypatch, bot, chat_id, photo):
|
|
|
|
def test(_, url, data, **kwargs):
|
|
|
|
return data['photo'] == photo.file_id
|
2017-06-21 18:10:00 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
monkeypatch.setattr('telegram.utils.request.Request.post', test)
|
|
|
|
message = bot.send_photo(photo=photo, chat_id=chat_id)
|
|
|
|
assert message
|
2017-06-21 18:10:00 +02:00
|
|
|
|
2017-07-25 00:35:22 +02:00
|
|
|
@flaky(3, 1)
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_resend(self, bot, chat_id, photo):
|
|
|
|
message = bot.send_photo(chat_id=chat_id, photo=photo.file_id)
|
2016-01-12 01:25:46 +01:00
|
|
|
|
|
|
|
thumb, photo = message.photo
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert isinstance(message.photo[0], PhotoSize)
|
|
|
|
assert isinstance(message.photo[0].file_id, str)
|
|
|
|
assert message.photo[0].file_id != ''
|
|
|
|
assert message.photo[0].width == thumb.width
|
|
|
|
assert message.photo[0].height == thumb.height
|
|
|
|
assert message.photo[0].file_size == thumb.file_size
|
|
|
|
|
|
|
|
assert isinstance(message.photo[1], PhotoSize)
|
|
|
|
assert isinstance(message.photo[1].file_id, str)
|
|
|
|
assert message.photo[1].file_id != ''
|
|
|
|
assert message.photo[1].width == photo.width
|
|
|
|
assert message.photo[1].height == photo.height
|
|
|
|
assert message.photo[1].file_size == photo.file_size
|
|
|
|
|
|
|
|
def test_de_json(self, bot, photo):
|
|
|
|
json_dict = {
|
|
|
|
'file_id': photo.file_id,
|
|
|
|
'width': self.width,
|
|
|
|
'height': self.height,
|
|
|
|
'file_size': self.file_size
|
|
|
|
}
|
|
|
|
json_photo = PhotoSize.de_json(json_dict, bot)
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert json_photo.file_id == photo.file_id
|
|
|
|
assert json_photo.width == self.width
|
|
|
|
assert json_photo.height == self.height
|
|
|
|
assert json_photo.file_size == self.file_size
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_to_dict(self, photo):
|
|
|
|
photo_dict = photo.to_dict()
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert isinstance(photo_dict, dict)
|
|
|
|
assert photo_dict['file_id'] == photo.file_id
|
|
|
|
assert photo_dict['width'] == photo.width
|
|
|
|
assert photo_dict['height'] == photo.height
|
|
|
|
assert photo_dict['file_size'] == photo.file_size
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2016-02-22 00:52:31 +01:00
|
|
|
@flaky(3, 1)
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_error_send_empty_file(self, bot, chat_id):
|
|
|
|
with pytest.raises(TelegramError):
|
|
|
|
bot.send_photo(chat_id=chat_id, photo=open(os.devnull, 'rb'))
|
2016-01-12 01:25:46 +01:00
|
|
|
|
2016-09-20 06:36:55 +02:00
|
|
|
@flaky(3, 1)
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.mark.timeout(10)
|
|
|
|
def test_error_send_empty_file_id(self, bot, chat_id):
|
|
|
|
with pytest.raises(TelegramError):
|
|
|
|
bot.send_photo(chat_id=chat_id, photo='')
|
|
|
|
|
|
|
|
def test_error_without_required_args(self, bot, chat_id):
|
|
|
|
with pytest.raises(TypeError):
|
|
|
|
bot.send_photo(chat_id=chat_id)
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
def test_get_file_instance_method(self, monkeypatch, photo):
|
|
|
|
def test(*args, **kwargs):
|
|
|
|
return args[1] == photo.file_id
|
|
|
|
|
|
|
|
monkeypatch.setattr('telegram.Bot.get_file', test)
|
|
|
|
assert photo.get_file()
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_equality(self, photo):
|
|
|
|
a = PhotoSize(photo.file_id, self.width, self.height)
|
|
|
|
b = PhotoSize(photo.file_id, self.width, self.height)
|
|
|
|
c = PhotoSize(photo.file_id, 0, 0)
|
|
|
|
d = PhotoSize('', self.width, self.height)
|
|
|
|
e = Sticker(photo.file_id, self.width, self.height)
|
|
|
|
|
|
|
|
assert a == b
|
|
|
|
assert hash(a) == hash(b)
|
|
|
|
assert a is not b
|
|
|
|
|
|
|
|
assert a == c
|
|
|
|
assert hash(a) == hash(c)
|
|
|
|
|
|
|
|
assert a != d
|
|
|
|
assert hash(a) != hash(d)
|
|
|
|
|
|
|
|
assert a != e
|
|
|
|
assert hash(a) != hash(e)
|