mirror of
https://github.com/ilyakooo0/searx.git
synced 2024-11-29 10:42:18 +03:00
healthcheck endpoint
This commit is contained in:
parent
53c4031f96
commit
54a2cd040e
@ -584,6 +584,11 @@ def index():
|
||||
)
|
||||
|
||||
|
||||
@app.route('/healthz', methods=['GET'])
|
||||
def health():
|
||||
return Response('OK', mimetype='text/plain')
|
||||
|
||||
|
||||
@app.route('/search', methods=['GET', 'POST'])
|
||||
def search():
|
||||
"""Search query in q and return results.
|
||||
|
@ -188,6 +188,11 @@ class ViewsTestCase(SearxTestCase):
|
||||
self.assertEqual(result.status_code, 200)
|
||||
self.assertIn(b'<h1>About <a href="/">searx</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)
|
||||
|
Loading…
Reference in New Issue
Block a user