diff options
author | Alexandre Flament <alex@al-f.net> | 2021-05-05 13:08:54 +0200 |
---|---|---|
committer | Alexandre Flament <alex@al-f.net> | 2021-05-05 13:12:42 +0200 |
commit | 8c1a65d32fb6a0859c0052d668d01f08325f11ad (patch) | |
tree | 8837e952d67fb8a4755ce2c732ada76474da75c2 /tests/unit/test_webapp.py | |
parent | d36adfa59f242a8775ad74245c696d62b7727a36 (diff) | |
download | searxng-8c1a65d32fb6a0859c0052d668d01f08325f11ad.tar.gz searxng-8c1a65d32fb6a0859c0052d668d01f08325f11ad.zip |
[mod] multithreading only in searx.search.* packages
it prepares the new architecture change,
everything about multithreading in moved in the searx.search.* packages
previously the call to the "init" function of the engines was done in searx.engines:
* the network was not set (request not sent using the defined proxy)
* it requires to monkey patch the code to avoid HTTP requests during the tests
Diffstat (limited to 'tests/unit/test_webapp.py')
-rw-r--r-- | tests/unit/test_webapp.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/test_webapp.py b/tests/unit/test_webapp.py index 9d83b7596..2cbdc83d6 100644 --- a/tests/unit/test_webapp.py +++ b/tests/unit/test_webapp.py @@ -5,14 +5,16 @@ from urllib.parse import ParseResult from mock import Mock from searx.testing import SearxTestCase from searx.search import Search -import searx.engines +import searx.search.processors class ViewsTestCase(SearxTestCase): def setUp(self): # skip init function (no external HTTP request) - self.setattr4test(searx.engines, 'initialize_engines', searx.engines.load_engines) + def dummy(*args, **kwargs): + pass + self.setattr4test(searx.search.processors, 'initialize_processor', dummy) from searx import webapp # pylint disable=import-outside-toplevel |