| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | # -*- coding: utf-8 -*- | 
					
						
							|  |  |  | """Shared testing code.""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from plone.testing import Layer | 
					
						
							|  |  |  | from unittest2 import TestCase | 
					
						
							| 
									
										
										
										
											2016-01-02 12:15:47 +01:00
										 |  |  | from os.path import dirname, join, abspath | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import subprocess | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SearxTestLayer: | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  |     """Base layer for non-robot tests.""" | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01: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) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class SearxRobotLayer(Layer): | 
					
						
							|  |  |  |     """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 | 
					
						
							| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  |         webapp = os.path.join( | 
					
						
							|  |  |  |             os.path.abspath(os.path.dirname(os.path.realpath(__file__))), | 
					
						
							|  |  |  |             'webapp.py' | 
					
						
							|  |  |  |         ) | 
					
						
							| 
									
										
										
										
											2016-01-02 12:15:47 +01:00
										 |  |  |         exe = 'python' | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     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
										 |  |  | 
 | 
					
						
							|  |  |  | SEARXROBOTLAYER = SearxRobotLayer() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     from tests.test_robot import test_suite | 
					
						
							|  |  |  |     import sys | 
					
						
							|  |  |  |     from zope.testrunner.runner import Runner | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     base_dir = abspath(join(dirname(__file__), '../tests')) | 
					
						
							|  |  |  |     if sys.argv[1] == 'robot': | 
					
						
							| 
									
										
										
										
											2016-02-27 18:41:09 +01:00
										 |  |  |         r = Runner(['--color', | 
					
						
							|  |  |  |                     '--auto-progress', | 
					
						
							|  |  |  |                     '--stop-on-error', | 
					
						
							|  |  |  |                     '--path', | 
					
						
							|  |  |  |                     base_dir], | 
					
						
							| 
									
										
										
										
											2016-02-27 19:07:53 +01:00
										 |  |  |                    found_suites=[test_suite()]) | 
					
						
							| 
									
										
										
										
											2016-02-27 18:41:09 +01:00
										 |  |  |         r.run() | 
					
						
							|  |  |  |         sys.exit(int(r.failed)) |