| 
									
										
										
										
											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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-02 16:01:34 +02:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | import os | 
					
						
							|  |  |  | import subprocess | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | import traceback | 
					
						
							| 
									
										
										
										
											2021-09-02 16:01:34 +02:00
										 |  |  | import pathlib | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | from splinter import Browser | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-02 16:01:34 +02:00
										 |  |  | import tests as searx_tests | 
					
						
							|  |  |  | from tests.robot import test_webapp | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +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
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-02 16:01:34 +02:00
										 |  |  |         tests_path = pathlib.Path(searx_tests.__file__).resolve().parent | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |         # get program paths | 
					
						
							| 
									
										
										
										
											2021-09-02 16:01:34 +02:00
										 |  |  |         webapp = str(tests_path.parent / 'searx' / '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 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-10-02 12:21:02 +02:00
										 |  |  |         os.environ['SEARXNG_DEBUG'] = '0' | 
					
						
							| 
									
										
										
										
											2020-02-23 23:03:05 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |         # set robot settings path | 
					
						
							| 
									
										
										
										
											2021-10-02 12:21:02 +02:00
										 |  |  |         os.environ['SEARXNG_SETTINGS_PATH'] = str(tests_path / 'robot' / 'settings_robot.yml') | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # run the server | 
					
						
							| 
									
										
										
										
											2021-04-30 08:55:15 +02:00
										 |  |  |         self.server = subprocess.Popen(  # pylint: disable=consider-using-with | 
					
						
							| 
									
										
										
										
											2021-12-27 09:26:22 +01:00
										 |  |  |             [exe, webapp], stdout=subprocess.PIPE, stderr=subprocess.STDOUT | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |         ) | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2021-10-02 12:21:02 +02:00
										 |  |  |         del os.environ['SEARXNG_SETTINGS_PATH'] | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  | def run_robot_tests(tests): | 
					
						
							|  |  |  |     print('Running {0} tests'.format(len(tests))) | 
					
						
							|  |  |  |     for test in tests: | 
					
						
							| 
									
										
										
										
											2021-08-03 15:11:02 +02:00
										 |  |  |         with Browser('firefox', headless=True, profile_preferences={'intl.accept_languages': 'en'}) as browser: | 
					
						
							| 
									
										
										
										
											2016-11-30 18:43:03 +01:00
										 |  |  |             test(browser) | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-09-02 16:01:34 +02:00
										 |  |  | def main(): | 
					
						
							|  |  |  |     test_layer = SearxRobotLayer() | 
					
						
							|  |  |  |     try: | 
					
						
							|  |  |  |         test_layer.setUp() | 
					
						
							|  |  |  |         run_robot_tests([getattr(test_webapp, x) for x in dir(test_webapp) if x.startswith('test_')]) | 
					
						
							|  |  |  |     except Exception:  # pylint: disable=broad-except | 
					
						
							|  |  |  |         print('Error occured: {0}'.format(traceback.format_exc())) | 
					
						
							|  |  |  |         sys.exit(1) | 
					
						
							|  |  |  |     finally: | 
					
						
							|  |  |  |         test_layer.tearDown() | 
					
						
							| 
									
										
										
										
											2019-08-03 13:23:36 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-02 12:15:47 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							| 
									
										
										
										
											2021-09-02 16:01:34 +02:00
										 |  |  |     main() |