mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2024-11-22 07:06:26 +01:00
249 lines
9.7 KiB
Python
249 lines
9.7 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 (
|
|
Bot,
|
|
CallbackQuery,
|
|
Chat,
|
|
InlineKeyboardButton,
|
|
InlineKeyboardMarkup,
|
|
Message,
|
|
Update,
|
|
User,
|
|
)
|
|
from telegram.error import TelegramError
|
|
from telegram.ext import ApplicationBuilder, CallbackContext, Job
|
|
from telegram.warnings import PTBUserWarning
|
|
from tests.auxil.slots import mro_slots
|
|
|
|
"""
|
|
CallbackContext.refresh_data is tested in TestBasePersistence
|
|
"""
|
|
|
|
|
|
class TestCallbackContext:
|
|
def test_slot_behaviour(self, app):
|
|
c = CallbackContext(app)
|
|
for attr in c.__slots__:
|
|
assert getattr(c, attr, "err") != "err", f"got extra slot '{attr}'"
|
|
assert not c.__dict__, f"got missing slot(s): {c.__dict__}"
|
|
assert len(mro_slots(c)) == len(set(mro_slots(c))), "duplicate slot"
|
|
|
|
def test_from_job(self, app):
|
|
job = app.job_queue.run_once(lambda x: x, 10)
|
|
|
|
callback_context = CallbackContext.from_job(job, app)
|
|
|
|
assert callback_context.job is job
|
|
assert callback_context.chat_data is None
|
|
assert callback_context.user_data is None
|
|
assert callback_context.bot_data is app.bot_data
|
|
assert callback_context.bot is app.bot
|
|
assert callback_context.job_queue is app.job_queue
|
|
assert callback_context.update_queue is app.update_queue
|
|
|
|
def test_job_queue(self, bot, app, recwarn):
|
|
expected_warning = (
|
|
"No `JobQueue` set up. To use `JobQueue`, you must install PTB via "
|
|
'`pip install "python-telegram-bot[job-queue]"`.'
|
|
)
|
|
|
|
callback_context = CallbackContext(app)
|
|
assert callback_context.job_queue is app.job_queue
|
|
app = ApplicationBuilder().job_queue(None).token(bot.token).build()
|
|
callback_context = CallbackContext(app)
|
|
assert callback_context.job_queue is None
|
|
assert len(recwarn) == 1
|
|
assert str(recwarn[0].message) == expected_warning
|
|
assert recwarn[0].category is PTBUserWarning
|
|
assert recwarn[0].filename == __file__, "wrong stacklevel"
|
|
|
|
def test_from_update(self, app):
|
|
update = Update(
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
)
|
|
|
|
callback_context = CallbackContext.from_update(update, app)
|
|
|
|
assert callback_context.chat_data == {}
|
|
assert callback_context.user_data == {}
|
|
assert callback_context.bot_data is app.bot_data
|
|
assert callback_context.bot is app.bot
|
|
assert callback_context.job_queue is app.job_queue
|
|
assert callback_context.update_queue is app.update_queue
|
|
|
|
callback_context_same_user_chat = CallbackContext.from_update(update, app)
|
|
|
|
callback_context.bot_data["test"] = "bot"
|
|
callback_context.chat_data["test"] = "chat"
|
|
callback_context.user_data["test"] = "user"
|
|
|
|
assert callback_context_same_user_chat.bot_data is callback_context.bot_data
|
|
assert callback_context_same_user_chat.chat_data is callback_context.chat_data
|
|
assert callback_context_same_user_chat.user_data is callback_context.user_data
|
|
|
|
update_other_user_chat = Update(
|
|
0, message=Message(0, None, Chat(2, "chat"), from_user=User(2, "user", False))
|
|
)
|
|
|
|
callback_context_other_user_chat = CallbackContext.from_update(update_other_user_chat, app)
|
|
|
|
assert callback_context_other_user_chat.bot_data is callback_context.bot_data
|
|
assert callback_context_other_user_chat.chat_data is not callback_context.chat_data
|
|
assert callback_context_other_user_chat.user_data is not callback_context.user_data
|
|
|
|
def test_from_update_not_update(self, app):
|
|
callback_context = CallbackContext.from_update(None, app)
|
|
|
|
assert callback_context.chat_data is None
|
|
assert callback_context.user_data is None
|
|
assert callback_context.bot_data is app.bot_data
|
|
assert callback_context.bot is app.bot
|
|
assert callback_context.job_queue is app.job_queue
|
|
assert callback_context.update_queue is app.update_queue
|
|
|
|
callback_context = CallbackContext.from_update("", app)
|
|
|
|
assert callback_context.chat_data is None
|
|
assert callback_context.user_data is None
|
|
assert callback_context.bot_data is app.bot_data
|
|
assert callback_context.bot is app.bot
|
|
assert callback_context.job_queue is app.job_queue
|
|
assert callback_context.update_queue is app.update_queue
|
|
|
|
def test_from_error(self, app):
|
|
error = TelegramError("test")
|
|
update = Update(
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
)
|
|
coroutine = object()
|
|
|
|
callback_context = CallbackContext.from_error(
|
|
update=update, error=error, application=app, coroutine=coroutine
|
|
)
|
|
|
|
assert callback_context.error is error
|
|
assert callback_context.chat_data == {}
|
|
assert callback_context.user_data == {}
|
|
assert callback_context.bot_data is app.bot_data
|
|
assert callback_context.bot is app.bot
|
|
assert callback_context.job_queue is app.job_queue
|
|
assert callback_context.update_queue is app.update_queue
|
|
assert callback_context.coroutine is coroutine
|
|
|
|
def test_from_error_job_user_chat_data(self, app):
|
|
error = TelegramError("test")
|
|
job = Job(callback=lambda x: x, data=None, chat_id=42, user_id=43)
|
|
|
|
callback_context = CallbackContext.from_error(
|
|
update=None, error=error, application=app, job=job
|
|
)
|
|
|
|
assert callback_context.error is error
|
|
assert callback_context.chat_data == {}
|
|
assert callback_context.user_data == {}
|
|
assert callback_context.bot_data is app.bot_data
|
|
assert callback_context.bot is app.bot
|
|
assert callback_context.job_queue is app.job_queue
|
|
assert callback_context.update_queue is app.update_queue
|
|
assert callback_context.job is job
|
|
|
|
def test_match(self, app):
|
|
callback_context = CallbackContext(app)
|
|
|
|
assert callback_context.match is None
|
|
|
|
callback_context.matches = ["test", "blah"]
|
|
|
|
assert callback_context.match == "test"
|
|
|
|
def test_data_assignment(self, app):
|
|
update = Update(
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
)
|
|
|
|
callback_context = CallbackContext.from_update(update, app)
|
|
|
|
with pytest.raises(AttributeError):
|
|
callback_context.bot_data = {"test": 123}
|
|
with pytest.raises(AttributeError):
|
|
callback_context.user_data = {}
|
|
with pytest.raises(AttributeError):
|
|
callback_context.chat_data = "test"
|
|
|
|
def test_application_attribute(self, app):
|
|
callback_context = CallbackContext(app)
|
|
assert callback_context.application is app
|
|
|
|
def test_drop_callback_data_exception(self, bot, app):
|
|
non_ext_bot = Bot(bot.token)
|
|
update = Update(
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
)
|
|
|
|
callback_context = CallbackContext.from_update(update, app)
|
|
|
|
with pytest.raises(RuntimeError, match="This telegram.ext.ExtBot instance does not"):
|
|
callback_context.drop_callback_data(None)
|
|
|
|
try:
|
|
app.bot = non_ext_bot
|
|
with pytest.raises(RuntimeError, match="telegram.Bot does not allow for"):
|
|
callback_context.drop_callback_data(None)
|
|
finally:
|
|
app.bot = bot
|
|
|
|
async def test_drop_callback_data(self, bot, monkeypatch, chat_id):
|
|
app = ApplicationBuilder().token(bot.token).arbitrary_callback_data(True).build()
|
|
|
|
update = Update(
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
)
|
|
|
|
callback_context = CallbackContext.from_update(update, app)
|
|
async with app:
|
|
await app.bot.send_message(
|
|
chat_id=chat_id,
|
|
text="test",
|
|
reply_markup=InlineKeyboardMarkup.from_button(
|
|
InlineKeyboardButton("test", callback_data="callback_data")
|
|
),
|
|
)
|
|
keyboard_uuid = app.bot.callback_data_cache.persistence_data[0][0][0]
|
|
button_uuid = next(iter(app.bot.callback_data_cache.persistence_data[0][0][2]))
|
|
callback_data = keyboard_uuid + button_uuid
|
|
callback_query = CallbackQuery(
|
|
id="1",
|
|
from_user=None,
|
|
chat_instance=None,
|
|
data=callback_data,
|
|
)
|
|
app.bot.callback_data_cache.process_callback_query(callback_query)
|
|
|
|
try:
|
|
assert len(app.bot.callback_data_cache.persistence_data[0]) == 1
|
|
assert list(app.bot.callback_data_cache.persistence_data[1]) == ["1"]
|
|
|
|
callback_context.drop_callback_data(callback_query)
|
|
assert app.bot.callback_data_cache.persistence_data == ([], {})
|
|
finally:
|
|
app.bot.callback_data_cache.clear_callback_data()
|
|
app.bot.callback_data_cache.clear_callback_queries()
|