mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-21 22:56:38 +01:00
099ab5d9fa
Co-authored-by: Hinrich Mahler <22366557+Bibo-Joshi@users.noreply.github.com> Co-authored-by: Harshil <37377066+harshil21@users.noreply.github.com>
195 lines
7.1 KiB
Python
195 lines
7.1 KiB
Python
#!/usr/bin/env python
|
|
#
|
|
# A library that provides a Python interface to the Telegram Bot API
|
|
# Copyright (C) 2015-2024
|
|
# 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 ChatAdministratorRights, KeyboardButtonRequestChat, KeyboardButtonRequestUsers
|
|
from tests.auxil.slots import mro_slots
|
|
|
|
|
|
@pytest.fixture(scope="class")
|
|
def request_users():
|
|
return KeyboardButtonRequestUsers(
|
|
TestKeyboardButtonRequestUsersBase.request_id,
|
|
TestKeyboardButtonRequestUsersBase.user_is_bot,
|
|
TestKeyboardButtonRequestUsersBase.user_is_premium,
|
|
TestKeyboardButtonRequestUsersBase.max_quantity,
|
|
)
|
|
|
|
|
|
class TestKeyboardButtonRequestUsersBase:
|
|
request_id = 123
|
|
user_is_bot = True
|
|
user_is_premium = False
|
|
max_quantity = 10
|
|
|
|
|
|
class TestKeyboardButtonRequestUsersWithoutRequest(TestKeyboardButtonRequestUsersBase):
|
|
def test_slot_behaviour(self, request_users):
|
|
for attr in request_users.__slots__:
|
|
assert getattr(request_users, attr, "err") != "err", f"got extra slot '{attr}'"
|
|
assert len(mro_slots(request_users)) == len(
|
|
set(mro_slots(request_users))
|
|
), "duplicate slot"
|
|
|
|
def test_to_dict(self, request_users):
|
|
request_users_dict = request_users.to_dict()
|
|
|
|
assert isinstance(request_users_dict, dict)
|
|
assert request_users_dict["request_id"] == self.request_id
|
|
assert request_users_dict["user_is_bot"] == self.user_is_bot
|
|
assert request_users_dict["user_is_premium"] == self.user_is_premium
|
|
assert request_users_dict["max_quantity"] == self.max_quantity
|
|
|
|
def test_de_json(self, bot):
|
|
json_dict = {
|
|
"request_id": self.request_id,
|
|
"user_is_bot": self.user_is_bot,
|
|
"user_is_premium": self.user_is_premium,
|
|
"max_quantity": self.max_quantity,
|
|
}
|
|
request_users = KeyboardButtonRequestUsers.de_json(json_dict, bot)
|
|
assert request_users.api_kwargs == {}
|
|
|
|
assert request_users.request_id == self.request_id
|
|
assert request_users.user_is_bot == self.user_is_bot
|
|
assert request_users.user_is_premium == self.user_is_premium
|
|
assert request_users.max_quantity == self.max_quantity
|
|
|
|
def test_equality(self):
|
|
a = KeyboardButtonRequestUsers(self.request_id)
|
|
b = KeyboardButtonRequestUsers(self.request_id)
|
|
c = KeyboardButtonRequestUsers(1)
|
|
|
|
assert a == b
|
|
assert hash(a) == hash(b)
|
|
assert a is not b
|
|
|
|
assert a != c
|
|
assert hash(a) != hash(c)
|
|
|
|
|
|
@pytest.fixture(scope="class")
|
|
def request_chat():
|
|
return KeyboardButtonRequestChat(
|
|
TestKeyboardButtonRequestChatBase.request_id,
|
|
TestKeyboardButtonRequestChatBase.chat_is_channel,
|
|
TestKeyboardButtonRequestChatBase.chat_is_forum,
|
|
TestKeyboardButtonRequestChatBase.chat_has_username,
|
|
TestKeyboardButtonRequestChatBase.chat_is_created,
|
|
TestKeyboardButtonRequestChatBase.user_administrator_rights,
|
|
TestKeyboardButtonRequestChatBase.bot_administrator_rights,
|
|
TestKeyboardButtonRequestChatBase.bot_is_member,
|
|
)
|
|
|
|
|
|
class TestKeyboardButtonRequestChatBase:
|
|
request_id = 456
|
|
chat_is_channel = True
|
|
chat_is_forum = False
|
|
chat_has_username = True
|
|
chat_is_created = False
|
|
user_administrator_rights = ChatAdministratorRights(
|
|
True,
|
|
False,
|
|
True,
|
|
False,
|
|
True,
|
|
False,
|
|
True,
|
|
False,
|
|
can_post_stories=False,
|
|
can_edit_stories=False,
|
|
can_delete_stories=False,
|
|
)
|
|
bot_administrator_rights = ChatAdministratorRights(
|
|
True,
|
|
False,
|
|
True,
|
|
False,
|
|
True,
|
|
False,
|
|
True,
|
|
False,
|
|
can_post_stories=False,
|
|
can_edit_stories=False,
|
|
can_delete_stories=False,
|
|
)
|
|
bot_is_member = True
|
|
|
|
|
|
class TestKeyboardButtonRequestChatWithoutRequest(TestKeyboardButtonRequestChatBase):
|
|
def test_slot_behaviour(self, request_chat):
|
|
for attr in request_chat.__slots__:
|
|
assert getattr(request_chat, attr, "err") != "err", f"got extra slot '{attr}'"
|
|
assert len(mro_slots(request_chat)) == len(set(mro_slots(request_chat))), "duplicate slot"
|
|
|
|
def test_to_dict(self, request_chat):
|
|
request_chat_dict = request_chat.to_dict()
|
|
|
|
assert isinstance(request_chat_dict, dict)
|
|
assert request_chat_dict["request_id"] == self.request_id
|
|
assert request_chat_dict["chat_is_channel"] == self.chat_is_channel
|
|
assert request_chat_dict["chat_is_forum"] == self.chat_is_forum
|
|
assert request_chat_dict["chat_has_username"] == self.chat_has_username
|
|
assert (
|
|
request_chat_dict["user_administrator_rights"]
|
|
== self.user_administrator_rights.to_dict()
|
|
)
|
|
assert (
|
|
request_chat_dict["bot_administrator_rights"]
|
|
== self.bot_administrator_rights.to_dict()
|
|
)
|
|
assert request_chat_dict["bot_is_member"] == self.bot_is_member
|
|
|
|
def test_de_json(self, bot):
|
|
json_dict = {
|
|
"request_id": self.request_id,
|
|
"chat_is_channel": self.chat_is_channel,
|
|
"chat_is_forum": self.chat_is_forum,
|
|
"chat_has_username": self.chat_has_username,
|
|
"user_administrator_rights": self.user_administrator_rights.to_dict(),
|
|
"bot_administrator_rights": self.bot_administrator_rights.to_dict(),
|
|
"bot_is_member": self.bot_is_member,
|
|
}
|
|
request_chat = KeyboardButtonRequestChat.de_json(json_dict, bot)
|
|
assert request_chat.api_kwargs == {}
|
|
|
|
assert request_chat.request_id == self.request_id
|
|
assert request_chat.chat_is_channel == self.chat_is_channel
|
|
assert request_chat.chat_is_forum == self.chat_is_forum
|
|
assert request_chat.chat_has_username == self.chat_has_username
|
|
assert request_chat.user_administrator_rights == self.user_administrator_rights
|
|
assert request_chat.bot_administrator_rights == self.bot_administrator_rights
|
|
assert request_chat.bot_is_member == self.bot_is_member
|
|
|
|
empty_chat = KeyboardButtonRequestChat.de_json({}, bot)
|
|
assert empty_chat is None
|
|
|
|
def test_equality(self):
|
|
a = KeyboardButtonRequestChat(self.request_id, True)
|
|
b = KeyboardButtonRequestChat(self.request_id, True)
|
|
c = KeyboardButtonRequestChat(1, True)
|
|
|
|
assert a == b
|
|
assert hash(a) == hash(b)
|
|
assert a is not b
|
|
|
|
assert a != c
|
|
assert hash(a) != hash(c)
|