mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Add documentation for weather update through Zapier. Contains tests and fixtures for weather example. With minor fixes, docs migration to Markdown, and rebasing by Eeshan Garg.
		
			
				
	
	
		
			20 lines
		
	
	
		
			934 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			934 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
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):
 | 
						|
        # type: () -> None
 | 
						|
        expected_subject = u"New email from zulip@zulip.com"
 | 
						|
        expected_message = u"Your email content is: \nMy Email content."
 | 
						|
        self.send_and_test_stream_message('correct_subject_and_body', expected_subject, expected_message)
 | 
						|
 | 
						|
    def test_zapier_weather_update(self):
 | 
						|
        # type: () -> None
 | 
						|
        expected_subject = u"Here is your weather update for the day:"
 | 
						|
        expected_message = u"Foggy in the morning.\nMaximum temperature to be 24.\nMinimum temperature to be 12"
 | 
						|
        self.send_and_test_stream_message('weather_update', expected_subject, expected_message)
 |