mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 15:03:34 +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.
40 lines
1.2 KiB
Python
40 lines
1.2 KiB
Python
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
class InspingHookTests(WebhookTestCase):
|
|
STREAM_NAME = "test"
|
|
URL_TEMPLATE = "/api/v1/external/insping?&api_key={api_key}&stream={stream}"
|
|
WEBHOOK_DIR_NAME = "insping"
|
|
|
|
def test_website_state_available_message(self) -> None:
|
|
expected_topic_name = "insping"
|
|
expected_message = """
|
|
State changed to **Available**:
|
|
* **URL**: http://privisus.zulipdev.org:9991
|
|
* **Response time**: 223 ms
|
|
* **Timestamp**: Fri Dec 29 17:23:46 2017
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"website_state_available",
|
|
expected_topic_name,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_website_state_not_responding_message(self) -> None:
|
|
expected_topic_name = "insping"
|
|
expected_message = """
|
|
State changed to **Not Responding**:
|
|
* **URL**: http://privisus.zulipdev.org:9991
|
|
* **Response time**: 942 ms
|
|
* **Timestamp**: Fri Dec 29 17:13:46 2017
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"website_state_not_responding",
|
|
expected_topic_name,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|