mirror of https://github.com/zulip/zulip.git
50 lines
2.1 KiB
Python
50 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
from typing import Text
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
from django.test import TestCase
|
|
|
|
from zerver.webhooks.appfollow.view import convert_markdown
|
|
|
|
class AppFollowHookTests(WebhookTestCase):
|
|
STREAM_NAME = 'appfollow'
|
|
URL_TEMPLATE = u"/api/v1/external/appfollow?stream={stream}&api_key={api_key}"
|
|
|
|
def test_sample(self):
|
|
# type: () -> None
|
|
expected_subject = "Webhook integration was successful."
|
|
expected_message = u"""Webhook integration was successful.
|
|
Test User / Acme (Google Play)"""
|
|
self.send_and_test_stream_message('sample', expected_subject, expected_message,
|
|
content_type="application/x-www-form-urlencoded")
|
|
|
|
def test_reviews(self):
|
|
# type: () -> None
|
|
expected_subject = "Acme - Group chat"
|
|
expected_message = u"""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.send_and_test_stream_message('review', expected_subject, expected_message,
|
|
content_type="application/x-www-form-urlencoded")
|
|
|
|
def get_body(self, fixture_name):
|
|
# type: (Text) -> Text
|
|
return self.fixture_data("appfollow", fixture_name, file_type="json")
|
|
|
|
class ConvertMarkdownTest(TestCase):
|
|
def test_convert_bold(self):
|
|
# type: () -> None
|
|
self.assertEqual(convert_markdown("*test message*"), "**test message**")
|
|
|
|
def test_convert_italics(self):
|
|
# type: () -> None
|
|
self.assertEqual(convert_markdown("_test message_"), "*test message*")
|
|
self.assertEqual(convert_markdown("_ spaced message _"), " *spaced message* ")
|
|
|
|
def test_convert_strikethrough(self):
|
|
# type: () -> None
|
|
self.assertEqual(convert_markdown("~test message~"), "~~test message~~")
|