mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +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.
238 lines
7.3 KiB
Python
238 lines
7.3 KiB
Python
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
class OpsGenieHookTests(WebhookTestCase):
|
|
STREAM_NAME = 'opsgenie'
|
|
URL_TEMPLATE = "/api/v1/external/opsgenie?&api_key={api_key}&stream={stream}"
|
|
FIXTURE_DIR_NAME = 'opsgenie'
|
|
|
|
def test_acknowledge_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: Acknowledge
|
|
* **Message**: test alert
|
|
* **Tags**: `tag1`, `tag2`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"acknowledge",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_addnote_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: AddNote
|
|
* **Note**: note to test alert
|
|
* **Message**: test alert
|
|
* **Tags**: `tag1`, `tag2`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"addnote",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_addrecipient_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: AddRecipient
|
|
* **Recipient**: team2_escalation
|
|
* **Message**: test alert
|
|
* **Tags**: `tag1`, `tag2`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"addrecipient",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_addtags_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: AddTags
|
|
* **Tags added**: tag1,tag2,tag3
|
|
* **Message**: test alert
|
|
* **Tags**: `tag1`, `tag2`, `tag3`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"addtags",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_addteam_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: AddTeam
|
|
* **Team added**: team2
|
|
* **Message**: test alert
|
|
* **Tags**: `tag1`, `tag2`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"addteam",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_assignownership_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: AssignOwnership
|
|
* **Assigned owner**: user2@ifountain.com
|
|
* **Message**: test alert
|
|
* **Tags**: `tag1`, `tag2`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"assignownership",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_close_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: Close
|
|
* **Message**: test alert
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"close",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_create_alert(self) -> None:
|
|
expected_topic = "Webhook"
|
|
expected_message = """
|
|
[OpsGenie Alert for Webhook](https://app.opsgenie.com/alert/V2#/show/ec03dad6-62c8-4c94-b38b-d88f398e900f):
|
|
* **Type**: Create
|
|
* **Message**: another alert
|
|
* **Tags**: `vip`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"create",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_customaction_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: TestAction
|
|
* **Message**: test alert
|
|
* **Tags**: `tag1`, `tag2`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"customaction",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_delete_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: Delete
|
|
* **Message**: test alert
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"delete",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_escalate_alert(self) -> None:
|
|
expected_topic = "Webhook_Test"
|
|
expected_message = """
|
|
[OpsGenie Alert for Webhook_Test](https://app.opsgenie.com/alert/V2#/show/7ba97e3a-d328-4b5e-8f9a-39e945a3869a):
|
|
* **Type**: Escalate
|
|
* **Escalation**: test_esc
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"escalate",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_removetags_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: RemoveTags
|
|
* **Tags removed**: tag3
|
|
* **Message**: test alert
|
|
* **Tags**: `tag1`, `tag2`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"removetags",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_takeownership_alert(self) -> None:
|
|
expected_topic = "Webhook"
|
|
expected_message = """
|
|
[OpsGenie Alert for Webhook](https://app.opsgenie.com/alert/V2#/show/8a745a79-3ed3-4044-8427-98e067c0623c):
|
|
* **Type**: TakeOwnership
|
|
* **Message**: message test
|
|
* **Tags**: `tag1`, `tag2`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"takeownership",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_unacknowledge_alert(self) -> None:
|
|
expected_topic = "Integration1"
|
|
expected_message = """
|
|
[OpsGenie Alert for Integration1](https://app.opsgenie.com/alert/V2#/show/052652ac-5d1c-464a-812a-7dd18bbfba8c):
|
|
* **Type**: UnAcknowledge
|
|
* **Message**: test alert
|
|
* **Tags**: `tag1`, `tag2`
|
|
""".strip()
|
|
|
|
self.check_webhook(
|
|
"unacknowledge",
|
|
expected_topic,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def get_body(self, fixture_name: str) -> str:
|
|
return self.webhook_fixture_data("opsgenie", fixture_name, file_type="json")
|