2014-01-12 11:40:27 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""Shared testing code."""
|
|
|
|
|
|
|
|
|
|
|
|
import os
|
|
|
|
import subprocess
|
2016-11-30 17:43:03 +00:00
|
|
|
import traceback
|
|
|
|
|
|
|
|
|
|
|
|
from os.path import dirname, join, abspath
|
|
|
|
|
|
|
|
from splinter import Browser
|
|
|
|
from unittest2 import TestCase
|
2014-01-12 11:40:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SearxTestLayer:
|
2014-01-19 21:59:01 +00:00
|
|
|
"""Base layer for non-robot tests."""
|
2014-01-12 11:40:27 +00:00
|
|
|
|
|
|
|
__name__ = u'SearxTestLayer'
|
|
|
|
|
|
|
|
def setUp(cls):
|
|
|
|
pass
|
|
|
|
setUp = classmethod(setUp)
|
|
|
|
|
|
|
|
def tearDown(cls):
|
|
|
|
pass
|
|
|
|
tearDown = classmethod(tearDown)
|
|
|
|
|
|
|
|
def testSetUp(cls):
|
|
|
|
pass
|
|
|
|
testSetUp = classmethod(testSetUp)
|
|
|
|
|
|
|
|
def testTearDown(cls):
|
|
|
|
pass
|
|
|
|
testTearDown = classmethod(testTearDown)
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
# get program paths
|
2014-01-12 11:40:27 +00:00
|
|
|
webapp = os.path.join(
|
|
|
|
os.path.abspath(os.path.dirname(os.path.realpath(__file__))),
|
|
|
|
'webapp.py'
|
|
|
|
)
|
2016-01-02 11:15:47 +00:00
|
|
|
exe = 'python'
|
2014-01-19 21:59:01 +00:00
|
|
|
|
|
|
|
# set robot settings path
|
2016-01-02 11:15:47 +00:00
|
|
|
os.environ['SEARX_SETTINGS_PATH'] = abspath(
|
|
|
|
dirname(__file__) + '/settings_robot.yml')
|
2014-01-19 21:59:01 +00:00
|
|
|
|
|
|
|
# run the server
|
2014-01-12 11:40:27 +00:00
|
|
|
self.server = subprocess.Popen(
|
2014-01-19 21:59:01 +00:00
|
|
|
[exe, webapp],
|
2014-01-12 11:40:27 +00:00
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.STDOUT
|
|
|
|
)
|
|
|
|
|
|
|
|
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
|
|
|
|
del os.environ['SEARX_SETTINGS_PATH']
|
|
|
|
|
2014-01-12 11:40:27 +00:00
|
|
|
|
2016-11-30 17:43:03 +00:00
|
|
|
# SEARXROBOTLAYER = SearxRobotLayer()
|
|
|
|
def run_robot_tests(tests):
|
|
|
|
print('Running {0} tests'.format(len(tests)))
|
|
|
|
for test in tests:
|
|
|
|
with Browser() as browser:
|
|
|
|
test(browser)
|
2014-01-12 11:40:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SearxTestCase(TestCase):
|
2014-01-19 21:59:01 +00:00
|
|
|
"""Base test case for non-robot tests."""
|
|
|
|
|
2014-01-12 11:40:27 +00:00
|
|
|
layer = SearxTestLayer
|
2016-01-02 11:15:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
2016-11-30 17:43:03 +00:00
|
|
|
# test cases
|
|
|
|
from tests import robot
|
2016-01-02 11:15:47 +00:00
|
|
|
|
|
|
|
base_dir = abspath(join(dirname(__file__), '../tests'))
|
|
|
|
if sys.argv[1] == 'robot':
|
2016-11-30 17:43:03 +00: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_')])
|
|
|
|
except Exception:
|
|
|
|
errors = True
|
|
|
|
print('Error occured: {0}'.format(traceback.format_exc()))
|
|
|
|
test_layer.tearDown()
|
|
|
|
sys.exit(1 if errors else 0)
|