]> git.openstreetmap.org Git - nominatim.git/blobdiff - test/bdd/environment.py
release 4.5.0.post1
[nominatim.git] / test / bdd / environment.py
index aeee2301bb6c063d8efcc7b73d01d698c99a541f..7535c5086133a1e9dd2a4ffb62c1f48ec278850a 100644 (file)
@@ -1,11 +1,22 @@
-from behave import *
+# SPDX-License-Identifier: GPL-3.0-or-later
+#
+# This file is part of Nominatim. (https://nominatim.org)
+#
+# Copyright (C) 2024 by the Nominatim developer community.
+# For a full list of authors see the git log.
 from pathlib import Path
+import sys
+
+from behave import *
+
+sys.path.insert(1, str(Path(__file__, '..', '..', '..', 'src').resolve()))
 
 from steps.geometry_factory import GeometryFactory
 from steps.nominatim_environment import NominatimEnvironment
 
+TEST_BASE_DIR = Path(__file__, '..', '..').resolve()
+
 userconfig = {
-    'BUILDDIR' : (Path(__file__) / '..' / '..' / '..' / 'build').resolve(),
     'REMOVE_TEMPLATE' : False,
     'KEEP_TEST_DB' : False,
     'DB_HOST' : None,
@@ -15,8 +26,10 @@ userconfig = {
     'TEMPLATE_DB' : 'test_template_nominatim',
     'TEST_DB' : 'test_nominatim',
     'API_TEST_DB' : 'test_api_nominatim',
-    'SERVER_MODULE_PATH' : None,
-    'PHPCOV' : False, # set to output directory to enable code coverage
+    'API_TEST_FILE'  : TEST_BASE_DIR / 'testdb' / 'apidb-test-data.pbf',
+    'TOKENIZER' : None, # Test with a custom tokenizer
+    'STYLE' : 'extratags',
+    'API_ENGINE': 'falcon'
 }
 
 use_step_matcher("re")
@@ -33,13 +46,15 @@ def before_all(context):
 
 
 def before_scenario(context, scenario):
-    if 'DB' in context.tags:
+    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:
         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()
-    context.scene = None
 
 def after_scenario(context, scenario):
     if 'DB' in context.tags: