mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2025-01-18 15:20:42 +01:00
ae9ce60b55
Co-authored-by: poolitzer <25934244+Poolitzer@users.noreply.github.com> Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
379 lines
14 KiB
Python
379 lines
14 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# A library that provides a Python interface to the Telegram Bot API
|
|
# Copyright (C) 2015-2020
|
|
# 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 Lesser 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 Lesser Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Lesser Public License
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
|
|
|
import pytest
|
|
|
|
from telegram import Chat, ChatAction, ChatPermissions, ChatLocation, Location
|
|
from telegram import User
|
|
|
|
|
|
@pytest.fixture(scope='class')
|
|
def chat(bot):
|
|
return Chat(
|
|
TestChat.id_,
|
|
TestChat.title,
|
|
TestChat.type_,
|
|
username=TestChat.username,
|
|
all_members_are_administrators=TestChat.all_members_are_administrators,
|
|
bot=bot,
|
|
sticker_set_name=TestChat.sticker_set_name,
|
|
can_set_sticker_set=TestChat.can_set_sticker_set,
|
|
permissions=TestChat.permissions,
|
|
slow_mode_delay=TestChat.slow_mode_delay,
|
|
bio=TestChat.bio,
|
|
linked_chat_id=TestChat.linked_chat_id,
|
|
location=TestChat.location,
|
|
)
|
|
|
|
|
|
class TestChat:
|
|
id_ = -28767330
|
|
title = 'ToledosPalaceBot - Group'
|
|
type_ = 'group'
|
|
username = 'username'
|
|
all_members_are_administrators = False
|
|
sticker_set_name = 'stickers'
|
|
can_set_sticker_set = False
|
|
permissions = ChatPermissions(
|
|
can_send_messages=True,
|
|
can_change_info=False,
|
|
can_invite_users=True,
|
|
)
|
|
slow_mode_delay = 30
|
|
bio = "I'm a Barbie Girl in a Barbie World"
|
|
linked_chat_id = 11880
|
|
location = ChatLocation(Location(123, 456), 'Barbie World')
|
|
|
|
def test_de_json(self, bot):
|
|
json_dict = {
|
|
'id': self.id_,
|
|
'title': self.title,
|
|
'type': self.type_,
|
|
'username': self.username,
|
|
'all_members_are_administrators': self.all_members_are_administrators,
|
|
'sticker_set_name': self.sticker_set_name,
|
|
'can_set_sticker_set': self.can_set_sticker_set,
|
|
'permissions': self.permissions.to_dict(),
|
|
'slow_mode_delay': self.slow_mode_delay,
|
|
'bio': self.bio,
|
|
'linked_chat_id': self.linked_chat_id,
|
|
'location': self.location.to_dict(),
|
|
}
|
|
chat = Chat.de_json(json_dict, bot)
|
|
|
|
assert chat.id == self.id_
|
|
assert chat.title == self.title
|
|
assert chat.type == self.type_
|
|
assert chat.username == self.username
|
|
assert chat.all_members_are_administrators == self.all_members_are_administrators
|
|
assert chat.sticker_set_name == self.sticker_set_name
|
|
assert chat.can_set_sticker_set == self.can_set_sticker_set
|
|
assert chat.permissions == self.permissions
|
|
assert chat.slow_mode_delay == self.slow_mode_delay
|
|
assert chat.bio == self.bio
|
|
assert chat.linked_chat_id == self.linked_chat_id
|
|
assert chat.location.location == self.location.location
|
|
assert chat.location.address == self.location.address
|
|
|
|
def test_to_dict(self, chat):
|
|
chat_dict = chat.to_dict()
|
|
|
|
assert isinstance(chat_dict, dict)
|
|
assert chat_dict['id'] == chat.id
|
|
assert chat_dict['title'] == chat.title
|
|
assert chat_dict['type'] == chat.type
|
|
assert chat_dict['username'] == chat.username
|
|
assert chat_dict['all_members_are_administrators'] == chat.all_members_are_administrators
|
|
assert chat_dict['permissions'] == chat.permissions.to_dict()
|
|
assert chat_dict['slow_mode_delay'] == chat.slow_mode_delay
|
|
assert chat_dict['bio'] == chat.bio
|
|
assert chat_dict['linked_chat_id'] == chat.linked_chat_id
|
|
assert chat_dict['location'] == chat.location.to_dict()
|
|
|
|
def test_link(self, chat):
|
|
assert chat.link == f'https://t.me/{chat.username}'
|
|
chat.username = None
|
|
assert chat.link is None
|
|
|
|
def test_send_action(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
id_ = args[0] == chat.id
|
|
action = kwargs['action'] == ChatAction.TYPING
|
|
return id_ and action
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_chat_action', test)
|
|
assert chat.send_action(action=ChatAction.TYPING)
|
|
assert chat.send_chat_action(action=ChatAction.TYPING)
|
|
|
|
def test_leave(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id
|
|
|
|
monkeypatch.setattr(chat.bot, 'leave_chat', test)
|
|
assert chat.leave()
|
|
|
|
def test_get_administrators(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id
|
|
|
|
monkeypatch.setattr(chat.bot, 'get_chat_administrators', test)
|
|
assert chat.get_administrators()
|
|
|
|
def test_get_members_count(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id
|
|
|
|
monkeypatch.setattr(chat.bot, 'get_chat_members_count', test)
|
|
assert chat.get_members_count()
|
|
|
|
def test_get_member(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
chat_id = args[0] == chat.id
|
|
user_id = args[1] == 42
|
|
return chat_id and user_id
|
|
|
|
monkeypatch.setattr(chat.bot, 'get_chat_member', test)
|
|
assert chat.get_member(42)
|
|
|
|
def test_kick_member(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
chat_id = args[0] == chat.id
|
|
user_id = args[1] == 42
|
|
until = kwargs['until_date'] == 43
|
|
return chat_id and user_id and until
|
|
|
|
monkeypatch.setattr(chat.bot, 'kick_chat_member', test)
|
|
assert chat.kick_member(42, until_date=43)
|
|
|
|
@pytest.mark.parametrize('only_if_banned', [True, False, None])
|
|
def test_unban_member(self, monkeypatch, chat, only_if_banned):
|
|
def make_assertion(*args, **kwargs):
|
|
chat_id = args[0] == chat.id
|
|
user_id = args[1] == 42
|
|
o_i_b = kwargs.get('only_if_banned', None) == only_if_banned
|
|
return chat_id and user_id and o_i_b
|
|
|
|
monkeypatch.setattr(chat.bot, 'unban_chat_member', make_assertion)
|
|
assert chat.unban_member(42, only_if_banned=only_if_banned)
|
|
|
|
def test_set_permissions(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
chat_id = args[0] == chat.id
|
|
permissions = args[1] == self.permissions
|
|
return chat_id and permissions
|
|
|
|
monkeypatch.setattr(chat.bot, 'set_chat_permissions', test)
|
|
assert chat.set_permissions(self.permissions)
|
|
|
|
def test_set_administrator_custom_title(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
chat_id = args[1] == chat.id
|
|
user_id = args[2] == 42
|
|
custom_title = args[3] == 'custom_title'
|
|
return chat_id and user_id and custom_title
|
|
|
|
monkeypatch.setattr('telegram.Bot.set_chat_administrator_custom_title', test)
|
|
assert chat.set_administrator_custom_title(42, 'custom_title')
|
|
|
|
def test_pin_message(self, monkeypatch, chat):
|
|
def make_assertion(*args, **kwargs):
|
|
try:
|
|
return kwargs['chat_id'] == chat.id
|
|
except KeyError:
|
|
return args[0] == chat.id
|
|
|
|
monkeypatch.setattr(chat.bot, 'pin_chat_message', make_assertion)
|
|
assert chat.pin_message()
|
|
|
|
def test_unpin_message(self, monkeypatch, chat):
|
|
def make_assertion(*args, **kwargs):
|
|
try:
|
|
return kwargs['chat_id'] == chat.id
|
|
except KeyError:
|
|
return args[0] == chat.id
|
|
|
|
monkeypatch.setattr(chat.bot, 'unpin_chat_message', make_assertion)
|
|
assert chat.unpin_message()
|
|
|
|
def test_unpin_all_messages(self, monkeypatch, chat):
|
|
def make_assertion(*args, **kwargs):
|
|
try:
|
|
return kwargs['chat_id'] == chat.id
|
|
except KeyError:
|
|
return args[0] == chat.id
|
|
|
|
monkeypatch.setattr(chat.bot, 'unpin_all_chat_messages', make_assertion)
|
|
assert chat.unpin_all_messages()
|
|
|
|
def test_instance_method_send_message(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_message', test)
|
|
assert chat.send_message('test')
|
|
|
|
def test_instance_method_send_media_group(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_media_group'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_media_group', test)
|
|
assert chat.send_media_group('test_media_group')
|
|
|
|
def test_instance_method_send_photo(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_photo'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_photo', test)
|
|
assert chat.send_photo('test_photo')
|
|
|
|
def test_instance_method_send_contact(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_contact'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_contact', test)
|
|
assert chat.send_contact('test_contact')
|
|
|
|
def test_instance_method_send_audio(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_audio'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_audio', test)
|
|
assert chat.send_audio('test_audio')
|
|
|
|
def test_instance_method_send_document(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_document'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_document', test)
|
|
assert chat.send_document('test_document')
|
|
|
|
def test_instance_method_send_dice(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_dice'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_dice', test)
|
|
assert chat.send_dice('test_dice')
|
|
|
|
def test_instance_method_send_game(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_game'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_game', test)
|
|
assert chat.send_game('test_game')
|
|
|
|
def test_instance_method_send_invoice(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_invoice'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_invoice', test)
|
|
assert chat.send_invoice('test_invoice')
|
|
|
|
def test_instance_method_send_location(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_location'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_location', test)
|
|
assert chat.send_location('test_location')
|
|
|
|
def test_instance_method_send_sticker(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_sticker'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_sticker', test)
|
|
assert chat.send_sticker('test_sticker')
|
|
|
|
def test_instance_method_send_venue(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_venue'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_venue', test)
|
|
assert chat.send_venue('test_venue')
|
|
|
|
def test_instance_method_send_video(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_video'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_video', test)
|
|
assert chat.send_video('test_video')
|
|
|
|
def test_instance_method_send_video_note(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_video_note'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_video_note', test)
|
|
assert chat.send_video_note('test_video_note')
|
|
|
|
def test_instance_method_send_voice(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_voice'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_voice', test)
|
|
assert chat.send_voice('test_voice')
|
|
|
|
def test_instance_method_send_animation(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_animation'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_animation', test)
|
|
assert chat.send_animation('test_animation')
|
|
|
|
def test_instance_method_send_poll(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
return args[0] == chat.id and args[1] == 'test_poll'
|
|
|
|
monkeypatch.setattr(chat.bot, 'send_poll', test)
|
|
assert chat.send_poll('test_poll')
|
|
|
|
def test_instance_method_send_copy(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
assert args[0] == 'test_copy'
|
|
assert kwargs['chat_id'] == chat.id
|
|
return args
|
|
|
|
monkeypatch.setattr(chat.bot, 'copy_message', test)
|
|
assert chat.send_copy('test_copy')
|
|
|
|
def test_instance_method_copy_message(self, monkeypatch, chat):
|
|
def test(*args, **kwargs):
|
|
assert args[0] == 'test_copy'
|
|
assert kwargs['from_chat_id'] == chat.id
|
|
return args
|
|
|
|
monkeypatch.setattr(chat.bot, 'copy_message', test)
|
|
assert chat.copy_message('test_copy')
|
|
|
|
def test_equality(self):
|
|
a = Chat(self.id_, self.title, self.type_)
|
|
b = Chat(self.id_, self.title, self.type_)
|
|
c = Chat(self.id_, '', '')
|
|
d = Chat(0, self.title, self.type_)
|
|
e = User(self.id_, '', False)
|
|
|
|
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)
|