mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			62 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			62 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from typing import Dict
 | 
						|
 | 
						|
from typing_extensions import override
 | 
						|
 | 
						|
from zerver.lib.test_classes import WebhookTestCase
 | 
						|
 | 
						|
 | 
						|
class HelloSignHookTests(WebhookTestCase):
 | 
						|
    CHANNEL_NAME = "hellosign"
 | 
						|
    URL_TEMPLATE = "/api/v1/external/hellosign?stream={stream}&api_key={api_key}"
 | 
						|
    WEBHOOK_DIR_NAME = "hellosign"
 | 
						|
 | 
						|
    def test_signatures_message(self) -> None:
 | 
						|
        expected_topic_name = "NDA with Acme Co."
 | 
						|
        expected_message = (
 | 
						|
            "The `NDA with Acme Co.` document is awaiting the signature of "
 | 
						|
            "Jack, and was just signed by Jill."
 | 
						|
        )
 | 
						|
        self.check_webhook("signatures", expected_topic_name, expected_message, content_type=None)
 | 
						|
 | 
						|
    def test_signatures_message_signed_by_one(self) -> None:
 | 
						|
        expected_topic_name = "NDA with Acme Co."
 | 
						|
        expected_message = "The `NDA with Acme Co.` document was just signed by Jill."
 | 
						|
        self.check_webhook(
 | 
						|
            "signatures_signed_by_one_signatory",
 | 
						|
            expected_topic_name,
 | 
						|
            expected_message,
 | 
						|
            content_type=None,
 | 
						|
        )
 | 
						|
 | 
						|
    def test_signatures_message_with_four_signatories(self) -> None:
 | 
						|
        expected_topic_name = "Signature doc"
 | 
						|
        expected_message = (
 | 
						|
            "The `Signature doc` document is awaiting the signature of "
 | 
						|
            "Eeshan Garg, John Smith, Jane Doe, and Stephen Strange."
 | 
						|
        )
 | 
						|
        self.check_webhook(
 | 
						|
            "signatures_with_four_signatories",
 | 
						|
            expected_topic_name,
 | 
						|
            expected_message,
 | 
						|
            content_type=None,
 | 
						|
        )
 | 
						|
 | 
						|
    def test_signatures_message_with_own_subject(self) -> None:
 | 
						|
        expected_topic_name = "Our own subject."
 | 
						|
        self.url = self.build_webhook_url(topic=expected_topic_name)
 | 
						|
        expected_message = (
 | 
						|
            "The `NDA with Acme Co.` document is awaiting the signature of "
 | 
						|
            "Jack, and was just signed by Jill."
 | 
						|
        )
 | 
						|
        self.check_webhook(
 | 
						|
            "signatures_with_own_subject",
 | 
						|
            expected_topic_name,
 | 
						|
            expected_message,
 | 
						|
            content_type=None,
 | 
						|
            topic=expected_topic_name,
 | 
						|
        )
 | 
						|
 | 
						|
    @override
 | 
						|
    def get_payload(self, fixture_name: str) -> Dict[str, str]:
 | 
						|
        return {"json": self.webhook_fixture_data("hellosign", fixture_name, file_type="json")}
 |