2018-09-21 08:57:01 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2024-02-19 20:06:25 +01:00
|
|
|
# Copyright (C) 2015-2024
|
2018-09-21 08:57:01 +02:00
|
|
|
# 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/].
|
2021-05-29 16:18:16 +02:00
|
|
|
|
2018-09-21 08:57:01 +02:00
|
|
|
import pytest
|
|
|
|
|
2021-06-06 11:48:48 +02:00
|
|
|
from telegram import (
|
|
|
|
Bot,
|
|
|
|
CallbackQuery,
|
2022-05-05 09:27:54 +02:00
|
|
|
Chat,
|
|
|
|
InlineKeyboardButton,
|
|
|
|
InlineKeyboardMarkup,
|
|
|
|
Message,
|
|
|
|
Update,
|
|
|
|
User,
|
2021-06-06 11:48:48 +02:00
|
|
|
)
|
2021-09-22 16:49:10 +02:00
|
|
|
from telegram.error import TelegramError
|
2022-07-11 07:54:03 +02:00
|
|
|
from telegram.ext import ApplicationBuilder, CallbackContext, Job
|
2023-04-27 22:36:04 +02:00
|
|
|
from telegram.warnings import PTBUserWarning
|
2023-02-22 20:19:46 +01:00
|
|
|
from tests.auxil.slots import mro_slots
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2021-06-06 10:37:53 +02:00
|
|
|
"""
|
|
|
|
CallbackContext.refresh_data is tested in TestBasePersistence
|
|
|
|
"""
|
|
|
|
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2020-06-15 18:20:51 +02:00
|
|
|
class TestCallbackContext:
|
2023-02-22 20:19:46 +01:00
|
|
|
def test_slot_behaviour(self, app):
|
2022-04-24 12:38:09 +02:00
|
|
|
c = CallbackContext(app)
|
2021-05-29 16:18:16 +02:00
|
|
|
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"
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def test_from_job(self, app):
|
|
|
|
job = app.job_queue.run_once(lambda x: x, 10)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
callback_context = CallbackContext.from_job(job, app)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
|
|
|
assert callback_context.job is job
|
|
|
|
assert callback_context.chat_data is None
|
|
|
|
assert callback_context.user_data is None
|
2022-04-24 12:38:09 +02:00
|
|
|
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
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2022-12-02 12:08:11 +01:00
|
|
|
def test_job_queue(self, bot, app, recwarn):
|
|
|
|
expected_warning = (
|
|
|
|
"No `JobQueue` set up. To use `JobQueue`, you must install PTB via "
|
2023-06-29 07:46:00 +02:00
|
|
|
'`pip install "python-telegram-bot[job-queue]"`.'
|
2022-12-02 12:08:11 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
2023-04-27 22:36:04 +02:00
|
|
|
assert recwarn[0].category is PTBUserWarning
|
2022-12-02 12:08:11 +01:00
|
|
|
assert recwarn[0].filename == __file__, "wrong stacklevel"
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def test_from_update(self, app):
|
2020-10-06 19:28:40 +02:00
|
|
|
update = Update(
|
|
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
|
|
)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
callback_context = CallbackContext.from_update(update, app)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
|
|
|
assert callback_context.chat_data == {}
|
|
|
|
assert callback_context.user_data == {}
|
2022-04-24 12:38:09 +02:00
|
|
|
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
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
callback_context_same_user_chat = CallbackContext.from_update(update, app)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2020-02-02 22:20:31 +01:00
|
|
|
callback_context.bot_data["test"] = "bot"
|
2018-09-21 08:57:01 +02:00
|
|
|
callback_context.chat_data["test"] = "chat"
|
|
|
|
callback_context.user_data["test"] = "user"
|
|
|
|
|
2020-02-02 22:20:31 +01:00
|
|
|
assert callback_context_same_user_chat.bot_data is callback_context.bot_data
|
2018-09-21 08:57:01 +02:00
|
|
|
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
|
|
|
|
|
2020-10-06 19:28:40 +02:00
|
|
|
update_other_user_chat = Update(
|
|
|
|
0, message=Message(0, None, Chat(2, "chat"), from_user=User(2, "user", False))
|
|
|
|
)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
callback_context_other_user_chat = CallbackContext.from_update(update_other_user_chat, app)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2020-02-02 22:20:31 +01:00
|
|
|
assert callback_context_other_user_chat.bot_data is callback_context.bot_data
|
2018-09-21 08:57:01 +02:00
|
|
|
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
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def test_from_update_not_update(self, app):
|
|
|
|
callback_context = CallbackContext.from_update(None, app)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
|
|
|
assert callback_context.chat_data is None
|
|
|
|
assert callback_context.user_data is None
|
2022-04-24 12:38:09 +02:00
|
|
|
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
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
callback_context = CallbackContext.from_update("", app)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
|
|
|
assert callback_context.chat_data is None
|
|
|
|
assert callback_context.user_data is None
|
2022-04-24 12:38:09 +02:00
|
|
|
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
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def test_from_error(self, app):
|
2018-09-21 08:57:01 +02:00
|
|
|
error = TelegramError("test")
|
2020-10-06 19:28:40 +02:00
|
|
|
update = Update(
|
|
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
|
|
)
|
2022-04-24 12:38:09 +02:00
|
|
|
coroutine = object()
|
2020-10-04 17:20:33 +02:00
|
|
|
|
|
|
|
callback_context = CallbackContext.from_error(
|
2022-07-11 07:54:03 +02:00
|
|
|
update=update, error=error, application=app, coroutine=coroutine
|
2020-10-04 17:20:33 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
assert callback_context.error is error
|
2022-04-24 12:38:09 +02:00
|
|
|
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
|
2022-07-11 07:54:03 +02:00
|
|
|
|
|
|
|
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
|
2022-04-24 12:38:09 +02:00
|
|
|
assert callback_context.job is job
|
2019-02-13 12:07:25 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def test_match(self, app):
|
|
|
|
callback_context = CallbackContext(app)
|
2019-02-13 12:07:25 +01:00
|
|
|
|
|
|
|
assert callback_context.match is None
|
|
|
|
|
|
|
|
callback_context.matches = ["test", "blah"]
|
|
|
|
|
|
|
|
assert callback_context.match == "test"
|
2019-09-05 22:48:28 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def test_data_assignment(self, app):
|
2020-10-06 19:28:40 +02:00
|
|
|
update = Update(
|
|
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
|
|
)
|
2019-09-05 22:48:28 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
callback_context = CallbackContext.from_update(update, app)
|
2019-09-05 22:48:28 +02:00
|
|
|
|
|
|
|
with pytest.raises(AttributeError):
|
2021-02-19 19:07:48 +01:00
|
|
|
callback_context.bot_data = {"test": 123}
|
2019-09-05 22:48:28 +02:00
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
callback_context.user_data = {}
|
|
|
|
with pytest.raises(AttributeError):
|
|
|
|
callback_context.chat_data = "test"
|
2020-01-26 21:55:00 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def test_application_attribute(self, app):
|
|
|
|
callback_context = CallbackContext(app)
|
|
|
|
assert callback_context.application is app
|
2021-06-06 11:48:48 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def test_drop_callback_data_exception(self, bot, app):
|
2021-06-06 11:48:48 +02:00
|
|
|
non_ext_bot = Bot(bot.token)
|
|
|
|
update = Update(
|
|
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
callback_context = CallbackContext.from_update(update, app)
|
2021-06-06 11:48:48 +02:00
|
|
|
|
|
|
|
with pytest.raises(RuntimeError, match="This telegram.ext.ExtBot instance does not"):
|
|
|
|
callback_context.drop_callback_data(None)
|
|
|
|
|
|
|
|
try:
|
2022-04-24 12:38:09 +02:00
|
|
|
app.bot = non_ext_bot
|
2021-06-06 11:48:48 +02:00
|
|
|
with pytest.raises(RuntimeError, match="telegram.Bot does not allow for"):
|
|
|
|
callback_context.drop_callback_data(None)
|
|
|
|
finally:
|
2022-04-24 12:38:09 +02:00
|
|
|
app.bot = bot
|
2021-06-06 11:48:48 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_drop_callback_data(self, bot, monkeypatch, chat_id):
|
|
|
|
app = ApplicationBuilder().token(bot.token).arbitrary_callback_data(True).build()
|
2021-06-06 11:48:48 +02:00
|
|
|
|
|
|
|
update = Update(
|
|
|
|
0, message=Message(0, None, Chat(1, "chat"), from_user=User(1, "user", False))
|
|
|
|
)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
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]
|
2023-08-02 11:51:17 +02:00
|
|
|
button_uuid = next(iter(app.bot.callback_data_cache.persistence_data[0][0][2]))
|
2021-06-06 11:48:48 +02:00
|
|
|
callback_data = keyboard_uuid + button_uuid
|
|
|
|
callback_query = CallbackQuery(
|
|
|
|
id="1",
|
|
|
|
from_user=None,
|
|
|
|
chat_instance=None,
|
|
|
|
data=callback_data,
|
|
|
|
)
|
2022-04-24 12:38:09 +02:00
|
|
|
app.bot.callback_data_cache.process_callback_query(callback_query)
|
2021-06-06 11:48:48 +02:00
|
|
|
|
|
|
|
try:
|
2022-04-24 12:38:09 +02:00
|
|
|
assert len(app.bot.callback_data_cache.persistence_data[0]) == 1
|
|
|
|
assert list(app.bot.callback_data_cache.persistence_data[1]) == ["1"]
|
2021-06-06 11:48:48 +02:00
|
|
|
|
|
|
|
callback_context.drop_callback_data(callback_query)
|
2022-04-24 12:38:09 +02:00
|
|
|
assert app.bot.callback_data_cache.persistence_data == ([], {})
|
2021-06-06 11:48:48 +02:00
|
|
|
finally:
|
2022-04-24 12:38:09 +02:00
|
|
|
app.bot.callback_data_cache.clear_callback_data()
|
|
|
|
app.bot.callback_data_cache.clear_callback_queries()
|