2023-10-12 19:43:45 +02:00
|
|
|
from typing_extensions import override
|
|
|
|
|
2020-06-11 00:54:34 +02:00
|
|
|
from zerver.lib.test_classes import WebhookTestCase
|
|
|
|
|
|
|
|
|
2016-12-22 16:11:51 +01:00
|
|
|
class HelloSignHookTests(WebhookTestCase):
|
2024-05-04 22:02:50 +02:00
|
|
|
CHANNEL_NAME = "hellosign"
|
2016-12-22 16:11:51 +01:00
|
|
|
URL_TEMPLATE = "/api/v1/external/hellosign?stream={stream}&api_key={api_key}"
|
2021-06-26 09:18:33 +02:00
|
|
|
WEBHOOK_DIR_NAME = "hellosign"
|
2016-12-22 16:11:51 +01:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_signatures_message(self) -> None:
|
2024-01-17 15:53:30 +01:00
|
|
|
expected_topic_name = "NDA with Acme Co."
|
2021-02-12 08:19:30 +01:00
|
|
|
expected_message = (
|
|
|
|
"The `NDA with Acme Co.` document is awaiting the signature of "
|
|
|
|
"Jack, and was just signed by Jill."
|
|
|
|
)
|
2024-01-17 15:53:30 +01:00
|
|
|
self.check_webhook("signatures", expected_topic_name, expected_message, content_type=None)
|
2016-12-22 16:11:51 +01:00
|
|
|
|
2018-10-04 17:23:27 +02:00
|
|
|
def test_signatures_message_signed_by_one(self) -> None:
|
2024-01-17 15:53:30 +01:00
|
|
|
expected_topic_name = "NDA with Acme Co."
|
2021-02-12 08:19:30 +01:00
|
|
|
expected_message = "The `NDA with Acme Co.` document was just signed by Jill."
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"signatures_signed_by_one_signatory",
|
2024-01-17 15:53:30 +01:00
|
|
|
expected_topic_name,
|
2020-08-23 15:49:24 +02:00
|
|
|
expected_message,
|
|
|
|
content_type=None,
|
|
|
|
)
|
2018-10-04 17:23:27 +02:00
|
|
|
|
|
|
|
def test_signatures_message_with_four_signatories(self) -> None:
|
2024-01-17 15:53:30 +01:00
|
|
|
expected_topic_name = "Signature doc"
|
2021-02-12 08:19:30 +01:00
|
|
|
expected_message = (
|
|
|
|
"The `Signature doc` document is awaiting the signature of "
|
|
|
|
"Eeshan Garg, John Smith, Jane Doe, and Stephen Strange."
|
|
|
|
)
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
2024-01-17 15:53:30 +01:00
|
|
|
"signatures_with_four_signatories",
|
|
|
|
expected_topic_name,
|
|
|
|
expected_message,
|
|
|
|
content_type=None,
|
2020-08-23 15:49:24 +02:00
|
|
|
)
|
2018-10-04 17:23:27 +02:00
|
|
|
|
2017-11-04 07:47:46 +01:00
|
|
|
def test_signatures_message_with_own_subject(self) -> None:
|
2024-01-17 15:53:30 +01:00
|
|
|
expected_topic_name = "Our own subject."
|
|
|
|
self.url = self.build_webhook_url(topic=expected_topic_name)
|
2021-02-12 08:19:30 +01:00
|
|
|
expected_message = (
|
|
|
|
"The `NDA with Acme Co.` document is awaiting the signature of "
|
|
|
|
"Jack, and was just signed by Jill."
|
|
|
|
)
|
2020-08-23 15:49:24 +02:00
|
|
|
self.check_webhook(
|
|
|
|
"signatures_with_own_subject",
|
2024-01-17 15:53:30 +01:00
|
|
|
expected_topic_name,
|
2020-08-23 15:49:24 +02:00
|
|
|
expected_message,
|
|
|
|
content_type=None,
|
2024-01-17 15:53:30 +01:00
|
|
|
topic=expected_topic_name,
|
2020-08-23 15:49:24 +02:00
|
|
|
)
|
2017-04-11 07:19:35 +02:00
|
|
|
|
2023-10-12 19:43:45 +02:00
|
|
|
@override
|
2024-07-12 02:30:17 +02:00
|
|
|
def get_payload(self, fixture_name: str) -> dict[str, str]:
|
2020-02-08 00:24:39 +01:00
|
|
|
return {"json": self.webhook_fixture_data("hellosign", fixture_name, file_type="json")}
|