2017-05-29 19:11:02 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from __future__ import print_function
|
|
|
|
|
|
|
|
import json
|
|
|
|
|
|
|
|
from bots_test_lib import BotTestCase
|
|
|
|
|
|
|
|
class TestGiphyBot(BotTestCase):
|
|
|
|
bot_name = "giphy"
|
|
|
|
|
|
|
|
def test_bot(self):
|
2017-06-13 08:50:24 -04:00
|
|
|
bot_response = '[Click to enlarge]' \
|
|
|
|
'(https://media4.giphy.com/media/3o6ZtpxSZbQRRnwCKQ/giphy.gif)' \
|
|
|
|
'[](/static/images/interactive-bot/giphy/powered-by-giphy.png)'
|
|
|
|
# This message calls the `send_reply` function of BotHandlerApi
|
2017-06-10 13:33:22 -04:00
|
|
|
with self.mock_config_info({'key': '12345678'}), \
|
|
|
|
self.mock_http_conversation('test_1'):
|
|
|
|
self.initialize_bot()
|
2017-06-08 09:54:28 -04:00
|
|
|
self.assert_bot_response(
|
2017-06-13 08:50:24 -04:00
|
|
|
message = {'content': 'Hello'},
|
|
|
|
response = {'content': bot_response},
|
2017-06-08 09:54:28 -04:00
|
|
|
expected_method='send_reply'
|
|
|
|
)
|