diff options
Diffstat (limited to 'searx/tests/test_plugins.py')
| -rw-r--r-- | searx/tests/test_plugins.py | 74 |
1 files changed, 0 insertions, 74 deletions
diff --git a/searx/tests/test_plugins.py b/searx/tests/test_plugins.py deleted file mode 100644 index 98d39ec14..000000000 --- a/searx/tests/test_plugins.py +++ /dev/null @@ -1,74 +0,0 @@ -# -*- coding: utf-8 -*- - -from searx.testing import SearxTestCase -from searx import plugins -from mock import Mock - - -def get_search_mock(query, **kwargs): - return {'search': Mock(query=query, - result_container=Mock(answers=set()), - **kwargs)} - - -class PluginStoreTest(SearxTestCase): - - def test_PluginStore_init(self): - store = plugins.PluginStore() - self.assertTrue(isinstance(store.plugins, list) and len(store.plugins) == 0) - - def test_PluginStore_register(self): - store = plugins.PluginStore() - testplugin = plugins.Plugin() - store.register(testplugin) - - self.assertTrue(len(store.plugins) == 1) - - def test_PluginStore_call(self): - store = plugins.PluginStore() - testplugin = plugins.Plugin() - store.register(testplugin) - setattr(testplugin, 'asdf', Mock()) - request = Mock(user_plugins=[]) - store.call('asdf', request, Mock()) - - self.assertFalse(testplugin.asdf.called) - - request.user_plugins.append(testplugin) - store.call('asdf', request, Mock()) - - self.assertTrue(testplugin.asdf.called) - - -class SelfIPTest(SearxTestCase): - - def test_PluginStore_init(self): - store = plugins.PluginStore() - store.register(plugins.self_info) - - self.assertTrue(len(store.plugins) == 1) - - # IP test - request = Mock(user_plugins=store.plugins, - remote_addr='127.0.0.1') - request.headers.getlist.return_value = [] - ctx = get_search_mock(query='ip') - store.call('post_search', request, ctx) - self.assertTrue('127.0.0.1' in ctx['search'].result_container.answers) - - # User agent test - request = Mock(user_plugins=store.plugins, - user_agent='Mock') - request.headers.getlist.return_value = [] - - ctx = get_search_mock(query='user-agent') - store.call('post_search', request, ctx) - self.assertTrue('Mock' in ctx['search'].result_container.answers) - - ctx = get_search_mock(query='user-agent') - store.call('post_search', request, ctx) - self.assertTrue('Mock' in ctx['search'].result_container.answers) - - ctx = get_search_mock(query='What is my User-Agent?') - store.call('post_search', request, ctx) - self.assertTrue('Mock' in ctx['search'].result_container.answers) |