2016-04-24 16:30:39 +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
|
2016-04-24 16:30:39 +02:00
|
|
|
# Leandro Toledo de Souza <devs@python-telegram-bot.org>
|
|
|
|
#
|
|
|
|
# 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
|
2016-04-24 16:30:39 +02: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.
|
2016-04-24 16:30:39 +02:00
|
|
|
#
|
2017-08-11 23:58:41 +02:00
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
2016-04-24 16:30:39 +02:00
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
import pytest
|
2018-09-07 16:05:45 +02:00
|
|
|
from flaky import flaky
|
2016-04-24 16:30:39 +02:00
|
|
|
|
2022-01-19 18:00:21 +01:00
|
|
|
from telegram import (
|
2022-05-05 09:27:54 +02:00
|
|
|
ForceReply,
|
2022-01-19 18:00:21 +01:00
|
|
|
InlineKeyboardButton,
|
|
|
|
InlineKeyboardMarkup,
|
|
|
|
ReplyKeyboardMarkup,
|
|
|
|
ReplyKeyboardRemove,
|
|
|
|
)
|
2016-04-24 16:30:39 +02:00
|
|
|
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
@pytest.fixture(scope='class')
|
|
|
|
def inline_keyboard_markup():
|
|
|
|
return InlineKeyboardMarkup(TestInlineKeyboardMarkup.inline_keyboard)
|
2016-04-24 16:30:39 +02:00
|
|
|
|
|
|
|
|
2020-06-15 18:20:51 +02:00
|
|
|
class TestInlineKeyboardMarkup:
|
2020-10-09 17:22:07 +02:00
|
|
|
inline_keyboard = [
|
|
|
|
[
|
|
|
|
InlineKeyboardButton(text='button1', callback_data='data1'),
|
|
|
|
InlineKeyboardButton(text='button2', callback_data='data2'),
|
|
|
|
]
|
|
|
|
]
|
2016-04-24 16:30:39 +02:00
|
|
|
|
2021-08-19 22:01:10 +02:00
|
|
|
def test_slot_behaviour(self, inline_keyboard_markup, mro_slots):
|
2021-05-29 16:18:16 +02:00
|
|
|
inst = inline_keyboard_markup
|
|
|
|
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"
|
|
|
|
|
2018-09-07 16:05:45 +02:00
|
|
|
@flaky(3, 1)
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_send_message_with_inline_keyboard_markup(
|
|
|
|
self, bot, chat_id, inline_keyboard_markup
|
|
|
|
):
|
|
|
|
message = await bot.send_message(
|
2020-10-09 17:22:07 +02:00
|
|
|
chat_id, 'Testing InlineKeyboardMarkup', reply_markup=inline_keyboard_markup
|
|
|
|
)
|
2016-04-27 03:48:02 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert message.text == 'Testing InlineKeyboardMarkup'
|
2016-04-24 16:30:39 +02:00
|
|
|
|
2019-01-04 21:04:45 +01:00
|
|
|
def test_from_button(self):
|
|
|
|
inline_keyboard_markup = InlineKeyboardMarkup.from_button(
|
2020-10-09 17:22:07 +02:00
|
|
|
InlineKeyboardButton(text='button1', callback_data='data1')
|
|
|
|
).inline_keyboard
|
2019-01-04 21:04:45 +01:00
|
|
|
assert len(inline_keyboard_markup) == 1
|
|
|
|
assert len(inline_keyboard_markup[0]) == 1
|
|
|
|
|
|
|
|
def test_from_row(self):
|
2020-10-09 17:22:07 +02:00
|
|
|
inline_keyboard_markup = InlineKeyboardMarkup.from_row(
|
|
|
|
[
|
|
|
|
InlineKeyboardButton(text='button1', callback_data='data1'),
|
|
|
|
InlineKeyboardButton(text='button1', callback_data='data1'),
|
|
|
|
]
|
|
|
|
).inline_keyboard
|
2019-01-04 21:04:45 +01:00
|
|
|
assert len(inline_keyboard_markup) == 1
|
|
|
|
assert len(inline_keyboard_markup[0]) == 2
|
|
|
|
|
|
|
|
def test_from_column(self):
|
2020-10-09 17:22:07 +02:00
|
|
|
inline_keyboard_markup = InlineKeyboardMarkup.from_column(
|
|
|
|
[
|
|
|
|
InlineKeyboardButton(text='button1', callback_data='data1'),
|
|
|
|
InlineKeyboardButton(text='button1', callback_data='data1'),
|
|
|
|
]
|
|
|
|
).inline_keyboard
|
2019-01-04 21:04:45 +01:00
|
|
|
assert len(inline_keyboard_markup) == 2
|
|
|
|
assert len(inline_keyboard_markup[0]) == 1
|
|
|
|
assert len(inline_keyboard_markup[1]) == 1
|
|
|
|
|
2017-09-01 08:45:22 +02:00
|
|
|
def test_expected_values(self, inline_keyboard_markup):
|
|
|
|
assert inline_keyboard_markup.inline_keyboard == self.inline_keyboard
|
2016-04-24 16:30:39 +02:00
|
|
|
|
2021-09-15 17:04:47 +02:00
|
|
|
def test_wrong_keyboard_inputs(self):
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
InlineKeyboardMarkup(
|
|
|
|
[[InlineKeyboardButton('b1', '1')], InlineKeyboardButton('b2', '2')]
|
|
|
|
)
|
|
|
|
with pytest.raises(ValueError):
|
|
|
|
InlineKeyboardMarkup(InlineKeyboardButton('b1', '1'))
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
async def test_expected_values_empty_switch(self, inline_keyboard_markup, bot, monkeypatch):
|
|
|
|
async def make_assertion(
|
2020-10-09 17:22:07 +02:00
|
|
|
url,
|
|
|
|
data,
|
|
|
|
reply_to_message_id=None,
|
|
|
|
disable_notification=None,
|
|
|
|
reply_markup=None,
|
|
|
|
timeout=None,
|
|
|
|
**kwargs,
|
|
|
|
):
|
2020-03-31 00:03:45 +02:00
|
|
|
if reply_markup is not None:
|
2022-01-19 18:00:21 +01:00
|
|
|
markups = (
|
|
|
|
InlineKeyboardMarkup,
|
|
|
|
ReplyKeyboardMarkup,
|
|
|
|
ForceReply,
|
|
|
|
ReplyKeyboardRemove,
|
|
|
|
)
|
|
|
|
if isinstance(reply_markup, markups):
|
2021-04-30 10:43:52 +02:00
|
|
|
data['reply_markup'] = reply_markup.to_dict()
|
2020-03-31 00:03:45 +02:00
|
|
|
else:
|
|
|
|
data['reply_markup'] = reply_markup
|
|
|
|
|
2021-04-30 10:43:52 +02:00
|
|
|
assert bool("'switch_inline_query': ''" in str(data['reply_markup']))
|
|
|
|
assert bool("'switch_inline_query_current_chat': ''" in str(data['reply_markup']))
|
2020-03-31 00:03:45 +02:00
|
|
|
|
|
|
|
inline_keyboard_markup.inline_keyboard[0][0].callback_data = None
|
|
|
|
inline_keyboard_markup.inline_keyboard[0][0].switch_inline_query = ''
|
|
|
|
inline_keyboard_markup.inline_keyboard[0][1].callback_data = None
|
|
|
|
inline_keyboard_markup.inline_keyboard[0][1].switch_inline_query_current_chat = ''
|
|
|
|
|
2022-04-24 12:38:09 +02:00
|
|
|
monkeypatch.setattr(bot, '_send_message', make_assertion)
|
|
|
|
await bot.send_message(123, 'test', reply_markup=inline_keyboard_markup)
|
2020-03-31 00:03:45 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_to_dict(self, inline_keyboard_markup):
|
|
|
|
inline_keyboard_markup_dict = inline_keyboard_markup.to_dict()
|
2016-04-24 16:30:39 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert isinstance(inline_keyboard_markup_dict, dict)
|
|
|
|
assert inline_keyboard_markup_dict['inline_keyboard'] == [
|
2020-10-09 17:22:07 +02:00
|
|
|
[self.inline_keyboard[0][0].to_dict(), self.inline_keyboard[0][1].to_dict()]
|
2017-08-11 23:58:41 +02:00
|
|
|
]
|
2019-08-23 21:20:41 +02:00
|
|
|
|
|
|
|
def test_de_json(self):
|
|
|
|
json_dict = {
|
2020-10-09 17:22:07 +02:00
|
|
|
'inline_keyboard': [
|
|
|
|
[
|
|
|
|
{'text': 'start', 'url': 'http://google.com'},
|
|
|
|
{'text': 'next', 'callback_data': 'abcd'},
|
|
|
|
],
|
|
|
|
[{'text': 'Cancel', 'callback_data': 'Cancel'}],
|
|
|
|
]
|
|
|
|
}
|
2019-08-23 21:20:41 +02:00
|
|
|
inline_keyboard_markup = InlineKeyboardMarkup.de_json(json_dict, None)
|
|
|
|
|
|
|
|
assert isinstance(inline_keyboard_markup, InlineKeyboardMarkup)
|
|
|
|
keyboard = inline_keyboard_markup.inline_keyboard
|
|
|
|
assert len(keyboard) == 2
|
|
|
|
assert len(keyboard[0]) == 2
|
|
|
|
assert len(keyboard[1]) == 1
|
|
|
|
|
|
|
|
assert isinstance(keyboard[0][0], InlineKeyboardButton)
|
|
|
|
assert isinstance(keyboard[0][1], InlineKeyboardButton)
|
|
|
|
assert isinstance(keyboard[1][0], InlineKeyboardButton)
|
|
|
|
|
|
|
|
assert keyboard[0][0].text == 'start'
|
|
|
|
assert keyboard[0][0].url == 'http://google.com'
|
2020-07-14 21:33:56 +02:00
|
|
|
|
|
|
|
def test_equality(self):
|
2020-10-09 17:22:07 +02:00
|
|
|
a = InlineKeyboardMarkup.from_column(
|
|
|
|
[
|
|
|
|
InlineKeyboardButton(label, callback_data='data')
|
|
|
|
for label in ['button1', 'button2', 'button3']
|
|
|
|
]
|
|
|
|
)
|
|
|
|
b = InlineKeyboardMarkup.from_column(
|
|
|
|
[
|
|
|
|
InlineKeyboardButton(label, callback_data='data')
|
|
|
|
for label in ['button1', 'button2', 'button3']
|
|
|
|
]
|
|
|
|
)
|
|
|
|
c = InlineKeyboardMarkup.from_column(
|
|
|
|
[InlineKeyboardButton(label, callback_data='data') for label in ['button1', 'button2']]
|
|
|
|
)
|
|
|
|
d = InlineKeyboardMarkup.from_column(
|
|
|
|
[
|
|
|
|
InlineKeyboardButton(label, callback_data=label)
|
|
|
|
for label in ['button1', 'button2', 'button3']
|
|
|
|
]
|
|
|
|
)
|
|
|
|
e = InlineKeyboardMarkup.from_column(
|
|
|
|
[InlineKeyboardButton(label, url=label) for label in ['button1', 'button2', 'button3']]
|
|
|
|
)
|
|
|
|
f = InlineKeyboardMarkup(
|
|
|
|
[
|
|
|
|
[
|
|
|
|
InlineKeyboardButton(label, callback_data='data')
|
|
|
|
for label in ['button1', 'button2']
|
|
|
|
],
|
|
|
|
[
|
|
|
|
InlineKeyboardButton(label, callback_data='data')
|
|
|
|
for label in ['button1', 'button2']
|
|
|
|
],
|
|
|
|
[
|
|
|
|
InlineKeyboardButton(label, callback_data='data')
|
|
|
|
for label in ['button1', 'button2']
|
|
|
|
],
|
|
|
|
]
|
|
|
|
)
|
2020-07-14 21:33:56 +02:00
|
|
|
g = ReplyKeyboardMarkup.from_column(['button1', 'button2', 'button3'])
|
|
|
|
|
|
|
|
assert a == b
|
|
|
|
assert hash(a) == hash(b)
|
|
|
|
|
|
|
|
assert a != c
|
|
|
|
assert hash(a) != hash(c)
|
|
|
|
|
|
|
|
assert a != d
|
|
|
|
assert hash(a) != hash(d)
|
|
|
|
|
|
|
|
assert a != e
|
|
|
|
assert hash(a) != hash(e)
|
|
|
|
|
|
|
|
assert a != f
|
|
|
|
assert hash(a) != hash(f)
|
|
|
|
|
|
|
|
assert a != g
|
|
|
|
assert hash(a) != hash(g)
|