From 733b795d5327a1be133365d9d46c41d709719109 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Wed, 9 Aug 2023 09:55:48 +0200 Subject: [fix] make flask_babel.gettext() work in engine modules (L10n & threads) incident: flask_babel.gettext() does not work in the engine modules. cause: the request() and response() functions of the engine modules run in the processor, whose search() method runs in a thread and in the threads the context of the Flask app does not exist. The context of the Flask app is needed by the gettext() function for the L10n. Solution: copy context of the Flask app into the threads. [1] special case: We cannot equip the search() method of the processors with the decorator [1], because the decorator requires a context (Flask app) that does not yet exist at the time of the initialization of the processors (the initialization of the processors is part of the initialization of the Flask app). [1] https://flask.palletsprojects.com/en/2.3.x/api/#flask.copy_current_request_context Signed-off-by: Markus Heiser --- tests/unit/test_webapp.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'tests/unit/test_webapp.py') diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index 948b40aee..e3ca0e261 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -198,9 +198,7 @@ class ViewsTestCase(SearxTestCase): result = self.app.get('/preferences') self.assertEqual(result.status_code, 200) self.assertIn(b'
', result.data - ) + self.assertIn(b'
', result.data) self.assertIn(b'Interface language', result.data) def test_browser_locale(self): -- cgit v1.2.3