2016-01-27 11:20:32 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2021-01-03 06:10:24 +01:00
|
|
|
# Copyright (C) 2015-2021
|
2016-01-27 11:20:32 +01: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-01-27 11:20:32 +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.
|
2016-01-27 11:20:32 +01:00
|
|
|
#
|
2017-08-11 23:58:41 +02:00
|
|
|
# You should have received a copy of the GNU Lesser Public License
|
2016-01-27 11:20:32 +01:00
|
|
|
# along with this program. If not, see [http://www.gnu.org/licenses/].
|
2018-09-07 16:05:45 +02:00
|
|
|
import pytest
|
|
|
|
from flaky import flaky
|
2016-01-27 11:20:32 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
from telegram import ParseMode
|
2016-04-24 04:11:25 +02:00
|
|
|
|
2016-01-27 11:20:32 +01:00
|
|
|
|
2020-06-15 18:20:51 +02:00
|
|
|
class TestParseMode:
|
2018-09-25 20:07:55 +02:00
|
|
|
markdown_text = '*bold* _italic_ [link](http://google.com) [name](tg://user?id=123456789).'
|
2020-10-09 17:22:07 +02:00
|
|
|
html_text = (
|
|
|
|
'<b>bold</b> <i>italic</i> <a href="http://google.com">link</a> '
|
|
|
|
'<a href="tg://user?id=123456789">name</a>.'
|
|
|
|
)
|
2021-01-17 23:24:20 +01:00
|
|
|
formatted_text_formatted = 'bold italic link name.'
|
2016-01-27 11:20:32 +01:00
|
|
|
|
2018-09-07 16:05:45 +02:00
|
|
|
@flaky(3, 1)
|
|
|
|
@pytest.mark.timeout(10)
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_send_message_with_parse_mode_markdown(self, bot, chat_id):
|
2020-10-09 17:22:07 +02:00
|
|
|
message = bot.send_message(
|
|
|
|
chat_id=chat_id, text=self.markdown_text, parse_mode=ParseMode.MARKDOWN
|
|
|
|
)
|
2016-04-24 04:11:25 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert message.text == self.formatted_text_formatted
|
2016-01-27 11:20:32 +01:00
|
|
|
|
2018-09-07 16:05:45 +02:00
|
|
|
@flaky(3, 1)
|
|
|
|
@pytest.mark.timeout(10)
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_send_message_with_parse_mode_html(self, bot, chat_id):
|
2020-10-09 17:22:07 +02:00
|
|
|
message = bot.send_message(chat_id=chat_id, text=self.html_text, parse_mode=ParseMode.HTML)
|
2016-04-24 04:11:25 +02:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
assert message.text == self.formatted_text_formatted
|