2016-05-15 02:39:11 +02:00
|
|
|
#!/usr/bin/env python
|
2015-09-07 19:03:20 +02:00
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2020-02-02 22:08:54 +01:00
|
|
|
# Copyright (C) 2015-2020
|
2016-01-05 14:12:03 +01:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
2015-09-07 19:03:20 +02:00
|
|
|
#
|
|
|
|
# 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
|
2015-09-07 19:03:20 +02: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.
|
2015-09-07 19:03:20 +02:00
|
|
|
#
|
2017-08-11 23:58:41 +02:00
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
2015-09-07 19:03:20 +02:00
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2017-08-11 23:58:41 +02:00
|
|
|
import pytest
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2020-06-15 18:20:51 +02:00
|
|
|
from telegram import Update, User
|
2020-03-28 16:37:26 +01:00
|
|
|
from telegram.utils.helpers import escape_markdown
|
2016-09-20 06:36:55 +02:00
|
|
|
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.fixture(scope='function')
|
|
|
|
def json_dict():
|
|
|
|
return {
|
2020-02-23 22:03:58 +01:00
|
|
|
'id': TestUser.id_,
|
2017-09-01 08:40:05 +02:00
|
|
|
'is_bot': TestUser.is_bot,
|
2017-08-11 23:58:41 +02:00
|
|
|
'first_name': TestUser.first_name,
|
|
|
|
'last_name': TestUser.last_name,
|
|
|
|
'username': TestUser.username,
|
2020-03-29 09:52:30 +02:00
|
|
|
'language_code': TestUser.language_code,
|
|
|
|
'can_join_groups': TestUser.can_join_groups,
|
|
|
|
'can_read_all_group_messages': TestUser.can_read_all_group_messages,
|
|
|
|
'supports_inline_queries': TestUser.supports_inline_queries
|
2017-08-11 23:58:41 +02:00
|
|
|
}
|
2015-09-07 19:03:20 +02:00
|
|
|
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.fixture(scope='function')
|
|
|
|
def user(bot):
|
2020-02-23 22:03:58 +01:00
|
|
|
return User(id=TestUser.id_, first_name=TestUser.first_name, is_bot=TestUser.is_bot,
|
2018-05-28 22:51:39 +02:00
|
|
|
last_name=TestUser.last_name, username=TestUser.username,
|
2020-03-29 09:52:30 +02:00
|
|
|
language_code=TestUser.language_code, can_join_groups=TestUser.can_join_groups,
|
|
|
|
can_read_all_group_messages=TestUser.can_read_all_group_messages,
|
|
|
|
supports_inline_queries=TestUser.supports_inline_queries, bot=bot)
|
2015-09-07 19:03:20 +02:00
|
|
|
|
|
|
|
|
2020-06-15 18:20:51 +02:00
|
|
|
class TestUser:
|
2020-02-23 22:03:58 +01:00
|
|
|
id_ = 1
|
2017-09-01 08:40:05 +02:00
|
|
|
is_bot = True
|
2018-04-16 10:37:41 +02:00
|
|
|
first_name = u'first\u2022name'
|
|
|
|
last_name = u'last\u2022name'
|
2017-08-11 23:58:41 +02:00
|
|
|
username = 'username'
|
|
|
|
language_code = 'en_us'
|
2020-03-29 09:52:30 +02:00
|
|
|
can_join_groups = True
|
|
|
|
can_read_all_group_messages = True
|
|
|
|
supports_inline_queries = False
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_de_json(self, json_dict, bot):
|
|
|
|
user = User.de_json(json_dict, bot)
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2020-02-23 22:03:58 +01:00
|
|
|
assert user.id == self.id_
|
2017-09-01 08:40:05 +02:00
|
|
|
assert user.is_bot == self.is_bot
|
2017-08-11 23:58:41 +02:00
|
|
|
assert user.first_name == self.first_name
|
|
|
|
assert user.last_name == self.last_name
|
|
|
|
assert user.username == self.username
|
|
|
|
assert user.language_code == self.language_code
|
2020-03-29 09:52:30 +02:00
|
|
|
assert user.can_join_groups == self.can_join_groups
|
|
|
|
assert user.can_read_all_group_messages == self.can_read_all_group_messages
|
|
|
|
assert user.supports_inline_queries == self.supports_inline_queries
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_de_json_without_username(self, json_dict, bot):
|
|
|
|
del json_dict['username']
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
user = User.de_json(json_dict, bot)
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2020-02-23 22:03:58 +01:00
|
|
|
assert user.id == self.id_
|
2017-09-01 08:40:05 +02:00
|
|
|
assert user.is_bot == self.is_bot
|
2017-08-11 23:58:41 +02:00
|
|
|
assert user.first_name == self.first_name
|
|
|
|
assert user.last_name == self.last_name
|
|
|
|
assert user.username is None
|
|
|
|
assert user.language_code == self.language_code
|
2020-03-29 09:52:30 +02:00
|
|
|
assert user.can_join_groups == self.can_join_groups
|
|
|
|
assert user.can_read_all_group_messages == self.can_read_all_group_messages
|
|
|
|
assert user.supports_inline_queries == self.supports_inline_queries
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_de_json_without_username_and_last_name(self, json_dict, bot):
|
|
|
|
del json_dict['username']
|
|
|
|
del json_dict['last_name']
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
user = User.de_json(json_dict, bot)
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2020-02-23 22:03:58 +01:00
|
|
|
assert user.id == self.id_
|
2017-09-01 08:40:05 +02:00
|
|
|
assert user.is_bot == self.is_bot
|
2017-08-11 23:58:41 +02:00
|
|
|
assert user.first_name == self.first_name
|
|
|
|
assert user.last_name is None
|
|
|
|
assert user.username is None
|
|
|
|
assert user.language_code == self.language_code
|
2020-03-29 09:52:30 +02:00
|
|
|
assert user.can_join_groups == self.can_join_groups
|
|
|
|
assert user.can_read_all_group_messages == self.can_read_all_group_messages
|
|
|
|
assert user.supports_inline_queries == self.supports_inline_queries
|
2015-09-07 19:03:20 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_name(self, user):
|
|
|
|
assert user.name == '@username'
|
|
|
|
user.username = None
|
2018-04-16 10:37:41 +02:00
|
|
|
assert user.name == u'first\u2022name last\u2022name'
|
2017-08-11 23:58:41 +02:00
|
|
|
user.last_name = None
|
2018-04-16 10:37:41 +02:00
|
|
|
assert user.name == u'first\u2022name'
|
2017-08-11 23:58:41 +02:00
|
|
|
user.username = self.username
|
|
|
|
assert user.name == '@username'
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2017-12-30 14:13:06 +01:00
|
|
|
def test_full_name(self, user):
|
2018-04-16 10:37:41 +02:00
|
|
|
assert user.full_name == u'first\u2022name last\u2022name'
|
2017-12-30 14:13:06 +01:00
|
|
|
user.last_name = None
|
2018-04-16 10:37:41 +02:00
|
|
|
assert user.full_name == u'first\u2022name'
|
2015-09-08 01:11:02 +02:00
|
|
|
|
2018-05-09 11:42:12 +02:00
|
|
|
def test_link(self, user):
|
|
|
|
assert user.link == 'https://t.me/{}'.format(user.username)
|
|
|
|
user.username = None
|
|
|
|
assert user.link is None
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_get_profile_photos(self, monkeypatch, user):
|
2020-02-06 11:22:56 +01:00
|
|
|
def test(*args, **kwargs):
|
2017-08-11 23:58:41 +02:00
|
|
|
return args[0] == user.id
|
2015-09-08 01:11:02 +02:00
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'get_user_profile_photos', test)
|
2017-08-11 23:58:41 +02:00
|
|
|
assert user.get_profile_photos()
|
2016-09-20 06:36:55 +02:00
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
def test_instance_method_send_message(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
2020-02-06 11:22:56 +01:00
|
|
|
return args[0] == user.id and args[1] == 'test'
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'send_message', test)
|
2018-02-18 16:49:52 +01:00
|
|
|
assert user.send_message('test')
|
|
|
|
|
2018-03-17 00:10:11 +01:00
|
|
|
def test_instance_method_send_photo(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
2020-02-06 11:22:56 +01:00
|
|
|
return args[0] == user.id and args[1] == 'test_photo'
|
2018-03-17 00:10:11 +01:00
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'send_photo', test)
|
2018-03-17 00:10:11 +01:00
|
|
|
assert user.send_photo('test_photo')
|
|
|
|
|
2018-02-18 16:49:52 +01:00
|
|
|
def test_instance_method_send_audio(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
2020-02-06 11:22:56 +01:00
|
|
|
return args[0] == user.id and args[1] == 'test_audio'
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'send_audio', test)
|
2018-03-17 00:10:11 +01:00
|
|
|
assert user.send_audio('test_audio')
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def test_instance_method_send_document(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
2020-02-06 11:22:56 +01:00
|
|
|
return args[0] == user.id and args[1] == 'test_document'
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'send_document', test)
|
2018-03-17 00:10:11 +01:00
|
|
|
assert user.send_document('test_document')
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def test_instance_method_send_sticker(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
2020-02-06 11:22:56 +01:00
|
|
|
return args[0] == user.id and args[1] == 'test_sticker'
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'send_sticker', test)
|
2018-03-17 00:10:11 +01:00
|
|
|
assert user.send_sticker('test_sticker')
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def test_instance_method_send_video(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
2020-02-06 11:22:56 +01:00
|
|
|
return args[0] == user.id and args[1] == 'test_video'
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'send_video', test)
|
2018-03-17 00:10:11 +01:00
|
|
|
assert user.send_video('test_video')
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def test_instance_method_send_video_note(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
2020-02-06 11:22:56 +01:00
|
|
|
return args[0] == user.id and args[1] == 'test_video_note'
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'send_video_note', test)
|
2018-03-17 00:10:11 +01:00
|
|
|
assert user.send_video_note('test_video_note')
|
2018-02-18 16:49:52 +01:00
|
|
|
|
|
|
|
def test_instance_method_send_voice(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
2020-02-06 11:22:56 +01:00
|
|
|
return args[0] == user.id and args[1] == 'test_voice'
|
2018-02-18 16:49:52 +01:00
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'send_voice', test)
|
2018-03-17 00:10:11 +01:00
|
|
|
assert user.send_voice('test_voice')
|
2018-02-18 16:49:52 +01:00
|
|
|
|
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
|
|
|
def test_instance_method_send_animation(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
2020-02-06 11:22:56 +01:00
|
|
|
return args[0] == user.id and args[1] == 'test_animation'
|
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
|
|
|
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(user.bot, 'send_animation', test)
|
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
|
|
|
assert user.send_animation('test_animation')
|
|
|
|
|
2020-05-27 21:59:49 +02:00
|
|
|
def test_instance_method_send_poll(self, monkeypatch, user):
|
|
|
|
def test(*args, **kwargs):
|
|
|
|
return args[0] == user.id and args[1] == 'test_poll'
|
|
|
|
|
|
|
|
monkeypatch.setattr(user.bot, 'send_poll', test)
|
|
|
|
assert user.send_poll('test_poll')
|
|
|
|
|
2018-05-28 22:51:39 +02:00
|
|
|
def test_mention_html(self, user):
|
|
|
|
expected = u'<a href="tg://user?id={}">{}</a>'
|
|
|
|
|
|
|
|
assert user.mention_html() == expected.format(user.id, user.full_name)
|
|
|
|
assert user.mention_html('the<b>name\u2022') == expected.format(user.id,
|
|
|
|
'the<b>name\u2022')
|
|
|
|
assert user.mention_html(user.username) == expected.format(user.id, user.username)
|
|
|
|
|
|
|
|
def test_mention_markdown(self, user):
|
|
|
|
expected = u'[{}](tg://user?id={})'
|
|
|
|
|
|
|
|
assert user.mention_markdown() == expected.format(user.full_name, user.id)
|
2020-06-15 18:20:51 +02:00
|
|
|
assert user.mention_markdown('the_name*\u2022') == expected.format('the\\_name\\*\u2022',
|
2018-05-28 22:51:39 +02:00
|
|
|
user.id)
|
|
|
|
assert user.mention_markdown(user.username) == expected.format(user.username, user.id)
|
|
|
|
|
2020-03-28 16:37:26 +01:00
|
|
|
def test_mention_markdown_v2(self, user):
|
|
|
|
user.first_name = 'first{name'
|
|
|
|
user.last_name = 'last_name'
|
|
|
|
|
|
|
|
expected = u'[{}](tg://user?id={})'
|
|
|
|
|
|
|
|
assert user.mention_markdown_v2() == expected.format(escape_markdown(user.full_name,
|
|
|
|
version=2), user.id)
|
2020-06-15 18:20:51 +02:00
|
|
|
assert user.mention_markdown_v2('the{name>\u2022') == expected.format(
|
|
|
|
'the\\{name\\>\u2022', user.id)
|
2020-03-28 16:37:26 +01:00
|
|
|
assert user.mention_markdown_v2(user.username) == expected.format(user.username, user.id)
|
|
|
|
|
2017-05-14 23:29:31 +02:00
|
|
|
def test_equality(self):
|
2020-02-23 22:03:58 +01:00
|
|
|
a = User(self.id_, self.first_name, self.is_bot, self.last_name)
|
|
|
|
b = User(self.id_, self.first_name, self.is_bot, self.last_name)
|
|
|
|
c = User(self.id_, self.first_name, self.is_bot)
|
2017-09-01 08:40:05 +02:00
|
|
|
d = User(0, self.first_name, self.is_bot, self.last_name)
|
2020-02-23 22:03:58 +01:00
|
|
|
e = Update(self.id_)
|
2017-05-14 23:29:31 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert a == b
|
|
|
|
assert hash(a) == hash(b)
|
|
|
|
assert a is not b
|
2017-05-14 23:29:31 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert a == c
|
|
|
|
assert hash(a) == hash(c)
|
2017-05-14 23:29:31 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert a != d
|
|
|
|
assert hash(a) != hash(d)
|
2016-05-15 02:39:11 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert a != e
|
|
|
|
assert hash(a) != hash(e)
|