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.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from zerver.lib.test_classes import WebhookTestCase
 | 
						|
 | 
						|
 | 
						|
class InspingHookTests(WebhookTestCase):
 | 
						|
    STREAM_NAME = 'test'
 | 
						|
    URL_TEMPLATE = "/api/v1/external/insping?&api_key={api_key}&stream={stream}"
 | 
						|
    FIXTURE_DIR_NAME = 'insping'
 | 
						|
 | 
						|
    def test_website_state_available_message(self) -> None:
 | 
						|
        expected_topic = "insping"
 | 
						|
        expected_message = """
 | 
						|
State changed to **Available**:
 | 
						|
* **URL**: http://privisus.zulipdev.org:9991
 | 
						|
* **Response time**: 223 ms
 | 
						|
* **Timestamp**: Fri Dec 29 17:23:46 2017
 | 
						|
""".strip()
 | 
						|
 | 
						|
        self.send_and_test_stream_message('website_state_available',
 | 
						|
                                          expected_topic, expected_message,
 | 
						|
                                          content_type="application/x-www-form-urlencoded")
 | 
						|
 | 
						|
    def test_website_state_not_responding_message(self) -> None:
 | 
						|
        expected_topic = "insping"
 | 
						|
        expected_message = """
 | 
						|
State changed to **Not Responding**:
 | 
						|
* **URL**: http://privisus.zulipdev.org:9991
 | 
						|
* **Response time**: 942 ms
 | 
						|
* **Timestamp**: Fri Dec 29 17:13:46 2017
 | 
						|
""".strip()
 | 
						|
 | 
						|
        self.send_and_test_stream_message('website_state_not_responding',
 | 
						|
                                          expected_topic, expected_message,
 | 
						|
                                          content_type="application/x-www-form-urlencoded")
 | 
						|
 | 
						|
    def get_body(self, fixture_name: str) -> str:
 | 
						|
        return self.webhook_fixture_data("insping", fixture_name, file_type="json")
 |