2020-02-23 21:51:07 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
2021-04-26 18:18:20 +00:00
|
|
|
# lint: pylint
|
2014-01-12 11:40:27 +00:00
|
|
|
"""Shared testing code."""
|
|
|
|
|
2020-02-23 21:51:07 +00:00
|
|
|
# pylint: disable=missing-function-docstring
|
2014-01-12 11:40:27 +00:00
|
|
|
|
2021-09-02 14:01:34 +00:00
|
|
|
import sys
|
2014-01-12 11:40:27 +00:00
|
|
|
import os
|
|
|
|
import subprocess
|
2016-11-30 17:43:03 +00:00
|
|
|
import traceback
|
2021-09-02 14:01:34 +00:00
|
|
|
import pathlib
|
2016-11-30 17:43:03 +00:00
|
|
|
|
|
|
|
from splinter import Browser
|
2014-01-12 11:40:27 +00:00
|
|
|
|
2021-09-02 14:01:34 +00:00
|
|
|
import tests as searx_tests
|
|
|
|
from tests.robot import test_webapp
|
2014-01-12 11:40:27 +00:00
|
|
|
|
|
|
|
|
2016-11-30 17:43:03 +00:00
|
|
|
class SearxRobotLayer():
|
2014-01-12 11:40:27 +00:00
|
|
|
"""Searx Robot Test Layer"""
|
|
|
|
|
|
|
|
def setUp(self):
|
|
|
|
os.setpgrp() # create new process group, become its leader
|
2014-01-19 21:59:01 +00:00
|
|
|
|
2021-09-02 14:01:34 +00:00
|
|
|
tests_path = pathlib.Path(searx_tests.__file__).resolve().parent
|
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
# get program paths
|
2021-09-02 14:01:34 +00:00
|
|
|
webapp = str(tests_path.parent / 'searx' / 'webapp.py')
|
2016-01-02 11:15:47 +00:00
|
|
|
exe = 'python'
|
2014-01-19 21:59:01 +00:00
|
|
|
|
2020-02-23 22:03:05 +00: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 10:21:02 +00:00
|
|
|
os.environ['SEARXNG_DEBUG'] = '0'
|
2020-02-23 22:03:05 +00:00
|
|
|
|
2014-01-19 21:59:01 +00:00
|
|
|
# set robot settings path
|
2021-10-02 10:21:02 +00:00
|
|
|
os.environ['SEARXNG_SETTINGS_PATH'] = str(tests_path / 'robot' / 'settings_robot.yml')
|
2014-01-19 21:59:01 +00:00
|
|
|
|
|
|
|
# run the server
|
2021-04-30 06:55:15 +00:00
|
|
|
self.server = subprocess.Popen( # pylint: disable=consider-using-with
|
2014-01-19 21:59:01 +00:00
|
|
|
[exe, webapp],
|
2014-01-12 11:40:27 +00:00
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT
|
|
|
|
)
|
2019-07-06 16:47:35 +00:00
|
|
|
if hasattr(self.server.stdout, 'read1'):
|
2020-08-06 15:42:46 +00:00
|
|
|
print(self.server.stdout.read1(1024).decode())
|
2014-01-12 11:40:27 +00:00
|
|
|
|
|
|
|
def tearDown(self):
|
2016-02-27 17:41:09 +00:00
|
|
|
os.kill(self.server.pid, 9)
|
2014-01-19 21:59:01 +00:00
|
|
|
# remove previously set environment variable
|
2021-10-02 10:21:02 +00:00
|
|
|
del os.environ['SEARXNG_SETTINGS_PATH']
|
2014-01-19 21:59:01 +00:00
|
|
|
|
2014-01-12 11:40:27 +00:00
|
|
|
|
2016-11-30 17:43:03 +00:00
|
|
|
def run_robot_tests(tests):
|
|
|
|
print('Running {0} tests'.format(len(tests)))
|
|
|
|
for test in tests:
|
2021-08-03 13:11:02 +00:00
|
|
|
with Browser('firefox', headless=True, profile_preferences={'intl.accept_languages': 'en'}) as browser:
|
2016-11-30 17:43:03 +00:00
|
|
|
test(browser)
|
2014-01-12 11:40:27 +00:00
|
|
|
|
|
|
|
|
2021-09-02 14:01:34 +00: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 11:23:36 +00:00
|
|
|
|
2016-01-02 11:15:47 +00:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2021-09-02 14:01:34 +00:00
|
|
|
main()
|