mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
healthcheck endpoint
This commit is contained in:
committed by
Markus Heiser
parent
ebf63f4caa
commit
13c355c4c4
@@ -191,6 +191,11 @@ class ViewsTestCase(SearxTestCase):
|
||||
self.assertEqual(result.status_code, 200)
|
||||
self.assertIn(b'<h1>About <a href="/">searxng</a></h1>', result.data)
|
||||
|
||||
def test_health(self):
|
||||
result = self.app.get('/healthz')
|
||||
self.assertEqual(result.status_code, 200)
|
||||
self.assertIn(b'OK', result.data)
|
||||
|
||||
def test_preferences(self):
|
||||
result = self.app.get('/preferences')
|
||||
self.assertEqual(result.status_code, 200)
|
||||
|
||||
Reference in New Issue
Block a user