2022-01-03 18:23:58 +03:00
|
|
|
# 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.
|
2021-01-04 19:54:51 +03:00
|
|
|
from pathlib import Path
|
2016-08-31 09:46:48 +03:00
|
|
|
|
2021-01-14 20:19:22 +03:00
|
|
|
from behave import *
|
|
|
|
|
2021-01-04 18:29:15 +03:00
|
|
|
from steps.geometry_factory import GeometryFactory
|
2021-01-04 19:54:51 +03:00
|
|
|
from steps.nominatim_environment import NominatimEnvironment
|
2016-08-31 09:46:48 +03:00
|
|
|
|
2021-01-07 13:51:38 +03:00
|
|
|
TEST_BASE_DIR = Path(__file__) / '..' / '..'
|
|
|
|
|
2016-08-31 09:46:48 +03:00
|
|
|
userconfig = {
|
2021-01-07 13:51:38 +03:00
|
|
|
'BUILDDIR' : (TEST_BASE_DIR / '..' / 'build').resolve(),
|
2016-08-31 09:46:48 +03:00
|
|
|
'REMOVE_TEMPLATE' : False,
|
|
|
|
'KEEP_TEST_DB' : False,
|
2018-07-18 02:18:33 +03:00
|
|
|
'DB_HOST' : None,
|
2019-01-28 21:33:22 +03:00
|
|
|
'DB_PORT' : None,
|
2018-07-18 02:18:33 +03:00
|
|
|
'DB_USER' : None,
|
|
|
|
'DB_PASS' : None,
|
2016-08-31 09:46:48 +03:00
|
|
|
'TEMPLATE_DB' : 'test_template_nominatim',
|
|
|
|
'TEST_DB' : 'test_nominatim',
|
2016-12-17 19:33:44 +03:00
|
|
|
'API_TEST_DB' : 'test_api_nominatim',
|
2021-01-07 13:51:38 +03:00
|
|
|
'API_TEST_FILE' : (TEST_BASE_DIR / 'testdb' / 'apidb-test-data.pbf').resolve(),
|
2018-07-18 02:18:33 +03:00
|
|
|
'SERVER_MODULE_PATH' : None,
|
2021-05-05 11:00:34 +03:00
|
|
|
'TOKENIZER' : None, # Test with a custom tokenizer
|
2022-10-04 18:01:25 +03:00
|
|
|
'STYLE' : 'extratags',
|
2024-02-15 21:44:04 +03:00
|
|
|
'API_ENGINE': 'falcon',
|
2017-07-17 23:59:13 +03:00
|
|
|
'PHPCOV' : False, # set to output directory to enable code coverage
|
2016-08-31 09:46:48 +03:00
|
|
|
}
|
|
|
|
|
2016-11-07 23:16:28 +03:00
|
|
|
use_step_matcher("re")
|
|
|
|
|
2016-08-31 09:46:48 +03:00
|
|
|
def before_all(context):
|
|
|
|
# logging setup
|
|
|
|
context.config.setup_logging()
|
2016-11-07 23:16:28 +03:00
|
|
|
# set up -D options
|
|
|
|
for k,v in userconfig.items():
|
|
|
|
context.config.userdata.setdefault(k, v)
|
2016-08-31 09:46:48 +03:00
|
|
|
# Nominatim test setup
|
|
|
|
context.nominatim = NominatimEnvironment(context.config.userdata)
|
2021-01-04 18:29:15 +03:00
|
|
|
context.osm = GeometryFactory()
|
2016-08-31 09:46:48 +03:00
|
|
|
|
|
|
|
|
|
|
|
def before_scenario(context, scenario):
|
2023-10-13 22:32:03 +03:00
|
|
|
if not 'SQLITE' in context.tags \
|
|
|
|
and context.config.userdata['API_TEST_DB'].startswith('sqlite:'):
|
|
|
|
context.scenario.skip("Not usable with Sqlite database.")
|
|
|
|
elif 'DB' in context.tags:
|
2016-08-31 09:46:48 +03:00
|
|
|
context.nominatim.setup_db(context)
|
2016-12-17 19:33:44 +03:00
|
|
|
elif 'APIDB' in context.tags:
|
2021-01-04 19:54:51 +03:00
|
|
|
context.nominatim.setup_api_db()
|
2018-05-05 00:37:48 +03:00
|
|
|
elif 'UNKNOWNDB' in context.tags:
|
2021-01-04 19:54:51 +03:00
|
|
|
context.nominatim.setup_unknown_db()
|
2016-08-31 09:46:48 +03:00
|
|
|
|
|
|
|
def after_scenario(context, scenario):
|
|
|
|
if 'DB' in context.tags:
|
|
|
|
context.nominatim.teardown_db(context)
|
2021-12-06 16:26:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
def before_tag(context, tag):
|
|
|
|
if tag == 'fail-legacy':
|
2022-05-10 15:54:50 +03:00
|
|
|
if context.config.userdata['TOKENIZER'] == 'legacy':
|
2021-12-06 16:26:08 +03:00
|
|
|
context.scenario.skip("Not implemented in legacy tokenizer")
|
2023-02-03 23:59:16 +03:00
|
|
|
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.")
|