X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/c56c09e2c03a4e48116aef06fad005a4f21b98d7..0f196952259baddb77bd1c60ffc3b5ef214da179:/test/bdd/environment.py diff --git a/test/bdd/environment.py b/test/bdd/environment.py index 3ce3c83a..afaa5151 100644 --- a/test/bdd/environment.py +++ b/test/bdd/environment.py @@ -1,176 +1,70 @@ +# SPDX-License-Identifier: GPL-2.0-only +# +# This file is part of Nominatim. (https://nominatim.org) +# +# Copyright (C) 2022 by the Nominatim developer community. +# For a full list of authors see the git log. +from pathlib import Path + from behave import * -import logging -import os -import psycopg2 -import psycopg2.extras -import subprocess -from sys import version_info as python_version -logger = logging.getLogger(__name__) +from steps.geometry_factory import GeometryFactory +from steps.nominatim_environment import NominatimEnvironment + +TEST_BASE_DIR = Path(__file__) / '..' / '..' userconfig = { - 'BASEURL' : 'http://localhost/nominatim', - 'BUILDDIR' : '../build', + 'BUILDDIR' : (TEST_BASE_DIR / '..' / 'build').resolve(), 'REMOVE_TEMPLATE' : False, 'KEEP_TEST_DB' : False, + 'DB_HOST' : None, + 'DB_PORT' : None, + 'DB_USER' : None, + 'DB_PASS' : None, 'TEMPLATE_DB' : 'test_template_nominatim', 'TEST_DB' : 'test_nominatim', - 'TEST_SETTINGS_FILE' : '/tmp/nominatim_settings.php' + 'API_TEST_DB' : 'test_api_nominatim', + 'API_TEST_FILE' : (TEST_BASE_DIR / 'testdb' / 'apidb-test-data.pbf').resolve(), + 'SERVER_MODULE_PATH' : None, + 'TOKENIZER' : None, # Test with a custom tokenizer + 'STYLE' : 'extratags', + 'API_ENGINE': 'php', + 'PHPCOV' : False, # set to output directory to enable code coverage } use_step_matcher("re") -class NominatimEnvironment(object): - """ Collects all functions for the execution of Nominatim functions. - """ - - def __init__(self, config): - self.build_dir = os.path.abspath(config['BUILDDIR']) - self.template_db = config['TEMPLATE_DB'] - self.test_db = config['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'] - os.environ['NOMINATIM_SETTINGS'] = self.local_settings_file - - self.template_db_done = False - - def write_nominatim_config(self, dbname): - f = open(self.local_settings_file, 'w') - f.write("') - logger.debug("running osm2pgsql for template: %s\n%s\n%s" % (osm2pgsql, outstr, errstr)) - self.run_setup_script('create-functions', 'create-tables', - 'create-partition-tables', 'create-partition-functions', - 'load-data', 'create-search-indices') - - - - def setup_db(self, context): - self.setup_template_db() - self.write_nominatim_config(self.test_db) - conn = psycopg2.connect(database=self.template_db) - conn.set_isolation_level(0) - cur = conn.cursor() - cur.execute('DROP DATABASE IF EXISTS %s' % (self.test_db, )) - cur.execute('CREATE DATABASE %s TEMPLATE = %s' % (self.test_db, self.template_db)) - conn.close() - context.db = psycopg2.connect(database=self.test_db) - if python_version[0] < 3: - psycopg2.extras.register_hstore(context.db, globally=False, unicode=True) - else: - psycopg2.extras.register_hstore(context.db, globally=False) - - def teardown_db(self, context): - if 'db' in context: - context.db.close() - - 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_nominatim_script(self, script, *args): - cmd = [os.path.join(self.build_dir, 'utils', '%s.php' % script)] - cmd.extend(['--%s' % x for x in args]) - proc = subprocess.Popen(cmd, cwd=self.build_dir, - stdout=subprocess.PIPE, stderr=subprocess.PIPE) - (outp, outerr) = proc.communicate() - logger.debug("run_nominatim_script: %s\n%s\n%s" % (cmd, outp, outerr)) - assert (proc.returncode == 0), "Script '%s' failed:\n%s\n%s\n" % (script, outp, outerr) - - -class OSMDataFactory(object): - - def __init__(self): - scriptpath = os.path.dirname(os.path.abspath(__file__)) - self.scene_path = os.environ.get('SCENE_PATH', - os.path.join(scriptpath, '..', 'scenes', 'data')) - - def make_geometry(self, geom): - if geom.find(',') < 0: - return 'POINT(%s)' % geom - - if geom.find('(') < 0: - return 'LINESTRING(%s)' % geom - - return 'POLYGON(%s)' % geom - - def before_all(context): # logging setup context.config.setup_logging() # set up -D options for k,v in userconfig.items(): context.config.userdata.setdefault(k, v) - logging.debug('User config: %s' %(str(context.config.userdata))) # Nominatim test setup context.nominatim = NominatimEnvironment(context.config.userdata) - context.osm = OSMDataFactory() - -def after_all(context): - context.nominatim.cleanup() + context.osm = GeometryFactory() 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() + elif 'UNKNOWNDB' in context.tags: + context.nominatim.setup_unknown_db() def after_scenario(context, scenario): if 'DB' in context.tags: context.nominatim.teardown_db(context) + +def before_tag(context, tag): + if tag == 'fail-legacy': + if context.config.userdata['TOKENIZER'] == 'legacy': + context.scenario.skip("Not implemented in legacy tokenizer") + if tag == 'v1-api-php-only': + if context.config.userdata['API_ENGINE'] != 'php': + context.scenario.skip("Only valid with PHP version of v1 API.") + if tag == 'v1-api-python-only': + if context.config.userdata['API_ENGINE'] == 'php': + context.scenario.skip("Only valid with Python version of v1 API.")