# -*- coding: utf-8 -*- from django.conf import settings from zerver.lib.test_classes import WebhookTestCase from zerver.models import get_system_bot class NetlifyHookTests(WebhookTestCase): STREAM_NAME = 'netlify' URL_TEMPLATE = u"/api/v1/external/netlify?stream={stream}&api_key={api_key}" def test_building_message(self) -> None: expected_subject = u"master" expected_message = u'The build [objective-jepsen-35fbb2](http://objective-jepsen-35fbb2.netlify.com) on branch master is now building.' self.send_and_test_stream_message('deploy_building', expected_subject, expected_message, content_type="application/json", HTTP_X_NETLIFY_EVENT='deploy_building') def test_created_message(self) -> None: expected_subject = u"master" expected_message = u'The build [objective-jepsen-35fbb2](http://objective-jepsen-35fbb2.netlify.com) on branch master is now ready.' self.send_and_test_stream_message('deploy_created', expected_subject, expected_message, content_type="application/json", HTTP_X_NETLIFY_EVENT='deploy_created') def test_failed_message(self) -> None: expected_subject = u"master" expected_message = (u"The build [objective-jepsen-35fbb2](http://objective-jepsen-35fbb2.netlify.com) " u"on branch master failed during stage 'building site': Build script returned non-zero exit code: 127" ) self.send_and_test_stream_message('deploy_failed', expected_subject, expected_message, content_type="application/json", HTTP_X_NETLIFY_EVENT='deploy_failed') def test_locked_message(self) -> None: expected_subject = u"master" expected_message = (u"The build [objective-jepsen-35fbb2](http://objective-jepsen-35fbb2.netlify.com) " u"on branch master is now locked." ) self.send_and_test_stream_message('deploy_locked', expected_subject, expected_message, content_type="application/json", HTTP_X_NETLIFY_EVENT='deploy_locked') def test_unlocked_message(self) -> None: expected_subject = u"master" expected_message = (u"The build [objective-jepsen-35fbb2](http://objective-jepsen-35fbb2.netlify.com) " u"on branch master is now unlocked." ) self.send_and_test_stream_message('deploy_unlocked', expected_subject, expected_message, content_type="application/json", HTTP_X_NETLIFY_EVENT='deploy_unlocked') def get_body(self, fixture_name: str) -> str: return self.webhook_fixture_data("netlify", fixture_name, file_type="json")