mirror of
https://github.com/zulip/zulip.git
synced 2025-11-09 16:37:23 +00:00
Since FIXTURE_DIR_NAME is the name of the folder that contains the view and tests modules of the webhook and another folder called "fixtures" that store the fixtures, it is more appropriate to call it WEBHOOK_DIR_NAME, especially when we want to refer to the view module using this variable.
40 lines
1.4 KiB
Python
40 lines
1.4 KiB
Python
from typing import Any
|
|
from unittest.mock import 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: Any) -> None:
|
|
time.return_value = 1517739100 # 5.6 hours from fixture value
|
|
expected_topic = "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,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
@patch("zerver.webhooks.beeminder.view.time.time")
|
|
def test_beeminder_derail_worried(self, time: Any) -> None:
|
|
time.return_value = 1517739100 # 5.6 hours from fixture value
|
|
expected_topic = "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, expected_message, content_type="application/json"
|
|
)
|