2015-11-06 00:23:34 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2023-01-01 21:31:29 +01:00
|
|
|
# Copyright (C) 2015-2023
|
2016-01-05 14:12:03 +01:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
2015-11-06 00:23:34 +01: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-11-06 00:23:34 +01: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-11-06 00:23:34 +01:00
|
|
|
#
|
2017-08-11 23:58:41 +02:00
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
2015-11-06 00:23:34 +01:00
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2020-08-25 22:21:24 +02:00
|
|
|
import asyncio
|
2018-01-09 16:54:07 +01:00
|
|
|
import logging
|
2022-04-24 12:38:09 +02:00
|
|
|
from collections import defaultdict
|
|
|
|
from http import HTTPStatus
|
2021-10-13 08:12:48 +02:00
|
|
|
from pathlib import Path
|
2016-04-27 00:28:21 +02:00
|
|
|
from random import randrange
|
2015-11-06 00:23:34 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
import pytest
|
2015-11-06 00:23:34 +01:00
|
|
|
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram import Bot, InlineKeyboardButton, InlineKeyboardMarkup, Update
|
2022-04-24 12:38:09 +02:00
|
|
|
from telegram._utils.defaultvalue import DEFAULT_NONE
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram.error import InvalidToken, RetryAfter, TelegramError, TimedOut
|
|
|
|
from telegram.ext import ExtBot, InvalidCallbackData, Updater
|
2022-04-24 12:38:09 +02:00
|
|
|
from telegram.request import HTTPXRequest
|
2023-02-22 20:19:46 +01:00
|
|
|
from tests.auxil.build_messages import make_message, make_message_update
|
|
|
|
from tests.auxil.envvars import TEST_WITH_OPT_DEPS
|
|
|
|
from tests.auxil.files import data_file
|
|
|
|
from tests.auxil.networking import send_webhook_message
|
|
|
|
from tests.auxil.pytest_classes import PytestBot, make_bot
|
|
|
|
from tests.auxil.slots import mro_slots
|
2016-09-06 15:38:07 +02:00
|
|
|
|
2022-10-31 10:12:18 +01:00
|
|
|
if TEST_WITH_OPT_DEPS:
|
|
|
|
from telegram.ext._utils.webhookhandler import WebhookServer
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
|
|
TEST_WITH_OPT_DEPS, reason="Only relevant if the optional dependency is not installed"
|
|
|
|
)
|
|
|
|
class TestNoWebhooks:
|
|
|
|
async def test_no_webhooks(self, bot):
|
2023-03-25 19:18:04 +01:00
|
|
|
async with Updater(bot=bot, update_queue=asyncio.Queue()) as updater:
|
|
|
|
with pytest.raises(RuntimeError, match=r"python-telegram-bot\[webhooks\]"):
|
2022-10-31 10:12:18 +01:00
|
|
|
await updater.start_webhook()
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.mark.skipif(
|
|
|
|
not TEST_WITH_OPT_DEPS,
|
|
|
|
reason="Only relevant if the optional dependency is installed",
|
|
|
|
)
|
2020-06-15 18:20:51 +02:00
|
|
|
class TestUpdater:
|
2017-08-11 23:58:41 +02:00
|
|
|
message_count = 0
|
|
|
|
received = None
|
|
|
|
attempts = 0
|
2022-04-24 12:38:09 +02:00
|
|
|
err_handler_called = None
|
|
|
|
cb_handler_called = None
|
2020-06-24 00:25:58 +02:00
|
|
|
offset = 0
|
2021-03-13 15:35:26 +01:00
|
|
|
test_flag = False
|
2015-11-21 15:45:45 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.fixture(autouse=True)
|
2023-03-25 19:18:04 +01:00
|
|
|
def _reset(self):
|
2015-11-24 20:34:38 +01:00
|
|
|
self.message_count = 0
|
2017-08-11 23:58:41 +02:00
|
|
|
self.received = None
|
|
|
|
self.attempts = 0
|
2022-04-24 12:38:09 +02:00
|
|
|
self.err_handler_called = None
|
|
|
|
self.cb_handler_called = None
|
2021-03-13 15:35:26 +01:00
|
|
|
self.test_flag = False
|
2016-04-21 13:07:44 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def error_callback(self, error):
|
|
|
|
self.received = error
|
2018-03-02 22:11:16 +01:00
|
|
|
self.err_handler_called.set()
|
2015-11-21 19:35:24 +01:00
|
|
|
|
2021-08-29 18:15:04 +02:00
|
|
|
def callback(self, update, context):
|
2017-08-11 23:58:41 +02:00
|
|
|
self.received = update.message.text
|
2018-03-02 22:11:16 +01:00
|
|
|
self.cb_handler_called.set()
|
2016-09-06 15:38:07 +02:00
|
|
|
|
2023-02-22 20:19:46 +01:00
|
|
|
async def test_slot_behaviour(self, updater):
|
2022-04-24 12:38:09 +02:00
|
|
|
async with updater:
|
|
|
|
for at in updater.__slots__:
|
2023-03-25 19:18:04 +01:00
|
|
|
attr = f"_Updater{at}" if at.startswith("__") and not at.endswith("__") else at
|
|
|
|
assert getattr(updater, attr, "err") != "err", f"got extra slot '{attr}'"
|
2022-04-24 12:38:09 +02:00
|
|
|
assert len(mro_slots(updater)) == len(set(mro_slots(updater))), "duplicate slot"
|
|
|
|
|
|
|
|
def test_init(self, bot):
|
|
|
|
queue = asyncio.Queue()
|
|
|
|
updater = Updater(bot=bot, update_queue=queue)
|
|
|
|
assert updater.bot is bot
|
|
|
|
assert updater.update_queue is queue
|
|
|
|
|
|
|
|
async def test_initialize(self, bot, monkeypatch):
|
|
|
|
async def initialize_bot(*args, **kwargs):
|
|
|
|
self.test_flag = True
|
|
|
|
|
2022-06-27 18:46:52 +02:00
|
|
|
async with make_bot(token=bot.token) as test_bot:
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(test_bot, "initialize", initialize_bot)
|
|
|
|
|
|
|
|
updater = Updater(bot=test_bot, update_queue=asyncio.Queue())
|
|
|
|
await updater.initialize()
|
|
|
|
|
|
|
|
assert self.test_flag
|
|
|
|
|
|
|
|
async def test_shutdown(self, bot, monkeypatch):
|
|
|
|
async def shutdown_bot(*args, **kwargs):
|
|
|
|
self.test_flag = True
|
|
|
|
|
2022-06-27 18:46:52 +02:00
|
|
|
async with make_bot(token=bot.token) as test_bot:
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(test_bot, "shutdown", shutdown_bot)
|
|
|
|
|
|
|
|
updater = Updater(bot=test_bot, update_queue=asyncio.Queue())
|
|
|
|
await updater.initialize()
|
|
|
|
await updater.shutdown()
|
|
|
|
|
|
|
|
assert self.test_flag
|
|
|
|
|
|
|
|
async def test_multiple_inits_and_shutdowns(self, updater, monkeypatch):
|
|
|
|
self.test_flag = defaultdict(int)
|
|
|
|
|
|
|
|
async def initialize(*args, **kargs):
|
|
|
|
self.test_flag["init"] += 1
|
|
|
|
|
|
|
|
async def shutdown(*args, **kwargs):
|
|
|
|
self.test_flag["shutdown"] += 1
|
|
|
|
|
|
|
|
monkeypatch.setattr(updater.bot, "initialize", initialize)
|
|
|
|
monkeypatch.setattr(updater.bot, "shutdown", shutdown)
|
|
|
|
|
|
|
|
await updater.initialize()
|
|
|
|
await updater.initialize()
|
|
|
|
await updater.initialize()
|
|
|
|
await updater.shutdown()
|
|
|
|
await updater.shutdown()
|
|
|
|
await updater.shutdown()
|
|
|
|
|
|
|
|
assert self.test_flag["init"] == 1
|
|
|
|
assert self.test_flag["shutdown"] == 1
|
|
|
|
|
|
|
|
async def test_multiple_init_cycles(self, updater):
|
|
|
|
# nothing really to assert - this should just not fail
|
|
|
|
async with updater:
|
|
|
|
await updater.bot.get_me()
|
|
|
|
async with updater:
|
|
|
|
await updater.bot.get_me()
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("method", ["start_polling", "start_webhook"])
|
|
|
|
async def test_start_without_initialize(self, updater, method):
|
|
|
|
with pytest.raises(RuntimeError, match="not initialized"):
|
|
|
|
await getattr(updater, method)()
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("method", ["start_polling", "start_webhook"])
|
|
|
|
async def test_shutdown_while_running(self, updater, method, monkeypatch):
|
|
|
|
async def set_webhook(*args, **kwargs):
|
|
|
|
return True
|
2021-09-20 08:45:42 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", set_webhook)
|
2018-03-02 22:11:16 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
ip = "127.0.0.1"
|
|
|
|
port = randrange(1024, 49152) # Select random port
|
2018-03-02 22:11:16 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async with updater:
|
|
|
|
if "webhook" in method:
|
|
|
|
await getattr(updater, method)(
|
|
|
|
ip_address=ip,
|
|
|
|
port=port,
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
await getattr(updater, method)()
|
2018-03-02 22:11:16 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
with pytest.raises(RuntimeError, match="still running"):
|
|
|
|
await updater.shutdown()
|
|
|
|
await updater.stop()
|
2018-03-02 22:11:16 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_context_manager(self, monkeypatch, updater):
|
|
|
|
async def initialize(*args, **kwargs):
|
|
|
|
self.test_flag = ["initialize"]
|
2018-03-02 22:11:16 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def shutdown(*args, **kwargs):
|
|
|
|
self.test_flag.append("stop")
|
|
|
|
|
|
|
|
monkeypatch.setattr(Updater, "initialize", initialize)
|
|
|
|
monkeypatch.setattr(Updater, "shutdown", shutdown)
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
pass
|
|
|
|
|
|
|
|
assert self.test_flag == ["initialize", "stop"]
|
|
|
|
|
|
|
|
async def test_context_manager_exception_on_init(self, monkeypatch, updater):
|
|
|
|
async def initialize(*args, **kwargs):
|
|
|
|
raise RuntimeError("initialize")
|
|
|
|
|
|
|
|
async def shutdown(*args):
|
|
|
|
self.test_flag = "stop"
|
|
|
|
|
|
|
|
monkeypatch.setattr(Updater, "initialize", initialize)
|
|
|
|
monkeypatch.setattr(Updater, "shutdown", shutdown)
|
|
|
|
|
|
|
|
with pytest.raises(RuntimeError, match="initialize"):
|
|
|
|
async with updater:
|
|
|
|
pass
|
2018-03-02 22:11:16 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
assert self.test_flag == "stop"
|
|
|
|
|
2023-03-25 19:18:04 +01:00
|
|
|
@pytest.mark.parametrize("drop_pending_updates", [True, False])
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_polling_basic(self, monkeypatch, updater, drop_pending_updates):
|
|
|
|
updates = asyncio.Queue()
|
|
|
|
await updates.put(Update(update_id=1))
|
|
|
|
await updates.put(Update(update_id=2))
|
|
|
|
|
|
|
|
async def get_updates(*args, **kwargs):
|
|
|
|
next_update = await updates.get()
|
|
|
|
updates.task_done()
|
|
|
|
return [next_update]
|
|
|
|
|
|
|
|
orig_del_webhook = updater.bot.delete_webhook
|
|
|
|
|
|
|
|
async def delete_webhook(*args, **kwargs):
|
|
|
|
# Dropping pending updates is done by passing the parameter to delete_webhook
|
|
|
|
if kwargs.get("drop_pending_updates"):
|
|
|
|
self.message_count += 1
|
|
|
|
return await orig_del_webhook(*args, **kwargs)
|
|
|
|
|
|
|
|
monkeypatch.setattr(updater.bot, "get_updates", get_updates)
|
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", delete_webhook)
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
return_value = await updater.start_polling(drop_pending_updates=drop_pending_updates)
|
|
|
|
assert return_value is updater.update_queue
|
|
|
|
assert updater.running
|
|
|
|
await updates.join()
|
|
|
|
await updater.stop()
|
|
|
|
assert not updater.running
|
|
|
|
assert not (await updater.bot.get_webhook_info()).url
|
|
|
|
if drop_pending_updates:
|
|
|
|
assert self.message_count == 1
|
|
|
|
else:
|
|
|
|
assert self.message_count == 0
|
|
|
|
|
|
|
|
await updates.put(Update(update_id=3))
|
|
|
|
await updates.put(Update(update_id=4))
|
|
|
|
|
|
|
|
# We call the same logic twice to make sure that restarting the updater works as well
|
|
|
|
await updater.start_polling(drop_pending_updates=drop_pending_updates)
|
|
|
|
assert updater.running
|
2023-06-29 18:17:47 +02:00
|
|
|
tasks = asyncio.all_tasks()
|
|
|
|
assert any("Updater:start_polling:polling_task" in t.get_name() for t in tasks)
|
2022-04-24 12:38:09 +02:00
|
|
|
await updates.join()
|
|
|
|
await updater.stop()
|
|
|
|
assert not updater.running
|
|
|
|
assert not (await updater.bot.get_webhook_info()).url
|
|
|
|
|
|
|
|
self.received = []
|
|
|
|
self.message_count = 0
|
|
|
|
while not updater.update_queue.empty():
|
|
|
|
update = updater.update_queue.get_nowait()
|
|
|
|
self.message_count += 1
|
|
|
|
self.received.append(update.update_id)
|
|
|
|
|
|
|
|
assert self.message_count == 4
|
|
|
|
assert self.received == [1, 2, 3, 4]
|
|
|
|
|
|
|
|
async def test_start_polling_already_running(self, updater):
|
|
|
|
async with updater:
|
|
|
|
await updater.start_polling()
|
|
|
|
task = asyncio.create_task(updater.start_polling())
|
|
|
|
with pytest.raises(RuntimeError, match="already running"):
|
|
|
|
await task
|
|
|
|
await updater.stop()
|
|
|
|
with pytest.raises(RuntimeError, match="not running"):
|
|
|
|
await updater.stop()
|
|
|
|
|
|
|
|
async def test_start_polling_get_updates_parameters(self, updater, monkeypatch):
|
|
|
|
update_queue = asyncio.Queue()
|
|
|
|
await update_queue.put(Update(update_id=1))
|
|
|
|
|
2023-03-25 19:18:04 +01:00
|
|
|
expected = {
|
|
|
|
"timeout": 10,
|
|
|
|
"read_timeout": 2,
|
|
|
|
"write_timeout": DEFAULT_NONE,
|
|
|
|
"connect_timeout": DEFAULT_NONE,
|
|
|
|
"pool_timeout": DEFAULT_NONE,
|
|
|
|
"allowed_updates": None,
|
|
|
|
"api_kwargs": None,
|
|
|
|
}
|
2020-10-09 17:22:07 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def get_updates(*args, **kwargs):
|
|
|
|
for key, value in expected.items():
|
|
|
|
assert kwargs.pop(key, None) == value
|
|
|
|
|
|
|
|
offset = kwargs.pop("offset", None)
|
|
|
|
# Check that we don't get any unexpected kwargs
|
|
|
|
assert kwargs == {}
|
|
|
|
|
|
|
|
if offset is not None and self.message_count != 0:
|
|
|
|
assert offset == self.message_count + 1, "get_updates got wrong `offset` parameter"
|
|
|
|
|
|
|
|
update = await update_queue.get()
|
|
|
|
self.message_count = update.update_id
|
|
|
|
update_queue.task_done()
|
|
|
|
return [update]
|
|
|
|
|
|
|
|
monkeypatch.setattr(updater.bot, "get_updates", get_updates)
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
await updater.start_polling()
|
|
|
|
await update_queue.join()
|
|
|
|
await updater.stop()
|
|
|
|
|
2023-03-25 19:18:04 +01:00
|
|
|
expected = {
|
|
|
|
"timeout": 42,
|
|
|
|
"read_timeout": 43,
|
|
|
|
"write_timeout": 44,
|
|
|
|
"connect_timeout": 45,
|
|
|
|
"pool_timeout": 46,
|
|
|
|
"allowed_updates": ["message"],
|
|
|
|
"api_kwargs": None,
|
|
|
|
}
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
await update_queue.put(Update(update_id=2))
|
|
|
|
await updater.start_polling(
|
|
|
|
timeout=42,
|
|
|
|
read_timeout=43,
|
|
|
|
write_timeout=44,
|
|
|
|
connect_timeout=45,
|
|
|
|
pool_timeout=46,
|
|
|
|
allowed_updates=["message"],
|
|
|
|
)
|
|
|
|
await update_queue.join()
|
|
|
|
await updater.stop()
|
|
|
|
|
2023-03-25 19:18:04 +01:00
|
|
|
@pytest.mark.parametrize("exception_class", [InvalidToken, TelegramError])
|
|
|
|
@pytest.mark.parametrize("retries", [3, 0])
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_start_polling_bootstrap_retries(
|
|
|
|
self, updater, monkeypatch, exception_class, retries
|
|
|
|
):
|
|
|
|
async def do_request(*args, **kwargs):
|
|
|
|
self.message_count += 1
|
|
|
|
raise exception_class(str(self.message_count))
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
# Patch within the context so that updater.bot.initialize can still be called
|
|
|
|
# by the context manager
|
|
|
|
monkeypatch.setattr(HTTPXRequest, "do_request", do_request)
|
|
|
|
|
|
|
|
if exception_class == InvalidToken:
|
|
|
|
with pytest.raises(InvalidToken, match="1"):
|
|
|
|
await updater.start_polling(bootstrap_retries=retries)
|
|
|
|
else:
|
|
|
|
with pytest.raises(TelegramError, match=str(retries + 1)):
|
2022-05-05 09:27:54 +02:00
|
|
|
await updater.start_polling(bootstrap_retries=retries)
|
2022-04-24 12:38:09 +02:00
|
|
|
|
2018-03-02 22:11:16 +01:00
|
|
|
@pytest.mark.parametrize(
|
2023-03-25 19:18:04 +01:00
|
|
|
("error", "callback_should_be_called"),
|
2022-04-24 12:38:09 +02:00
|
|
|
argvalues=[
|
|
|
|
(TelegramError("TestMessage"), True),
|
|
|
|
(RetryAfter(1), False),
|
|
|
|
(TimedOut("TestMessage"), False),
|
|
|
|
],
|
|
|
|
ids=("TelegramError", "RetryAfter", "TimedOut"),
|
2018-03-02 22:11:16 +01:00
|
|
|
)
|
2022-04-24 12:38:09 +02:00
|
|
|
@pytest.mark.parametrize("custom_error_callback", [True, False])
|
|
|
|
async def test_start_polling_exceptions_and_error_callback(
|
|
|
|
self, monkeypatch, updater, error, callback_should_be_called, custom_error_callback, caplog
|
|
|
|
):
|
|
|
|
get_updates_event = asyncio.Event()
|
|
|
|
|
|
|
|
async def get_updates(*args, **kwargs):
|
|
|
|
# So that the main task has a chance to be called
|
|
|
|
await asyncio.sleep(0)
|
2018-03-02 22:11:16 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
get_updates_event.set()
|
2018-03-02 22:11:16 +01:00
|
|
|
raise error
|
2016-08-06 14:47:45 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(updater.bot, "get_updates", get_updates)
|
2020-02-06 11:22:56 +01:00
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", lambda *args, **kwargs: True)
|
2018-03-02 22:11:16 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
with pytest.raises(TypeError, match="`error_callback` must not be a coroutine function"):
|
|
|
|
await updater.start_polling(error_callback=get_updates)
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
self.err_handler_called = asyncio.Event()
|
|
|
|
|
|
|
|
with caplog.at_level(logging.ERROR):
|
|
|
|
if custom_error_callback:
|
|
|
|
await updater.start_polling(error_callback=self.error_callback)
|
|
|
|
else:
|
|
|
|
await updater.start_polling()
|
|
|
|
|
|
|
|
# Also makes sure that the error handler was called
|
|
|
|
await get_updates_event.wait()
|
|
|
|
|
|
|
|
if callback_should_be_called:
|
|
|
|
# Make sure that the error handler was called
|
|
|
|
if custom_error_callback:
|
|
|
|
assert self.received == error
|
|
|
|
else:
|
|
|
|
assert len(caplog.records) > 0
|
2023-04-10 17:01:35 +02:00
|
|
|
assert any(
|
|
|
|
"Error while getting Updates: TestMessage" in record.getMessage()
|
|
|
|
and record.name == "telegram.ext.Updater"
|
|
|
|
for record in caplog.records
|
|
|
|
)
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
# Make sure that get_updates was called
|
|
|
|
assert get_updates_event.is_set()
|
|
|
|
|
|
|
|
# Make sure that Updater polling keeps running
|
|
|
|
self.err_handler_called.clear()
|
|
|
|
get_updates_event.clear()
|
|
|
|
caplog.clear()
|
|
|
|
|
|
|
|
# Also makes sure that the error handler was called
|
|
|
|
await get_updates_event.wait()
|
|
|
|
|
|
|
|
if callback_should_be_called:
|
2023-03-25 19:18:04 +01:00
|
|
|
if custom_error_callback:
|
|
|
|
assert self.received == error
|
|
|
|
else:
|
|
|
|
assert len(caplog.records) > 0
|
2023-04-10 17:01:35 +02:00
|
|
|
assert any(
|
|
|
|
"Error while getting Updates: TestMessage" in record.getMessage()
|
|
|
|
and record.name == "telegram.ext.Updater"
|
|
|
|
for record in caplog.records
|
|
|
|
)
|
2022-04-24 12:38:09 +02:00
|
|
|
await updater.stop()
|
|
|
|
|
|
|
|
async def test_start_polling_unexpected_shutdown(self, updater, monkeypatch, caplog):
|
|
|
|
update_queue = asyncio.Queue()
|
|
|
|
await update_queue.put(Update(update_id=1))
|
|
|
|
await update_queue.put(Update(update_id=2))
|
|
|
|
first_update_event = asyncio.Event()
|
|
|
|
second_update_event = asyncio.Event()
|
|
|
|
|
|
|
|
async def get_updates(*args, **kwargs):
|
|
|
|
self.message_count = kwargs.get("offset")
|
|
|
|
update = await update_queue.get()
|
|
|
|
if update.update_id == 1:
|
|
|
|
first_update_event.set()
|
|
|
|
else:
|
|
|
|
await second_update_event.wait()
|
|
|
|
return [update]
|
|
|
|
|
|
|
|
monkeypatch.setattr(updater.bot, "get_updates", get_updates)
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
with caplog.at_level(logging.ERROR):
|
|
|
|
await updater.start_polling()
|
|
|
|
|
|
|
|
await first_update_event.wait()
|
|
|
|
# Unfortunately we need to use the private attribute here to produce the problem
|
|
|
|
updater._running = False
|
|
|
|
second_update_event.set()
|
|
|
|
|
|
|
|
await asyncio.sleep(0.1)
|
|
|
|
assert caplog.records
|
2023-04-10 17:01:35 +02:00
|
|
|
assert any(
|
|
|
|
"Updater stopped unexpectedly." in record.getMessage()
|
|
|
|
and record.name == "telegram.ext.Updater"
|
|
|
|
for record in caplog.records
|
|
|
|
)
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
# Make sure that the update_id offset wasn't increased
|
|
|
|
assert self.message_count == 2
|
|
|
|
|
|
|
|
async def test_start_polling_not_running_after_failure(self, updater, monkeypatch):
|
|
|
|
# Unfortunately we have to use some internal logic to trigger an exception
|
|
|
|
async def _start_polling(*args, **kwargs):
|
|
|
|
raise Exception("Test Exception")
|
|
|
|
|
|
|
|
monkeypatch.setattr(Updater, "_start_polling", _start_polling)
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
with pytest.raises(Exception, match="Test Exception"):
|
|
|
|
await updater.start_polling()
|
|
|
|
assert updater.running is False
|
|
|
|
|
|
|
|
async def test_polling_update_de_json_fails(self, monkeypatch, updater, caplog):
|
|
|
|
updates = asyncio.Queue()
|
|
|
|
raise_exception = True
|
|
|
|
await updates.put(Update(update_id=1))
|
|
|
|
|
|
|
|
async def get_updates(*args, **kwargs):
|
|
|
|
if raise_exception:
|
|
|
|
await asyncio.sleep(0.01)
|
|
|
|
raise TypeError("Invalid Data")
|
|
|
|
|
|
|
|
next_update = await updates.get()
|
|
|
|
updates.task_done()
|
|
|
|
return [next_update]
|
|
|
|
|
|
|
|
orig_del_webhook = updater.bot.delete_webhook
|
|
|
|
|
|
|
|
async def delete_webhook(*args, **kwargs):
|
|
|
|
# Dropping pending updates is done by passing the parameter to delete_webhook
|
|
|
|
if kwargs.get("drop_pending_updates"):
|
|
|
|
self.message_count += 1
|
|
|
|
return await orig_del_webhook(*args, **kwargs)
|
|
|
|
|
|
|
|
monkeypatch.setattr(updater.bot, "get_updates", get_updates)
|
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", delete_webhook)
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
with caplog.at_level(logging.CRITICAL):
|
|
|
|
await updater.start_polling()
|
|
|
|
assert updater.running
|
|
|
|
await asyncio.sleep(1)
|
|
|
|
|
|
|
|
assert len(caplog.records) > 0
|
|
|
|
for record in caplog.records:
|
|
|
|
assert record.getMessage().startswith("Something went wrong processing")
|
2023-04-10 17:01:35 +02:00
|
|
|
assert record.name == "telegram.ext.Updater"
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
# Make sure that everything works fine again when receiving proper updates
|
|
|
|
raise_exception = False
|
|
|
|
await asyncio.sleep(0.5)
|
|
|
|
caplog.clear()
|
|
|
|
with caplog.at_level(logging.CRITICAL):
|
|
|
|
await updates.join()
|
|
|
|
assert len(caplog.records) == 0
|
2018-03-02 22:11:16 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await updater.stop()
|
|
|
|
assert not updater.running
|
2016-08-06 14:47:45 +02:00
|
|
|
|
2021-06-06 11:48:48 +02:00
|
|
|
@pytest.mark.parametrize("ext_bot", [True, False])
|
2023-03-25 19:18:04 +01:00
|
|
|
@pytest.mark.parametrize("drop_pending_updates", [True, False])
|
2022-06-27 18:54:11 +02:00
|
|
|
@pytest.mark.parametrize("secret_token", ["SecretToken", None])
|
|
|
|
async def test_webhook_basic(
|
|
|
|
self, monkeypatch, updater, drop_pending_updates, ext_bot, secret_token
|
|
|
|
):
|
2021-06-06 11:48:48 +02:00
|
|
|
# Testing with both ExtBot and Bot to make sure any logic in WebhookHandler
|
|
|
|
# that depends on this distinction works
|
|
|
|
if ext_bot and not isinstance(updater.bot, ExtBot):
|
|
|
|
updater.bot = ExtBot(updater.bot.token)
|
2023-02-11 10:45:17 +01:00
|
|
|
if not ext_bot and type(updater.bot) is not Bot:
|
2023-02-22 20:19:46 +01:00
|
|
|
updater.bot = PytestBot(updater.bot.token)
|
2021-06-06 11:48:48 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def delete_webhook(*args, **kwargs):
|
|
|
|
# Dropping pending updates is done by passing the parameter to delete_webhook
|
|
|
|
if kwargs.get("drop_pending_updates"):
|
|
|
|
self.message_count += 1
|
|
|
|
return True
|
|
|
|
|
|
|
|
async def set_webhook(*args, **kwargs):
|
|
|
|
return True
|
|
|
|
|
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", set_webhook)
|
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", delete_webhook)
|
2015-11-21 23:22:41 +01:00
|
|
|
|
2016-02-19 16:37:38 +01:00
|
|
|
ip = "127.0.0.1"
|
2020-02-23 22:04:56 +01:00
|
|
|
port = randrange(1024, 49152) # Select random port
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
async with updater:
|
|
|
|
return_value = await updater.start_webhook(
|
|
|
|
drop_pending_updates=drop_pending_updates,
|
|
|
|
ip_address=ip,
|
|
|
|
port=port,
|
|
|
|
url_path="TOKEN",
|
2022-06-27 18:54:11 +02:00
|
|
|
secret_token=secret_token,
|
2018-02-19 11:41:38 +01:00
|
|
|
)
|
2022-04-24 12:38:09 +02:00
|
|
|
assert return_value is updater.update_queue
|
|
|
|
assert updater.running
|
|
|
|
|
|
|
|
# Now, we send an update to the server
|
|
|
|
update = make_message_update("Webhook")
|
2022-06-27 18:54:11 +02:00
|
|
|
await send_webhook_message(
|
|
|
|
ip, port, update.to_json(), "TOKEN", secret_token=secret_token
|
|
|
|
)
|
2022-04-24 12:38:09 +02:00
|
|
|
assert (await updater.update_queue.get()).to_dict() == update.to_dict()
|
|
|
|
|
|
|
|
# Returns Not Found if path is incorrect
|
|
|
|
response = await send_webhook_message(ip, port, "123456", "webhook_handler.py")
|
|
|
|
assert response.status_code == HTTPStatus.NOT_FOUND
|
|
|
|
|
|
|
|
# Returns METHOD_NOT_ALLOWED if method is not allowed
|
|
|
|
response = await send_webhook_message(ip, port, None, "TOKEN", get_method="HEAD")
|
|
|
|
assert response.status_code == HTTPStatus.METHOD_NOT_ALLOWED
|
|
|
|
|
2022-06-27 18:54:11 +02:00
|
|
|
if secret_token:
|
|
|
|
# Returns Forbidden if no secret token is set
|
|
|
|
response_text = "<html><title>403: {0}</title><body>403: {0}</body></html>"
|
|
|
|
response = await send_webhook_message(ip, port, update.to_json(), "TOKEN")
|
|
|
|
assert response.status_code == HTTPStatus.FORBIDDEN
|
|
|
|
assert response.text == response_text.format(
|
|
|
|
"Request did not include the secret token"
|
|
|
|
)
|
|
|
|
|
|
|
|
# Returns Forbidden if the secret token is wrong
|
|
|
|
response = await send_webhook_message(
|
|
|
|
ip, port, update.to_json(), "TOKEN", secret_token="NotTheSecretToken"
|
|
|
|
)
|
|
|
|
assert response.status_code == HTTPStatus.FORBIDDEN
|
|
|
|
assert response.text == response_text.format("Request had the wrong secret token")
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await updater.stop()
|
|
|
|
assert not updater.running
|
|
|
|
|
|
|
|
if drop_pending_updates:
|
|
|
|
assert self.message_count == 1
|
|
|
|
else:
|
|
|
|
assert self.message_count == 0
|
|
|
|
|
|
|
|
# We call the same logic twice to make sure that restarting the updater works as well
|
|
|
|
await updater.start_webhook(
|
|
|
|
drop_pending_updates=drop_pending_updates,
|
|
|
|
ip_address=ip,
|
|
|
|
port=port,
|
|
|
|
url_path="TOKEN",
|
|
|
|
)
|
|
|
|
assert updater.running
|
|
|
|
update = make_message_update("Webhook")
|
|
|
|
await send_webhook_message(ip, port, update.to_json(), "TOKEN")
|
|
|
|
assert (await updater.update_queue.get()).to_dict() == update.to_dict()
|
|
|
|
await updater.stop()
|
|
|
|
assert not updater.running
|
|
|
|
|
|
|
|
async def test_start_webhook_already_running(self, updater, monkeypatch):
|
|
|
|
async def return_true(*args, **kwargs):
|
|
|
|
return True
|
2015-11-24 19:35:02 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", return_true)
|
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", return_true)
|
|
|
|
|
|
|
|
ip = "127.0.0.1"
|
|
|
|
port = randrange(1024, 49152) # Select random port
|
|
|
|
async with updater:
|
|
|
|
await updater.start_webhook(ip, port, url_path="TOKEN")
|
|
|
|
task = asyncio.create_task(updater.start_webhook(ip, port, url_path="TOKEN"))
|
|
|
|
with pytest.raises(RuntimeError, match="already running"):
|
|
|
|
await task
|
|
|
|
await updater.stop()
|
|
|
|
with pytest.raises(RuntimeError, match="not running"):
|
|
|
|
await updater.stop()
|
|
|
|
|
|
|
|
async def test_start_webhook_parameters_passing(self, updater, monkeypatch):
|
2023-03-25 19:18:04 +01:00
|
|
|
expected_delete_webhook = {
|
|
|
|
"drop_pending_updates": None,
|
|
|
|
}
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
expected_set_webhook = dict(
|
|
|
|
certificate=None,
|
|
|
|
max_connections=40,
|
|
|
|
allowed_updates=None,
|
|
|
|
ip_address=None,
|
2022-06-27 18:54:11 +02:00
|
|
|
secret_token=None,
|
2022-04-24 12:38:09 +02:00
|
|
|
**expected_delete_webhook,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def set_webhook(*args, **kwargs):
|
|
|
|
for key, value in expected_set_webhook.items():
|
|
|
|
assert kwargs.pop(key, None) == value, f"set, {key}, {value}"
|
2018-09-08 22:25:48 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
assert kwargs in (
|
|
|
|
{"url": "http://127.0.0.1:80/"},
|
|
|
|
{"url": "http://listen:80/"},
|
|
|
|
{"url": "https://listen-ssl:42/ssl-path"},
|
|
|
|
)
|
|
|
|
return True
|
|
|
|
|
|
|
|
async def delete_webhook(*args, **kwargs):
|
|
|
|
for key, value in expected_delete_webhook.items():
|
|
|
|
assert kwargs.pop(key, None) == value, f"delete, {key}, {value}"
|
|
|
|
|
|
|
|
assert kwargs == {}
|
|
|
|
return True
|
|
|
|
|
|
|
|
async def serve_forever(*args, **kwargs):
|
|
|
|
kwargs.get("ready").set()
|
|
|
|
|
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", set_webhook)
|
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", delete_webhook)
|
|
|
|
monkeypatch.setattr(WebhookServer, "serve_forever", serve_forever)
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
await updater.start_webhook()
|
|
|
|
await updater.stop()
|
2023-03-25 19:18:04 +01:00
|
|
|
expected_delete_webhook = {
|
|
|
|
"drop_pending_updates": True,
|
|
|
|
"api_kwargs": None,
|
|
|
|
}
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
expected_set_webhook = dict(
|
|
|
|
certificate=data_file("sslcert.pem").read_bytes(),
|
|
|
|
max_connections=47,
|
|
|
|
allowed_updates=["message"],
|
|
|
|
ip_address="123.456.789",
|
2022-06-27 18:54:11 +02:00
|
|
|
secret_token=None,
|
2022-04-24 12:38:09 +02:00
|
|
|
**expected_delete_webhook,
|
|
|
|
)
|
|
|
|
|
|
|
|
await updater.start_webhook(
|
|
|
|
listen="listen",
|
|
|
|
allowed_updates=["message"],
|
|
|
|
drop_pending_updates=True,
|
|
|
|
ip_address="123.456.789",
|
|
|
|
max_connections=47,
|
|
|
|
cert=str(data_file("sslcert.pem").resolve()),
|
|
|
|
)
|
|
|
|
await updater.stop()
|
|
|
|
|
|
|
|
await updater.start_webhook(
|
|
|
|
listen="listen-ssl",
|
|
|
|
port=42,
|
|
|
|
url_path="ssl-path",
|
|
|
|
allowed_updates=["message"],
|
|
|
|
drop_pending_updates=True,
|
|
|
|
ip_address="123.456.789",
|
|
|
|
max_connections=47,
|
|
|
|
cert=data_file("sslcert.pem"),
|
|
|
|
key=data_file("sslcert.key"),
|
|
|
|
)
|
|
|
|
await updater.stop()
|
|
|
|
|
|
|
|
@pytest.mark.parametrize("invalid_data", [True, False], ids=("invalid data", "valid data"))
|
|
|
|
async def test_webhook_arbitrary_callback_data(
|
2022-10-07 10:18:08 +02:00
|
|
|
self, monkeypatch, cdc_bot, invalid_data, chat_id
|
2022-04-24 12:38:09 +02:00
|
|
|
):
|
2021-06-06 11:48:48 +02:00
|
|
|
"""Here we only test one simple setup. telegram.ext.ExtBot.insert_callback_data is tested
|
|
|
|
extensively in test_bot.py in conjunction with get_updates."""
|
2022-10-07 10:18:08 +02:00
|
|
|
updater = Updater(bot=cdc_bot, update_queue=asyncio.Queue())
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
async def return_true(*args, **kwargs):
|
|
|
|
return True
|
|
|
|
|
2021-06-06 11:48:48 +02:00
|
|
|
try:
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", return_true)
|
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", return_true)
|
2021-06-06 11:48:48 +02:00
|
|
|
|
|
|
|
ip = "127.0.0.1"
|
|
|
|
port = randrange(1024, 49152) # Select random port
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
async with updater:
|
|
|
|
await updater.start_webhook(ip, port, url_path="TOKEN")
|
|
|
|
# Now, we send an update to the server
|
2021-06-06 11:48:48 +02:00
|
|
|
reply_markup = InlineKeyboardMarkup.from_button(
|
|
|
|
InlineKeyboardButton(text="text", callback_data="callback_data")
|
|
|
|
)
|
|
|
|
if not invalid_data:
|
|
|
|
reply_markup = updater.bot.callback_data_cache.process_keyboard(reply_markup)
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
update = make_message_update(
|
|
|
|
message="test_webhook_arbitrary_callback_data",
|
|
|
|
message_factory=make_message,
|
2021-06-06 11:48:48 +02:00
|
|
|
reply_markup=reply_markup,
|
2022-04-24 12:38:09 +02:00
|
|
|
user=updater.bot.bot,
|
2021-06-06 11:48:48 +02:00
|
|
|
)
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
await send_webhook_message(ip, port, update.to_json(), "TOKEN")
|
|
|
|
received_update = await updater.update_queue.get()
|
|
|
|
|
|
|
|
assert received_update.update_id == update.update_id
|
|
|
|
message_dict = update.message.to_dict()
|
|
|
|
received_dict = received_update.message.to_dict()
|
|
|
|
message_dict.pop("reply_markup")
|
|
|
|
received_dict.pop("reply_markup")
|
|
|
|
assert message_dict == received_dict
|
2021-06-06 11:48:48 +02:00
|
|
|
|
|
|
|
button = received_update.message.reply_markup.inline_keyboard[0][0]
|
|
|
|
if invalid_data:
|
|
|
|
assert isinstance(button.callback_data, InvalidCallbackData)
|
|
|
|
else:
|
|
|
|
assert button.callback_data == "callback_data"
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
await updater.stop()
|
2021-06-06 11:48:48 +02:00
|
|
|
finally:
|
|
|
|
updater.bot.callback_data_cache.clear_callback_data()
|
|
|
|
updater.bot.callback_data_cache.clear_callback_queries()
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_webhook_invalid_ssl(self, monkeypatch, updater):
|
|
|
|
async def return_true(*args, **kwargs):
|
|
|
|
return True
|
2015-11-24 19:35:02 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", return_true)
|
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", return_true)
|
2015-11-30 23:00:56 +01:00
|
|
|
|
2016-02-19 16:37:38 +01:00
|
|
|
ip = "127.0.0.1"
|
2020-02-23 22:04:56 +01:00
|
|
|
port = randrange(1024, 49152) # Select random port
|
2022-04-24 12:38:09 +02:00
|
|
|
async with updater:
|
|
|
|
with pytest.raises(TelegramError, match="Invalid SSL"):
|
|
|
|
await updater.start_webhook(
|
|
|
|
ip,
|
|
|
|
port,
|
|
|
|
url_path="TOKEN",
|
|
|
|
cert=Path(__file__).as_posix(),
|
|
|
|
key=Path(__file__).as_posix(),
|
|
|
|
bootstrap_retries=0,
|
|
|
|
drop_pending_updates=False,
|
|
|
|
webhook_url=None,
|
|
|
|
allowed_updates=None,
|
|
|
|
)
|
|
|
|
assert updater.running is False
|
2017-08-11 23:58:41 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_webhook_ssl_just_for_telegram(self, monkeypatch, updater):
|
|
|
|
"""Here we just test that the SSL info is pased to Telegram, but __not__ to the the
|
|
|
|
webhook server"""
|
2021-03-13 15:35:26 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def set_webhook(**kwargs):
|
2021-03-13 15:35:26 +01:00
|
|
|
self.test_flag.append(bool(kwargs.get("certificate")))
|
|
|
|
return True
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def return_true(*args, **kwargs):
|
|
|
|
return True
|
|
|
|
|
2021-03-13 15:35:26 +01:00
|
|
|
orig_wh_server_init = WebhookServer.__init__
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def webhook_server_init(*args, **kwargs):
|
|
|
|
self.test_flag = [kwargs.get("ssl_ctx") is None]
|
|
|
|
orig_wh_server_init(*args, **kwargs)
|
2021-03-13 15:35:26 +01:00
|
|
|
|
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", set_webhook)
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", return_true)
|
2021-03-13 15:35:26 +01:00
|
|
|
monkeypatch.setattr(
|
2021-10-10 15:10:21 +02:00
|
|
|
"telegram.ext._utils.webhookhandler.WebhookServer.__init__", webhook_server_init
|
2021-03-13 15:35:26 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
ip = "127.0.0.1"
|
|
|
|
port = randrange(1024, 49152) # Select random port
|
2022-04-24 12:38:09 +02:00
|
|
|
async with updater:
|
|
|
|
await updater.start_webhook(ip, port, webhook_url=None, cert=Path(__file__).as_posix())
|
|
|
|
|
|
|
|
# Now, we send an update to the server
|
|
|
|
update = make_message_update(message="test_message")
|
|
|
|
await send_webhook_message(ip, port, update.to_json())
|
|
|
|
assert (await updater.update_queue.get()).to_dict() == update.to_dict()
|
|
|
|
assert self.test_flag == [True, True]
|
|
|
|
await updater.stop()
|
|
|
|
|
2023-03-25 19:18:04 +01:00
|
|
|
@pytest.mark.parametrize("exception_class", [InvalidToken, TelegramError])
|
|
|
|
@pytest.mark.parametrize("retries", [3, 0])
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_start_webhook_bootstrap_retries(
|
|
|
|
self, updater, monkeypatch, exception_class, retries
|
|
|
|
):
|
|
|
|
async def do_request(*args, **kwargs):
|
|
|
|
self.message_count += 1
|
|
|
|
raise exception_class(str(self.message_count))
|
|
|
|
|
|
|
|
async with updater:
|
|
|
|
# Patch within the context so that updater.bot.initialize can still be called
|
|
|
|
# by the context manager
|
|
|
|
monkeypatch.setattr(HTTPXRequest, "do_request", do_request)
|
|
|
|
|
|
|
|
if exception_class == InvalidToken:
|
|
|
|
with pytest.raises(InvalidToken, match="1"):
|
|
|
|
await updater.start_webhook(bootstrap_retries=retries)
|
|
|
|
else:
|
|
|
|
with pytest.raises(TelegramError, match=str(retries + 1)):
|
|
|
|
await updater.start_webhook(
|
|
|
|
bootstrap_retries=retries,
|
|
|
|
)
|
|
|
|
|
|
|
|
async def test_webhook_invalid_posts(self, updater, monkeypatch):
|
|
|
|
async def return_true(*args, **kwargs):
|
2021-06-06 09:27:45 +02:00
|
|
|
return True
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", return_true)
|
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", return_true)
|
2021-06-06 09:27:45 +02:00
|
|
|
|
|
|
|
ip = "127.0.0.1"
|
2022-04-24 12:38:09 +02:00
|
|
|
port = randrange(1024, 49152)
|
2017-08-11 23:58:41 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async with updater:
|
|
|
|
await updater.start_webhook(listen=ip, port=port)
|
2017-08-11 23:58:41 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
response = await send_webhook_message(ip, port, None, content_type="invalid")
|
|
|
|
assert response.status_code == HTTPStatus.FORBIDDEN
|
2016-03-14 00:36:01 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
response = await send_webhook_message(
|
|
|
|
ip,
|
|
|
|
port,
|
|
|
|
payload_str="<root><bla>data</bla></root>",
|
|
|
|
content_type="application/xml",
|
|
|
|
)
|
|
|
|
assert response.status_code == HTTPStatus.FORBIDDEN
|
|
|
|
|
|
|
|
response = await send_webhook_message(ip, port, "dummy-payload", content_len=None)
|
|
|
|
assert response.status_code == HTTPStatus.INTERNAL_SERVER_ERROR
|
|
|
|
|
|
|
|
# httpx already complains about bad content length in _send_webhook_message
|
|
|
|
# before the requests below reach the webhook, but not testing this is probably
|
|
|
|
# okay
|
|
|
|
# response = await send_webhook_message(
|
|
|
|
# ip, port, 'dummy-payload', content_len=-2)
|
|
|
|
# assert response.status_code == HTTPStatus.FORBIDDEN
|
|
|
|
# response = await send_webhook_message(
|
|
|
|
# ip, port, 'dummy-payload', content_len='not-a-number')
|
|
|
|
# assert response.status_code == HTTPStatus.INTERNAL_SERVER_ERROR
|
|
|
|
|
|
|
|
await updater.stop()
|
|
|
|
|
|
|
|
async def test_webhook_update_de_json_fails(self, monkeypatch, updater, caplog):
|
|
|
|
async def delete_webhook(*args, **kwargs):
|
|
|
|
return True
|
2016-02-19 16:37:38 +01:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def set_webhook(*args, **kwargs):
|
|
|
|
return True
|
2020-06-24 00:25:58 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
def de_json_fails(*args, **kwargs):
|
|
|
|
raise TypeError("Invalid input")
|
2020-06-24 00:25:58 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(updater.bot, "set_webhook", set_webhook)
|
2021-03-13 15:35:26 +01:00
|
|
|
monkeypatch.setattr(updater.bot, "delete_webhook", delete_webhook)
|
2022-04-24 12:38:09 +02:00
|
|
|
orig_de_json = Update.de_json
|
|
|
|
monkeypatch.setattr(Update, "de_json", de_json_fails)
|
2020-06-24 00:25:58 +02:00
|
|
|
|
2016-02-19 16:37:38 +01:00
|
|
|
ip = "127.0.0.1"
|
2022-04-24 12:38:09 +02:00
|
|
|
port = randrange(1024, 49152) # Select random port
|
2017-03-26 14:36:13 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async with updater:
|
|
|
|
return_value = await updater.start_webhook(
|
|
|
|
ip_address=ip,
|
|
|
|
port=port,
|
|
|
|
url_path="TOKEN",
|
|
|
|
)
|
|
|
|
assert return_value is updater.update_queue
|
|
|
|
assert updater.running
|
|
|
|
|
|
|
|
# Now, we send an update to the server
|
|
|
|
update = make_message_update("Webhook")
|
|
|
|
with caplog.at_level(logging.CRITICAL):
|
|
|
|
await send_webhook_message(ip, port, update.to_json(), "TOKEN")
|
|
|
|
|
|
|
|
assert len(caplog.records) == 1
|
|
|
|
assert caplog.records[-1].getMessage().startswith("Something went wrong processing")
|
2023-04-10 17:01:35 +02:00
|
|
|
assert caplog.records[-1].name == "telegram.ext.Updater"
|
2022-04-24 12:38:09 +02:00
|
|
|
|
|
|
|
# Make sure that everything works fine again when receiving proper updates
|
|
|
|
caplog.clear()
|
|
|
|
with caplog.at_level(logging.CRITICAL):
|
|
|
|
monkeypatch.setattr(Update, "de_json", orig_de_json)
|
|
|
|
await send_webhook_message(ip, port, update.to_json(), "TOKEN")
|
|
|
|
assert (await updater.update_queue.get()).to_dict() == update.to_dict()
|
|
|
|
assert len(caplog.records) == 0
|
|
|
|
|
|
|
|
await updater.stop()
|
|
|
|
assert not updater.running
|