2016-01-27 11:20:32 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# A library that provides a Python interface to the Telegram Bot API
|
2017-05-14 12:18:29 +02:00
|
|
|
# Copyright (C) 2015-2017
|
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/].
|
|
|
|
|
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
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
class TestParseMode(object):
|
|
|
|
markdown_text = '*bold* _italic_ [link](http://google.com).'
|
|
|
|
html_text = '<b>bold</b> <i>italic</i> <a href="http://google.com">link</a>.'
|
|
|
|
formatted_text_formatted = u'bold italic link.'
|
2016-01-27 11:20:32 +01:00
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_send_message_with_parse_mode_markdown(self, bot, chat_id):
|
|
|
|
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
|
|
|
|
2017-08-11 23:58:41 +02:00
|
|
|
def test_send_message_with_parse_mode_html(self, bot, chat_id):
|
|
|
|
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
|