forked from Ponysearch/Ponysearch
healthcheck endpoint
This commit is contained in:
parent
ebf63f4caa
commit
13c355c4c4
2 changed files with 10 additions and 0 deletions
|
@ -618,6 +618,11 @@ def index():
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
@app.route('/healthz', methods=['GET'])
|
||||||
|
def health():
|
||||||
|
return Response('OK', mimetype='text/plain')
|
||||||
|
|
||||||
|
|
||||||
@app.route('/search', methods=['GET', 'POST'])
|
@app.route('/search', methods=['GET', 'POST'])
|
||||||
def search():
|
def search():
|
||||||
"""Search query in q and return results.
|
"""Search query in q and return results.
|
||||||
|
|
|
@ -191,6 +191,11 @@ class ViewsTestCase(SearxTestCase):
|
||||||
self.assertEqual(result.status_code, 200)
|
self.assertEqual(result.status_code, 200)
|
||||||
self.assertIn(b'<h1>About <a href="/">searxng</a></h1>', result.data)
|
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):
|
def test_preferences(self):
|
||||||
result = self.app.get('/preferences')
|
result = self.app.get('/preferences')
|
||||||
self.assertEqual(result.status_code, 200)
|
self.assertEqual(result.status_code, 200)
|
||||||
|
|
Loading…
Reference in a new issue