mirror of
https://github.com/zulip/zulip.git
synced 2025-11-06 06:53:25 +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.
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
class GocdHookTests(WebhookTestCase):
|
|
STREAM_NAME = "gocd"
|
|
URL_TEMPLATE = "/api/v1/external/gocd?stream={stream}&api_key={api_key}"
|
|
WEBHOOK_DIR_NAME = "gocd"
|
|
TOPIC_NAME = "https://github.com/gocd/gocd"
|
|
|
|
def test_gocd_message(self) -> None:
|
|
expected_message = (
|
|
"Author: Balaji B <balaji@example.com>\n"
|
|
"Build status: Passed :thumbs_up:\n"
|
|
"Details: [build log](https://ci.example.com"
|
|
"/go/tab/pipeline/history/pipelineName)\n"
|
|
"Comment: my hola mundo changes"
|
|
)
|
|
|
|
self.check_webhook(
|
|
"pipeline",
|
|
self.TOPIC_NAME,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|
|
|
|
def test_failed_message(self) -> None:
|
|
expected_message = (
|
|
"Author: User Name <username123@example.com>\n"
|
|
"Build status: Failed :thumbs_down:\n"
|
|
"Details: [build log](https://ci.example.com"
|
|
"/go/tab/pipeline/history/pipelineName)\n"
|
|
"Comment: my hola mundo changes"
|
|
)
|
|
|
|
self.check_webhook(
|
|
"pipeline_failed",
|
|
self.TOPIC_NAME,
|
|
expected_message,
|
|
content_type="application/x-www-form-urlencoded",
|
|
)
|