2018-09-10 19:03:23 +02:00
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
2020-01-14 22:06:24 +01:00
|
|
|
|
2018-09-10 19:03:23 +02:00
|
|
|
class AppveyorHookTests(WebhookTestCase):
|
|
|
|
STREAM_NAME = 'appveyor'
|
|
|
|
URL_TEMPLATE = "/api/v1/external/appveyor?api_key={api_key}&stream={stream}"
|
|
|
|
FIXTURE_DIR_NAME = 'appveyor'
|
|
|
|
|
|
|
|
def test_appveyor_build_success_message(self) -> None:
|
|
|
|
"""
|
|
|
|
Tests if appveyor build success notification is handled correctly
|
|
|
|
"""
|
2018-11-09 20:33:58 +01:00
|
|
|
expected_topic = "Hubot-DSC-Resource"
|
2019-04-10 06:07:51 +02:00
|
|
|
expected_message = """
|
|
|
|
[Build Hubot-DSC-Resource 2.0.59 completed](https://ci.appveyor.com/project/joebloggs/hubot-dsc-resource/build/2.0.59):
|
|
|
|
* **Commit**: [c06e208b47: Increment version number.](https://github.com/joebloggs/Hubot-DSC-Resource/commit/c06e208b47) by Joe Bloggs
|
|
|
|
* **Started**: 9/9/2018 7:04 PM
|
|
|
|
* **Finished**: 9/9/2018 7:06 PM
|
|
|
|
""".strip()
|
2018-09-10 19:03:23 +02:00
|
|
|
|
2018-11-09 20:33:58 +01:00
|
|
|
self.send_and_test_stream_message('appveyor_build_success', expected_topic, expected_message)
|
2018-09-10 19:03:23 +02:00
|
|
|
|
|
|
|
def test_appveyor_build_failure_message(self) -> None:
|
|
|
|
"""
|
|
|
|
Tests if appveyor build failure notification is handled correctly
|
|
|
|
"""
|
2018-11-09 20:33:58 +01:00
|
|
|
expected_topic = "Hubot-DSC-Resource"
|
2019-04-10 06:07:51 +02:00
|
|
|
expected_message = """
|
|
|
|
[Build Hubot-DSC-Resource 2.0.59 failed](https://ci.appveyor.com/project/joebloggs/hubot-dsc-resource/build/2.0.59):
|
|
|
|
* **Commit**: [c06e208b47: Increment version number.](https://github.com/joebloggs/Hubot-DSC-Resource/commit/c06e208b47) by Joe Bloggs
|
|
|
|
* **Started**: 9/9/2018 7:04 PM
|
|
|
|
* **Finished**: 9/9/2018 7:06 PM
|
|
|
|
""".strip()
|
2018-09-10 19:03:23 +02:00
|
|
|
|
2018-11-09 20:33:58 +01:00
|
|
|
self.send_and_test_stream_message('appveyor_build_failure', expected_topic, expected_message)
|
2018-09-10 19:03:23 +02:00
|
|
|
|
|
|
|
def get_body(self, fixture_name: str) -> str:
|
|
|
|
return self.webhook_fixture_data("appveyor", fixture_name, file_type="json")
|