mirror of
https://github.com/zulip/zulip.git
synced 2025-10-23 04:52:12 +00:00
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.
44 lines
1.3 KiB
Python
44 lines
1.3 KiB
Python
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
class NewRelicHookTests(WebhookTestCase):
|
|
STREAM_NAME = 'newrelic'
|
|
URL_TEMPLATE = "/api/v1/external/newrelic?stream={stream}&api_key={api_key}"
|
|
|
|
def test_alert(self) -> None:
|
|
expected_topic = "Apdex score fell below critical level of 0.90"
|
|
expected_message = 'Alert opened on [application name]: Apdex score fell below critical level of 0.90 ([view alert](https://rpm.newrelc.com/accounts/[account_id]/applications/[application_id]/incidents/[incident_id])).'
|
|
|
|
self.check_webhook(
|
|
"alert",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_deployment(self) -> None:
|
|
expected_topic = 'Test App deploy'
|
|
expected_message = """
|
|
**1242** deployed by **Zulip Test**:
|
|
|
|
``` quote
|
|
Description sent via curl
|
|
```
|
|
|
|
Changelog:
|
|
|
|
``` quote
|
|
Changelog string
|
|
```
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"deployment",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def get_body(self, fixture_name: str) -> str:
|
|
return self.webhook_fixture_data("newrelic", fixture_name, file_type="txt")
|