Files
zulip/zerver/webhooks/appfollow/tests.py
Steve Howell 388053db6b webhook tests: Rename main helper to check_webhook.
Almost all webhook tests use this helper, except a few
webhooks that write to private streams.

Being concise is important here, and the name
`self.send_and_test_stream_message` always confused
me, since it sounds you're sending a stream message,
and it leaves out the webhook piece.

We should consider renaming `send_and_test_private_message`
to something like `check_webhook_private`, but I couldn't
decide on a great name, and it's very rarely used.  So
for now I just made sure the docstrings of the two
sibling functions reference each other.
2020-08-24 12:34:46 -07:00

71 lines
2.9 KiB
Python

from zerver.lib.test_classes import WebhookTestCase, ZulipTestCase
from zerver.webhooks.appfollow.view import convert_markdown
class AppFollowHookTests(WebhookTestCase):
STREAM_NAME = 'appfollow'
URL_TEMPLATE = "/api/v1/external/appfollow?stream={stream}&api_key={api_key}"
def test_sample(self) -> None:
expected_topic = "Webhook integration was successful."
expected_message = """Webhook integration was successful.
Test User / Acme (Google Play)"""
self.check_webhook(
"sample",
expected_topic,
expected_message,
content_type="application/x-www-form-urlencoded",
)
def test_reviews(self) -> None:
expected_topic = "Acme - Group chat"
expected_message = """Acme - Group chat
App Store, Acme Technologies, Inc.
★★★★★ United States
**Great for Information Management**
Acme enables me to manage the flow of information quite well. I only wish I could create and edit my Acme Post files in the iOS app.
*by* **Mr RESOLUTIONARY** *for v3.9*
[Permalink](http://appfollow.io/permalink) · [Add tag](http://watch.appfollow.io/add_tag)"""
self.check_webhook(
"review",
expected_topic,
expected_message,
content_type="application/x-www-form-urlencoded",
)
def test_reviews_with_topic(self) -> None:
# This temporary patch of URL_TEMPLATE is code smell but required due to the way
# WebhookTestCase is built.
original_url_template = self.URL_TEMPLATE
self.URL_TEMPLATE = original_url_template + "&topic=foo"
self.url = self.build_webhook_url()
expected_topic = "foo"
expected_message = """Acme - Group chat
App Store, Acme Technologies, Inc.
★★★★★ United States
**Great for Information Management**
Acme enables me to manage the flow of information quite well. I only wish I could create and edit my Acme Post files in the iOS app.
*by* **Mr RESOLUTIONARY** *for v3.9*
[Permalink](http://appfollow.io/permalink) · [Add tag](http://watch.appfollow.io/add_tag)"""
self.check_webhook(
"review",
expected_topic,
expected_message,
content_type="application/x-www-form-urlencoded",
)
self.URL_TEMPLATE = original_url_template
def get_body(self, fixture_name: str) -> str:
return self.webhook_fixture_data("appfollow", fixture_name, file_type="json")
class ConvertMarkdownTest(ZulipTestCase):
def test_convert_bold(self) -> None:
self.assertEqual(convert_markdown("*test message*"), "**test message**")
def test_convert_italics(self) -> None:
self.assertEqual(convert_markdown("_test message_"), "*test message*")
self.assertEqual(convert_markdown("_ spaced message _"), " *spaced message* ")
def test_convert_strikethrough(self) -> None:
self.assertEqual(convert_markdown("~test message~"), "~~test message~~")