| 
									
										
										
										
											2014-01-12 12:40:27 +01:00
										 |  |  | # -*- coding: utf-8 -*- | 
					
						
							|  |  |  | """Shared testing code.""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from plone.testing import Layer | 
					
						
							|  |  |  | from unittest2 import TestCase | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 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' | 
					
						
							|  |  |  |         ) | 
					
						
							|  |  |  |         exe = os.path.abspath(os.path.dirname(__file__) + '/../bin/py') | 
					
						
							| 
									
										
										
										
											2014-01-19 22:59:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # set robot settings path | 
					
						
							|  |  |  |         os.environ['SEARX_SETTINGS_PATH'] = os.path.abspath( | 
					
						
							|  |  |  |             os.path.dirname(__file__) + '/settings_robot.yml') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # 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): | 
					
						
							| 
									
										
										
										
											2015-05-02 20:59:50 +02:00
										 |  |  |         os.kill(self.server.pid, 15) | 
					
						
							| 
									
										
										
										
											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 |