mirror of
https://github.com/zulip/zulip.git
synced 2025-11-05 22:43:42 +00:00
This is preparatory work towards adding a Topic model. We plan to use the local variable name as 'topic' for the Topic model objects. Currently, we use *topic as the local variable name for topic names. We rename local variables of the form *topic to *topic_name so that we don't need to think about type collisions in individual code paths where we might want to talk about both Topic objects and strings for the topic name.
39 lines
1.4 KiB
Python
39 lines
1.4 KiB
Python
from unittest.mock import MagicMock, patch
|
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
class BeeminderHookTests(WebhookTestCase):
|
|
STREAM_NAME = "beeminder"
|
|
URL_TEMPLATE = "/api/v1/external/beeminder?api_key={api_key}&stream={stream}"
|
|
WEBHOOK_DIR_NAME = "beeminder"
|
|
|
|
@patch("zerver.webhooks.beeminder.view.time.time")
|
|
def test_beeminder_derail(self, time: MagicMock) -> None:
|
|
time.return_value = 1517739100 # 5.6 hours from fixture value
|
|
expected_topic_name = "beekeeper"
|
|
expected_message = """
|
|
You are going to derail from goal **gainweight** in **5.6 hours**. You need **+2 in 7 days (60)** to avoid derailing.
|
|
* Pledge: **0$** :relieved:
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"derail",
|
|
expected_topic_name,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
@patch("zerver.webhooks.beeminder.view.time.time")
|
|
def test_beeminder_derail_worried(self, time: MagicMock) -> None:
|
|
time.return_value = 1517739100 # 5.6 hours from fixture value
|
|
expected_topic_name = "beekeeper"
|
|
expected_message = """
|
|
You are going to derail from goal **gainweight** in **5.6 hours**. You need **+2 in 7 days (60)** to avoid derailing.
|
|
* Pledge: **5$** :worried:
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"derail_worried", expected_topic_name, expected_message, content_type="application/json"
|
|
)
|