mirror of https://github.com/zulip/zulip.git
21 lines
884 B
Python
21 lines
884 B
Python
# -*- coding: utf-8 -*-
|
|
from typing import Text
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
class HelloSignHookTests(WebhookTestCase):
|
|
STREAM_NAME = 'hellosign'
|
|
URL_TEMPLATE = "/api/v1/external/hellosign?stream={stream}&api_key={api_key}"
|
|
FIXTURE_DIR_NAME = 'hellosign'
|
|
|
|
def test_signatures_message(self):
|
|
# type: () -> None
|
|
expected_subject = "NDA with Acme Co."
|
|
expected_message = ("The NDA with Acme Co. is awaiting the signature of "
|
|
"Jack and was just signed by Jill.")
|
|
self.send_and_test_stream_message('signatures', expected_subject, expected_message,
|
|
content_type="application/x-www-form-urlencoded")
|
|
|
|
def get_body(self, fixture_name):
|
|
# type: (Text) -> Text
|
|
return self.fixture_data("hellosign", fixture_name, file_type="json")
|