| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | # -*- coding: utf-8 -*- | 
					
						
							| 
									
										
										
										
											2020-02-23 22:51:07 +01:00
										 |  |  | # SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | """Shared testing code.""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 22:51:07 +01:00
										 |  |  | # pylint: disable=missing-function-docstring | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import subprocess | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | import traceback | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 22:51:07 +01:00
										 |  |  | from os.path import dirname, join, abspath, realpath | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-02-28 11:25:20 +01:00
										 |  |  | from unittest import TestCase | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | from splinter import Browser | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-24 07:55:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | class SearxTestLayer: | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |     """Base layer for non-robot tests.""" | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  |     __name__ = 'SearxTestLayer' | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 22:51:07 +01:00
										 |  |  |     @classmethod | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |     def setUp(cls): | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 22:51:07 +01:00
										 |  |  |     @classmethod | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |     def tearDown(cls): | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 22:51:07 +01:00
										 |  |  |     @classmethod | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |     def testSetUp(cls): | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 22:51:07 +01:00
										 |  |  |     @classmethod | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |     def testTearDown(cls): | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | class SearxRobotLayer(): | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |     """Searx Robot Test Layer""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def setUp(self): | 
					
						
							|  |  |  |         os.setpgrp()  # create new process group, become its leader | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # get program paths | 
					
						
							| 
									
										
										
										
											2020-02-23 22:51:07 +01:00
										 |  |  |         webapp = join(abspath(dirname(realpath(__file__))), 'webapp.py') | 
					
						
							| 
									
										
										
										
											2016-01-02 12:15:47 +01:00
										 |  |  |         exe = 'python' | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-23 23:03:05 +01:00
										 |  |  |         # The Flask app is started by Flask.run(...), don't enable Flask's debug | 
					
						
							|  |  |  |         # mode, the debugger from Flask will cause wired process model, where | 
					
						
							|  |  |  |         # the server never dies.  Further read: | 
					
						
							|  |  |  |         # | 
					
						
							|  |  |  |         # - debug mode: https://flask.palletsprojects.com/quickstart/#debug-mode | 
					
						
							|  |  |  |         # - Flask.run(..): https://flask.palletsprojects.com/api/#flask.Flask.run | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         os.environ['SEARX_DEBUG'] = '0' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |         # set robot settings path | 
					
						
							| 
									
										
										
										
											2016-01-02 12:15:47 +01:00
										 |  |  |         os.environ['SEARX_SETTINGS_PATH'] = abspath( | 
					
						
							|  |  |  |             dirname(__file__) + '/settings_robot.yml') | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # run the server | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |         self.server = subprocess.Popen( | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |             [exe, webapp], | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |             stdout=subprocess.PIPE, | 
					
						
							|  |  |  |             stderr=subprocess.STDOUT | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2019-07-06 18:47:35 +02:00
										 |  |  |         if hasattr(self.server.stdout, 'read1'): | 
					
						
							| 
									
										
										
										
											2020-08-06 17:42:46 +02:00
										 |  |  |             print(self.server.stdout.read1(1024).decode()) | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def tearDown(self): | 
					
						
							| 
									
										
										
										
											2016-02-27 18:41:09 +01:00
										 |  |  |         os.kill(self.server.pid, 9) | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |         # remove previously set environment variable | 
					
						
							|  |  |  |         del os.environ['SEARX_SETTINGS_PATH'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | # SEARXROBOTLAYER = SearxRobotLayer() | 
					
						
							|  |  |  | def run_robot_tests(tests): | 
					
						
							|  |  |  |     print('Running {0} tests'.format(len(tests))) | 
					
						
							|  |  |  |     for test in tests: | 
					
						
							| 
									
										
										
										
											2019-07-12 19:35:36 +02:00
										 |  |  |         with Browser('firefox', headless=True) as browser: | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |             test(browser) | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SearxTestCase(TestCase): | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |     """Base test case for non-robot tests.""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |     layer = SearxTestLayer | 
					
						
							| 
									
										
										
										
											2016-01-02 12:15:47 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-03 13:23:36 +02:00
										 |  |  |     def setattr4test(self, obj, attr, value): | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         setattr(obj, attr, value) | 
					
						
							|  |  |  |         but reset to the previous value in the cleanup. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         previous_value = getattr(obj, attr) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         def cleanup_patch(): | 
					
						
							|  |  |  |             setattr(obj, attr, previous_value) | 
					
						
							|  |  |  |         self.addCleanup(cleanup_patch) | 
					
						
							|  |  |  |         setattr(obj, attr, value) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-02 12:15:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     import sys | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |     # test cases | 
					
						
							|  |  |  |     from tests import robot | 
					
						
							| 
									
										
										
										
											2016-01-02 12:15:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     base_dir = abspath(join(dirname(__file__), '../tests')) | 
					
						
							|  |  |  |     if sys.argv[1] == 'robot': | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |         test_layer = SearxRobotLayer() | 
					
						
							|  |  |  |         errors = False | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             test_layer.setUp() | 
					
						
							|  |  |  |             run_robot_tests([getattr(robot, x) for x in dir(robot) if x.startswith('test_')]) | 
					
						
							| 
									
										
										
										
											2020-02-23 22:51:07 +01:00
										 |  |  |         except Exception:  # pylint: disable=broad-except | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |             errors = True | 
					
						
							|  |  |  |             print('Error occured: {0}'.format(traceback.format_exc())) | 
					
						
							|  |  |  |         test_layer.tearDown() | 
					
						
							|  |  |  |         sys.exit(1 if errors else 0) |