2017-08-11 23:58:41 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2022-01-03 08:15:18 +01:00
|
|
|
# Copyright (C) 2015-2022
|
2017-08-11 23:58:41 +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/].
|
2022-04-24 12:38:09 +02:00
|
|
|
import asyncio
|
2022-05-05 09:27:54 +02:00
|
|
|
from collections import OrderedDict
|
2017-08-11 23:58:41 +02:00
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from telegram import Bot
|
2022-05-05 09:27:54 +02:00
|
|
|
from telegram.ext import CallbackContext, JobQueue, TypeHandler
|
2017-08-11 23:58:41 +02:00
|
|
|
|
|
|
|
|
2020-06-15 18:20:51 +02:00
|
|
|
class TestTypeHandler:
|
2017-08-11 23:58:41 +02:00
|
|
|
test_flag = False
|
|
|
|
|
2021-08-19 22:01:10 +02:00
|
|
|
def test_slot_behaviour(self, mro_slots):
|
2022-04-24 12:38:09 +02:00
|
|
|
inst = TypeHandler(dict, self.callback)
|
2021-05-29 16:18:16 +02:00
|
|
|
for attr in inst.__slots__:
|
|
|
|
assert getattr(inst, attr, "err") != "err", f"got extra slot '{attr}'"
|
|
|
|
assert len(mro_slots(inst)) == len(set(mro_slots(inst))), "duplicate slot"
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.fixture(autouse=True)
|
|
|
|
def reset(self):
|
|
|
|
self.test_flag = False
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def callback(self, update, context):
|
2019-02-08 20:55:40 +01:00
|
|
|
self.test_flag = (
|
|
|
|
isinstance(context, CallbackContext)
|
|
|
|
and isinstance(context.bot, Bot)
|
|
|
|
and isinstance(update, dict)
|
2022-04-24 12:38:09 +02:00
|
|
|
and isinstance(context.update_queue, asyncio.Queue)
|
2019-02-08 20:55:40 +01:00
|
|
|
and isinstance(context.job_queue, JobQueue)
|
|
|
|
and context.user_data is None
|
2020-02-02 22:20:31 +01:00
|
|
|
and context.chat_data is None
|
|
|
|
and isinstance(context.bot_data, dict)
|
2020-10-09 17:22:07 +02:00
|
|
|
)
|
2018-09-21 08:57:01 +02:00
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_basic(self, app):
|
|
|
|
handler = TypeHandler(dict, self.callback)
|
|
|
|
app.add_handler(handler)
|
2017-08-11 23:58:41 +02:00
|
|
|
|
|
|
|
assert handler.check_update({"a": 1, "b": 2})
|
|
|
|
assert not handler.check_update("not a dict")
|
2022-04-24 12:38:09 +02:00
|
|
|
async with app:
|
|
|
|
await app.process_update({"a": 1, "b": 2})
|
2017-08-11 23:58:41 +02:00
|
|
|
assert self.test_flag
|
|
|
|
|
|
|
|
def test_strict(self):
|
2022-04-24 12:38:09 +02:00
|
|
|
handler = TypeHandler(dict, self.callback, strict=True)
|
2017-08-11 23:58:41 +02:00
|
|
|
o = OrderedDict({"a": 1, "b": 2})
|
|
|
|
assert handler.check_update({"a": 1, "b": 2})
|
|
|
|
assert not handler.check_update(o)
|