X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c56c09e2c03a4e48116aef06fad005a4f21b98d7..19e9748874afa4419d89cc36e12613ad57ee867a:/test/bdd/environment.py diff --git a/test/bdd/environment.py b/test/bdd/environment.py index 3ce3c83a..6411d011 100644 --- a/test/bdd/environment.py +++ b/test/bdd/environment.py @@ -4,17 +4,18 @@ import os import psycopg2 import psycopg2.extras import subprocess +from nose.tools import * # for assert functions from sys import version_info as python_version logger = logging.getLogger(__name__) userconfig = { - 'BASEURL' : 'http://localhost/nominatim', - 'BUILDDIR' : '../build', + 'BUILDDIR' : os.path.join(os.path.split(__file__)[0], "../../build"), 'REMOVE_TEMPLATE' : False, 'KEEP_TEST_DB' : False, 'TEMPLATE_DB' : 'test_template_nominatim', 'TEST_DB' : 'test_nominatim', + 'API_TEST_DB' : 'test_api_nominatim', 'TEST_SETTINGS_FILE' : '/tmp/nominatim_settings.php' } @@ -28,6 +29,7 @@ class NominatimEnvironment(object): self.build_dir = os.path.abspath(config['BUILDDIR']) self.template_db = config['TEMPLATE_DB'] self.test_db = config['TEST_DB'] + self.api_test_db = config['API_TEST_DB'] self.local_settings_file = config['TEST_SETTINGS_FILE'] self.reuse_template = not config['REMOVE_TEMPLATE'] self.keep_scenario_db = config['KEEP_TEST_DB'] @@ -97,7 +99,8 @@ class NominatimEnvironment(object): 'create-partition-tables', 'create-partition-functions', 'load-data', 'create-search-indices') - + def setup_api_db(self, context): + self.write_nominatim_config(self.api_test_db) def setup_db(self, context): self.setup_template_db() @@ -121,12 +124,17 @@ class NominatimEnvironment(object): if not self.keep_scenario_db: self.db_drop_database(self.test_db) - def run_setup_script(self, *args): - self.run_nominatim_script('setup', *args) + def run_setup_script(self, *args, **kwargs): + self.run_nominatim_script('setup', *args, **kwargs) + + def run_update_script(self, *args, **kwargs): + self.run_nominatim_script('update', *args, **kwargs) - def run_nominatim_script(self, script, *args): + def run_nominatim_script(self, script, *args, **kwargs): cmd = [os.path.join(self.build_dir, 'utils', '%s.php' % script)] cmd.extend(['--%s' % x for x in args]) + for k, v in kwargs.items(): + cmd.extend(('--' + k.replace('_', '-'), str(v))) proc = subprocess.Popen(cmd, cwd=self.build_dir, stdout=subprocess.PIPE, stderr=subprocess.PIPE) (outp, outerr) = proc.communicate() @@ -140,15 +148,53 @@ class OSMDataFactory(object): scriptpath = os.path.dirname(os.path.abspath(__file__)) self.scene_path = os.environ.get('SCENE_PATH', os.path.join(scriptpath, '..', 'scenes', 'data')) + self.scene_cache = {} + + def parse_geometry(self, geom, scene): + if geom.find(':') >= 0: + out = self.get_scene_geometry(scene, geom) + elif geom.find(',') < 0: + out = "'POINT(%s)'::geometry" % geom + elif geom.find('(') < 0: + out = "'LINESTRING(%s)'::geometry" % geom + else: + out = "'POLYGON(%s)'::geometry" % geom + + return "ST_SetSRID(%s, 4326)" % out + + def get_scene_geometry(self, default_scene, name): + geoms = [] + for obj in name.split('+'): + oname = obj.strip() + if oname.startswith(':'): + assert_is_not_none(default_scene, "You need to set a scene") + defscene = self.load_scene(default_scene) + wkt = defscene[oname[1:]] + else: + scene, obj = oname.split(':', 2) + scene_geoms = self.load_scene(scene) + wkt = scene_geoms[obj] + + geoms.append("'%s'::geometry" % wkt) + + if len(geoms) == 1: + return geoms[0] + else: + return 'ST_LineMerge(ST_Collect(ARRAY[%s]))' % ','.join(geoms) - def make_geometry(self, geom): - if geom.find(',') < 0: - return 'POINT(%s)' % geom + def load_scene(self, name): + if name in self.scene_cache: + return self.scene_cache[name] - if geom.find('(') < 0: - return 'LINESTRING(%s)' % geom + scene = {} + with open(os.path.join(self.scene_path, "%s.wkt" % name), 'r') as fd: + for line in fd: + if line.strip(): + obj, wkt = line.split('|', 2) + scene[obj.strip()] = wkt.strip() + self.scene_cache[name] = scene - return 'POLYGON(%s)' % geom + return scene def before_all(context): @@ -169,6 +215,9 @@ def after_all(context): def before_scenario(context, scenario): if 'DB' in context.tags: context.nominatim.setup_db(context) + elif 'APIDB' in context.tags: + context.nominatim.setup_api_db(context) + context.scene = None def after_scenario(context, scenario): if 'DB' in context.tags: