mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Generated by `pyupgrade --py3-plus --keep-percent-format` on all our Python code except `zthumbor` and `zulip-ec2-configure-interfaces`, followed by manual indentation fixes. Signed-off-by: Anders Kaseorg <anders@zulipchat.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from zerver.lib.test_classes import WebhookTestCase
 | 
						|
 | 
						|
 | 
						|
class ZapierHookTests(WebhookTestCase):
 | 
						|
    STREAM_NAME = 'zapier'
 | 
						|
    URL_TEMPLATE = "/api/v1/external/zapier?stream={stream}&api_key={api_key}"
 | 
						|
    FIXTURE_DIR_NAME = 'zapier'
 | 
						|
 | 
						|
    def test_zapier_when_subject_and_body_are_correct(self) -> None:
 | 
						|
        expected_topic = "New email from zulip@zulip.com"
 | 
						|
        expected_message = "Your email content is: \nMy Email content."
 | 
						|
        self.send_and_test_stream_message('correct_subject_and_body', expected_topic, expected_message)
 | 
						|
 | 
						|
    def test_zapier_when_topic_and_body_are_correct(self) -> None:
 | 
						|
        expected_topic = "New email from zulip@zulip.com"
 | 
						|
        expected_message = "Your email content is: \nMy Email content."
 | 
						|
        self.send_and_test_stream_message('correct_topic_and_body', expected_topic, expected_message)
 | 
						|
 | 
						|
    def test_zapier_weather_update(self) -> None:
 | 
						|
        expected_topic = "Here is your weather update for the day:"
 | 
						|
        expected_message = "Foggy in the morning.\nMaximum temperature to be 24.\nMinimum temperature to be 12"
 | 
						|
        self.send_and_test_stream_message('weather_update', expected_topic, expected_message)
 | 
						|
 | 
						|
class ZapierZulipAppTests(WebhookTestCase):
 | 
						|
    STREAM_NAME = 'zapier'
 | 
						|
    URL_TEMPLATE = "/api/v1/external/zapier?api_key={api_key}&stream={stream}"
 | 
						|
    FIXTURE_DIR_NAME = 'zapier'
 | 
						|
 | 
						|
    def test_auth(self) -> None:
 | 
						|
        payload = self.get_body('zapier_zulip_app_auth')
 | 
						|
        result = self.client_post(self.url, payload,
 | 
						|
                                  content_type='application/json')
 | 
						|
        json_result = self.assert_json_success(result)
 | 
						|
        self.assertEqual(json_result['full_name'], 'Zulip Webhook Bot')
 | 
						|
        self.assertEqual(json_result['email'], 'webhook-bot@zulip.com')
 | 
						|
        self.assertIn('id', json_result)
 |