2016-04-23 15:47:10 +02: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-04-23 15:47:10 +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-23 15:47:10 +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-23 15:47:10 +02:00
|
|
|
#
|
2017-08-11 23:58:41 +02:00
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
2016-04-23 15:47:10 +02:00
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
import pytest
|
|
|
|
|
|
|
|
from telegram import (
|
2022-05-05 09:27:54 +02:00
|
|
|
InlineKeyboardButton,
|
2017-08-11 23:58:41 +02:00
|
|
|
InlineKeyboardMarkup,
|
2024-01-17 21:32:37 +01:00
|
|
|
InlineQueryResult,
|
2017-08-11 23:58:41 +02:00
|
|
|
InlineQueryResultArticle,
|
2022-05-05 09:27:54 +02:00
|
|
|
InlineQueryResultAudio,
|
2017-08-11 23:58:41 +02:00
|
|
|
InputTextMessageContent,
|
|
|
|
)
|
2024-01-17 21:32:37 +01:00
|
|
|
from telegram.constants import InlineQueryResultType
|
2023-02-22 20:19:46 +01:00
|
|
|
from tests.auxil.slots import mro_slots
|
2017-08-11 23:58:41 +02:00
|
|
|
|
|
|
|
|
2023-02-11 10:45:17 +01:00
|
|
|
@pytest.fixture(scope="module")
|
2017-08-11 23:58:41 +02:00
|
|
|
def inline_query_result_article():
|
2018-02-19 11:41:38 +01:00
|
|
|
return InlineQueryResultArticle(
|
2023-02-11 10:45:17 +01:00
|
|
|
TestInlineQueryResultArticleBase.id_,
|
|
|
|
TestInlineQueryResultArticleBase.title,
|
|
|
|
input_message_content=TestInlineQueryResultArticleBase.input_message_content,
|
|
|
|
reply_markup=TestInlineQueryResultArticleBase.reply_markup,
|
|
|
|
url=TestInlineQueryResultArticleBase.url,
|
|
|
|
hide_url=TestInlineQueryResultArticleBase.hide_url,
|
|
|
|
description=TestInlineQueryResultArticleBase.description,
|
2023-03-25 11:47:26 +01:00
|
|
|
thumbnail_url=TestInlineQueryResultArticleBase.thumbnail_url,
|
|
|
|
thumbnail_height=TestInlineQueryResultArticleBase.thumbnail_height,
|
|
|
|
thumbnail_width=TestInlineQueryResultArticleBase.thumbnail_width,
|
2018-02-19 11:41:38 +01:00
|
|
|
)
|
2017-08-11 23:58:41 +02:00
|
|
|
|
|
|
|
|
2023-02-11 10:45:17 +01:00
|
|
|
class TestInlineQueryResultArticleBase:
|
2020-02-23 22:03:58 +01:00
|
|
|
id_ = "id"
|
|
|
|
type_ = "article"
|
2017-08-11 23:58:41 +02:00
|
|
|
title = "title"
|
|
|
|
input_message_content = InputTextMessageContent("input_message_content")
|
|
|
|
reply_markup = InlineKeyboardMarkup([[InlineKeyboardButton("reply_markup")]])
|
|
|
|
url = "url"
|
|
|
|
hide_url = True
|
|
|
|
description = "description"
|
2023-03-25 11:47:26 +01:00
|
|
|
thumbnail_url = "thumb url"
|
|
|
|
thumbnail_height = 10
|
|
|
|
thumbnail_width = 15
|
2017-08-11 23:58:41 +02:00
|
|
|
|
2023-02-11 10:45:17 +01:00
|
|
|
|
|
|
|
class TestInlineQueryResultArticleWithoutRequest(TestInlineQueryResultArticleBase):
|
2023-04-27 22:36:04 +02:00
|
|
|
def test_slot_behaviour(self, inline_query_result_article):
|
2021-05-29 16:18:16 +02:00
|
|
|
inst = inline_query_result_article
|
|
|
|
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
|
|
|
def test_expected_values(self, inline_query_result_article):
|
2020-02-23 22:03:58 +01:00
|
|
|
assert inline_query_result_article.type == self.type_
|
|
|
|
assert inline_query_result_article.id == self.id_
|
2017-08-11 23:58:41 +02:00
|
|
|
assert inline_query_result_article.title == self.title
|
2018-11-01 10:18:07 +01:00
|
|
|
assert (
|
|
|
|
inline_query_result_article.input_message_content.to_dict()
|
|
|
|
== self.input_message_content.to_dict()
|
2020-10-09 17:22:07 +02:00
|
|
|
)
|
2017-08-11 23:58:41 +02:00
|
|
|
assert inline_query_result_article.reply_markup.to_dict() == self.reply_markup.to_dict()
|
|
|
|
assert inline_query_result_article.url == self.url
|
|
|
|
assert inline_query_result_article.hide_url == self.hide_url
|
|
|
|
assert inline_query_result_article.description == self.description
|
2023-03-25 11:47:26 +01:00
|
|
|
assert inline_query_result_article.thumbnail_url == self.thumbnail_url
|
|
|
|
assert inline_query_result_article.thumbnail_height == self.thumbnail_height
|
|
|
|
assert inline_query_result_article.thumbnail_width == self.thumbnail_width
|
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_to_dict(self, inline_query_result_article):
|
|
|
|
inline_query_result_article_dict = inline_query_result_article.to_dict()
|
|
|
|
|
|
|
|
assert isinstance(inline_query_result_article_dict, dict)
|
|
|
|
assert inline_query_result_article_dict["type"] == inline_query_result_article.type
|
|
|
|
assert inline_query_result_article_dict["id"] == inline_query_result_article.id
|
|
|
|
assert inline_query_result_article_dict["title"] == inline_query_result_article.title
|
2018-11-01 10:18:07 +01:00
|
|
|
assert (
|
|
|
|
inline_query_result_article_dict["input_message_content"]
|
|
|
|
== inline_query_result_article.input_message_content.to_dict()
|
2020-10-09 17:22:07 +02:00
|
|
|
)
|
2018-11-01 10:18:07 +01:00
|
|
|
assert (
|
|
|
|
inline_query_result_article_dict["reply_markup"]
|
|
|
|
== inline_query_result_article.reply_markup.to_dict()
|
2020-10-09 17:22:07 +02:00
|
|
|
)
|
2017-08-11 23:58:41 +02:00
|
|
|
assert inline_query_result_article_dict["url"] == inline_query_result_article.url
|
|
|
|
assert inline_query_result_article_dict["hide_url"] == inline_query_result_article.hide_url
|
2018-11-01 10:18:07 +01:00
|
|
|
assert (
|
|
|
|
inline_query_result_article_dict["description"]
|
|
|
|
== inline_query_result_article.description
|
|
|
|
)
|
|
|
|
assert (
|
2023-03-25 11:47:26 +01:00
|
|
|
inline_query_result_article_dict["thumbnail_url"]
|
|
|
|
== inline_query_result_article.thumbnail_url
|
2018-11-01 10:18:07 +01:00
|
|
|
)
|
|
|
|
assert (
|
2023-03-25 11:47:26 +01:00
|
|
|
inline_query_result_article_dict["thumbnail_height"]
|
|
|
|
== inline_query_result_article.thumbnail_height
|
2018-11-01 10:18:07 +01:00
|
|
|
)
|
|
|
|
assert (
|
2023-03-25 11:47:26 +01:00
|
|
|
inline_query_result_article_dict["thumbnail_width"]
|
|
|
|
== inline_query_result_article.thumbnail_width
|
2018-11-01 10:18:07 +01:00
|
|
|
)
|
2016-04-23 15:47:10 +02:00
|
|
|
|
2024-01-17 21:32:37 +01:00
|
|
|
def test_type_enum_conversion(self):
|
|
|
|
# Since we have a lot of different test files for all the result types, we test this
|
|
|
|
# conversion only here. It is independent of the specific class
|
|
|
|
assert (
|
|
|
|
type(
|
|
|
|
InlineQueryResult(
|
|
|
|
id="id",
|
|
|
|
type="article",
|
|
|
|
).type
|
|
|
|
)
|
|
|
|
is InlineQueryResultType
|
|
|
|
)
|
|
|
|
assert (
|
|
|
|
InlineQueryResult(
|
|
|
|
id="id",
|
|
|
|
type="unknown",
|
|
|
|
).type
|
|
|
|
== "unknown"
|
|
|
|
)
|
|
|
|
|
2017-05-14 23:29:31 +02:00
|
|
|
def test_equality(self):
|
2020-02-23 22:03:58 +01:00
|
|
|
a = InlineQueryResultArticle(self.id_, self.title, self.input_message_content)
|
|
|
|
b = InlineQueryResultArticle(self.id_, self.title, self.input_message_content)
|
|
|
|
c = InlineQueryResultArticle(self.id_, "", self.input_message_content)
|
2017-08-11 23:58:41 +02:00
|
|
|
d = InlineQueryResultArticle("", self.title, self.input_message_content)
|
2020-02-23 22:03:58 +01:00
|
|
|
e = InlineQueryResultAudio(self.id_, "", "")
|
2017-05-14 23:29:31 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert a == b
|
|
|
|
assert hash(a) == hash(b)
|
|
|
|
assert a is not b
|
2017-05-14 23:29:31 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert a == c
|
|
|
|
assert hash(a) == hash(c)
|
2017-05-14 23:29:31 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert a != d
|
|
|
|
assert hash(a) != hash(d)
|
2016-04-23 15:47:10 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert a != e
|
|
|
|
assert hash(a) != hash(e)
|