2024-03-11 14:06:26 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# pylint: disable=missing-module-docstring
|
|
|
|
|
|
|
|
from mock import Mock
|
2024-09-24 05:37:30 +02:00
|
|
|
from parameterized.parameterized import parameterized
|
2015-03-14 22:35:29 +01:00
|
|
|
|
2023-10-02 16:36:07 +02:00
|
|
|
from searx import (
|
|
|
|
plugins,
|
|
|
|
limiter,
|
|
|
|
botdetection,
|
|
|
|
)
|
|
|
|
|
2021-09-02 16:01:34 +02:00
|
|
|
from tests import SearxTestCase
|
2015-03-14 22:35:29 +01:00
|
|
|
|
|
|
|
|
2015-10-23 23:31:53 +02:00
|
|
|
def get_search_mock(query, **kwargs):
|
2024-03-11 14:06:26 +01:00
|
|
|
return Mock(search_query=Mock(query=query, **kwargs), result_container=Mock(answers={}))
|
2015-10-23 23:31:53 +02:00
|
|
|
|
|
|
|
|
2024-03-11 14:06:26 +01:00
|
|
|
class PluginMock: # pylint: disable=missing-class-docstring, too-few-public-methods
|
2021-09-13 19:37:51 +02:00
|
|
|
default_on = False
|
|
|
|
name = 'Default plugin'
|
|
|
|
description = 'Default plugin description'
|
|
|
|
|
|
|
|
|
2024-03-11 14:06:26 +01:00
|
|
|
class PluginStoreTest(SearxTestCase): # pylint: disable=missing-class-docstring
|
2024-09-24 05:37:30 +02:00
|
|
|
def setUp(self):
|
|
|
|
self.store = plugins.PluginStore()
|
2015-03-14 22:35:29 +01:00
|
|
|
|
2024-09-24 05:37:30 +02:00
|
|
|
def test_init(self):
|
|
|
|
self.assertEqual(0, len(self.store.plugins))
|
|
|
|
self.assertIsInstance(self.store.plugins, list)
|
|
|
|
|
|
|
|
def test_register(self):
|
2021-09-13 19:37:51 +02:00
|
|
|
testplugin = PluginMock()
|
2024-09-24 05:37:30 +02:00
|
|
|
self.store.register(testplugin)
|
|
|
|
self.assertEqual(1, len(self.store.plugins))
|
2015-03-14 22:35:29 +01:00
|
|
|
|
2024-09-24 05:37:30 +02:00
|
|
|
def test_call_empty(self):
|
|
|
|
testplugin = PluginMock()
|
|
|
|
self.store.register(testplugin)
|
|
|
|
setattr(testplugin, 'asdf', Mock())
|
|
|
|
request = Mock()
|
|
|
|
self.store.call([], 'asdf', request, Mock())
|
|
|
|
self.assertFalse(getattr(testplugin, 'asdf').called) # pylint: disable=E1101
|
2015-03-14 22:35:29 +01:00
|
|
|
|
2024-09-24 05:37:30 +02:00
|
|
|
def test_call_with_plugin(self):
|
2015-03-14 22:35:29 +01:00
|
|
|
store = plugins.PluginStore()
|
2021-09-13 19:37:51 +02:00
|
|
|
testplugin = PluginMock()
|
2015-03-14 22:35:29 +01:00
|
|
|
store.register(testplugin)
|
|
|
|
setattr(testplugin, 'asdf', Mock())
|
2017-01-02 12:06:04 +01:00
|
|
|
request = Mock()
|
|
|
|
store.call([testplugin], 'asdf', request, Mock())
|
2024-09-24 05:37:30 +02:00
|
|
|
self.assertTrue(getattr(testplugin, 'asdf').called) # pylint: disable=E1101
|
2015-03-14 22:35:29 +01:00
|
|
|
|
|
|
|
|
2024-09-24 05:37:30 +02:00
|
|
|
class PluginIPSelfInfo(SearxTestCase): # pylint: disable=missing-class-docstring
|
|
|
|
def setUp(self):
|
2021-09-13 19:37:51 +02:00
|
|
|
plugin = plugins.load_and_initialize_plugin('searx.plugins.self_info', False, (None, {}))
|
2024-09-24 05:37:30 +02:00
|
|
|
self.store = plugins.PluginStore()
|
|
|
|
self.store.register(plugin)
|
2023-10-02 16:36:07 +02:00
|
|
|
cfg = limiter.get_cfg()
|
|
|
|
botdetection.init(cfg, None)
|
2015-03-14 22:35:29 +01:00
|
|
|
|
2024-09-24 05:37:30 +02:00
|
|
|
def test_plugin_store_init(self):
|
|
|
|
self.assertEqual(1, len(self.store.plugins))
|
2015-03-14 22:35:29 +01:00
|
|
|
|
2024-09-24 05:37:30 +02:00
|
|
|
def test_ip_in_answer(self):
|
2023-05-29 19:46:37 +02:00
|
|
|
request = Mock()
|
|
|
|
request.remote_addr = '127.0.0.1'
|
|
|
|
request.headers = {'X-Forwarded-For': '1.2.3.4, 127.0.0.1', 'X-Real-IP': '127.0.0.1'}
|
2024-09-24 05:37:30 +02:00
|
|
|
search = get_search_mock(query='ip', pageno=1)
|
|
|
|
self.store.call(self.store.plugins, 'post_search', request, search)
|
|
|
|
self.assertIn('127.0.0.1', search.result_container.answers["ip"]["answer"])
|
2015-06-13 17:49:33 +02:00
|
|
|
|
2024-09-24 05:37:30 +02:00
|
|
|
def test_ip_not_in_answer(self):
|
|
|
|
request = Mock()
|
|
|
|
request.remote_addr = '127.0.0.1'
|
|
|
|
request.headers = {'X-Forwarded-For': '1.2.3.4, 127.0.0.1', 'X-Real-IP': '127.0.0.1'}
|
2020-08-11 16:25:03 +02:00
|
|
|
search = get_search_mock(query='ip', pageno=2)
|
2024-09-24 05:37:30 +02:00
|
|
|
self.store.call(self.store.plugins, 'post_search', request, search)
|
|
|
|
self.assertNotIn('ip', search.result_container.answers)
|
|
|
|
|
|
|
|
@parameterized.expand(
|
|
|
|
[
|
|
|
|
'user-agent',
|
|
|
|
'What is my User-Agent?',
|
|
|
|
]
|
|
|
|
)
|
|
|
|
def test_user_agent_in_answer(self, query: str):
|
2024-08-28 20:05:11 +02:00
|
|
|
request = Mock(user_agent=Mock(string='Mock'))
|
2024-09-24 05:37:30 +02:00
|
|
|
search = get_search_mock(query=query, pageno=1)
|
|
|
|
self.store.call(self.store.plugins, 'post_search', request, search)
|
|
|
|
self.assertIn('Mock', search.result_container.answers["user-agent"]["answer"])
|
|
|
|
|
|
|
|
@parameterized.expand(
|
|
|
|
[
|
|
|
|
'user-agent',
|
|
|
|
'What is my User-Agent?',
|
|
|
|
]
|
|
|
|
)
|
|
|
|
def test_user_agent_not_in_answer(self, query: str):
|
|
|
|
request = Mock(user_agent=Mock(string='Mock'))
|
|
|
|
search = get_search_mock(query=query, pageno=2)
|
|
|
|
self.store.call(self.store.plugins, 'post_search', request, search)
|
|
|
|
self.assertNotIn('user-agent', search.result_container.answers)
|
2018-03-17 13:54:00 +01:00
|
|
|
|
2018-03-17 14:17:45 +01:00
|
|
|
|
2024-09-24 05:37:30 +02:00
|
|
|
class PluginHashTest(SearxTestCase): # pylint: disable=missing-class-docstring
|
|
|
|
def setUp(self):
|
|
|
|
self.store = plugins.PluginStore()
|
2021-09-13 19:37:51 +02:00
|
|
|
plugin = plugins.load_and_initialize_plugin('searx.plugins.hash_plugin', False, (None, {}))
|
2024-09-24 05:37:30 +02:00
|
|
|
self.store.register(plugin)
|
|
|
|
|
|
|
|
def test_plugin_store_init(self):
|
|
|
|
self.assertEqual(1, len(self.store.plugins))
|
|
|
|
|
|
|
|
@parameterized.expand(
|
|
|
|
[
|
|
|
|
('md5 test', 'md5 hash digest: 098f6bcd4621d373cade4e832627b4f6'),
|
|
|
|
('sha1 test', 'sha1 hash digest: a94a8fe5ccb19ba61c4c0873d391e987982fbbd3'),
|
|
|
|
('sha224 test', 'sha224 hash digest: 90a3ed9e32b2aaf4c61c410eb925426119e1a9dc53d4286ade99a809'),
|
|
|
|
('sha256 test', 'sha256 hash digest: 9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08'),
|
|
|
|
(
|
|
|
|
'sha384 test',
|
|
|
|
'sha384 hash digest: 768412320f7b0aa5812fce428dc4706b3c'
|
|
|
|
'ae50e02a64caa16a782249bfe8efc4b7ef1ccb126255d196047dfedf1'
|
|
|
|
'7a0a9',
|
|
|
|
),
|
|
|
|
(
|
|
|
|
'sha512 test',
|
|
|
|
'sha512 hash digest: ee26b0dd4af7e749aa1a8ee3c10ae9923f6'
|
|
|
|
'18980772e473f8819a5d4940e0db27ac185f8a0e1d5f84f88bc887fd67b143732c304cc5'
|
|
|
|
'fa9ad8e6f57f50028a8ff',
|
|
|
|
),
|
|
|
|
]
|
|
|
|
)
|
|
|
|
def test_hash_digest_new(self, query: str, hash_str: str):
|
2018-03-17 13:54:00 +01:00
|
|
|
request = Mock(remote_addr='127.0.0.1')
|
2024-09-24 05:37:30 +02:00
|
|
|
search = get_search_mock(query=query, pageno=1)
|
|
|
|
self.store.call(self.store.plugins, 'post_search', request, search)
|
|
|
|
self.assertIn(hash_str, search.result_container.answers['hash']['answer'])
|
2018-03-17 13:54:00 +01:00
|
|
|
|
2024-09-24 05:37:30 +02:00
|
|
|
def test_md5_bytes_no_answer(self):
|
|
|
|
request = Mock(remote_addr='127.0.0.1')
|
2018-03-17 13:54:00 +01:00
|
|
|
search = get_search_mock(query=b'md5 test', pageno=2)
|
2024-09-24 05:37:30 +02:00
|
|
|
self.store.call(self.store.plugins, 'post_search', request, search)
|
|
|
|
self.assertNotIn('hash', search.result_container.answers)
|