2016-09-20 22:51:11 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-12-04 18:38:56 +01:00
|
|
|
from typing import Any, Dict, Text
|
2016-11-10 19:30:09 +01:00
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
2016-09-20 22:51:11 +02:00
|
|
|
|
|
|
|
class YoHookTests(WebhookTestCase):
|
|
|
|
STREAM_NAME = 'yo'
|
2017-04-21 23:35:40 +02:00
|
|
|
URL_TEMPLATE = u"/api/v1/external/yo?api_key={api_key}"
|
2016-09-20 22:51:11 +02:00
|
|
|
FIXTURE_DIR_NAME = 'yo'
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_yo_message(self) -> None:
|
2016-09-20 22:51:11 +02:00
|
|
|
"""
|
|
|
|
Yo App sends notification whenever user receives a new Yo from another user.
|
|
|
|
"""
|
2017-04-21 23:35:40 +02:00
|
|
|
self.url = self.build_webhook_url(
|
|
|
|
email="cordelia@zulip.com",
|
|
|
|
username="IAGO",
|
|
|
|
user_ip="127.0.0.1"
|
|
|
|
)
|
2016-09-20 22:51:11 +02:00
|
|
|
expected_message = u"Yo from IAGO"
|
|
|
|
self.send_and_test_private_message('', expected_message=expected_message,
|
|
|
|
content_type="application/x-www-form-urlencoded")
|
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def get_body(self, fixture_name: Text) -> Dict[str, Any]:
|
2016-09-20 22:51:11 +02:00
|
|
|
return {}
|