mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Since FIXTURE_DIR_NAME is the name of the folder that contains the view and tests modules of the webhook and another folder called "fixtures" that store the fixtures, it is more appropriate to call it WEBHOOK_DIR_NAME, especially when we want to refer to the view module using this variable.
		
			
				
	
	
		
			36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
from zerver.lib.test_classes import WebhookTestCase
 | 
						|
 | 
						|
 | 
						|
class AlertmanagerHookTests(WebhookTestCase):
 | 
						|
    STREAM_NAME = "alertmanager"
 | 
						|
    URL_TEMPLATE = "/api/v1/external/alertmanager?&api_key={api_key}&stream={stream}&name=topic&desc=description"
 | 
						|
    WEBHOOK_DIR_NAME = "alertmanager"
 | 
						|
 | 
						|
    def test_error_issue_message(self) -> None:
 | 
						|
        expected_topic = "andromeda"
 | 
						|
        expected_message = """
 | 
						|
:alert: **FIRING**
 | 
						|
* CPU core temperature is 34.75C ([graph](http://cobalt:9090/graph?g0.expr=avg+by%28host%29+%28sensors_temp_input%7Bfeature%3D~%22core_%5B0-9%5D%2B%22%7D%29+%3E+15&g0.tab=0))
 | 
						|
* CPU core temperature is 17.625C ([graph](http://cobalt:9090/graph?g0.expr=avg+by%28host%29+%28sensors_temp_input%7Bfeature%3D~%22core_%5B0-9%5D%2B%22%7D%29+%3E+15&g0.tab=0))
 | 
						|
""".strip()
 | 
						|
 | 
						|
        self.check_webhook(
 | 
						|
            "alert",
 | 
						|
            expected_topic,
 | 
						|
            expected_message,
 | 
						|
            "application/json",
 | 
						|
        )
 | 
						|
 | 
						|
    def test_single_error_issue_message(self) -> None:
 | 
						|
        expected_topic = "andromeda"
 | 
						|
        expected_message = """
 | 
						|
:squared_ok: **Resolved** CPU core temperature is 34.75C ([graph](http://cobalt:9090/graph?g0.expr=avg+by%28host%29+%28sensors_temp_input%7Bfeature%3D~%22core_%5B0-9%5D%2B%22%7D%29+%3E+15&g0.tab=0))
 | 
						|
""".strip()
 | 
						|
 | 
						|
        self.check_webhook(
 | 
						|
            "single_alert",
 | 
						|
            expected_topic,
 | 
						|
            expected_message,
 | 
						|
            "application/json",
 | 
						|
        )
 |