]> git.openstreetmap.org Git - nominatim.git/blob - test/bdd/environment.py
release 4.5.0.post7
[nominatim.git] / test / bdd / environment.py
1 # SPDX-License-Identifier: GPL-3.0-or-later
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2024 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 from pathlib import Path
8 import sys
9
10 from behave import *
11
12 sys.path.insert(1, str(Path(__file__, '..', '..', '..', 'src').resolve()))
13
14 from steps.geometry_factory import GeometryFactory
15 from steps.nominatim_environment import NominatimEnvironment
16
17 TEST_BASE_DIR = Path(__file__, '..', '..').resolve()
18
19 userconfig = {
20     'REMOVE_TEMPLATE' : False,
21     'KEEP_TEST_DB' : False,
22     'DB_HOST' : None,
23     'DB_PORT' : None,
24     'DB_USER' : None,
25     'DB_PASS' : None,
26     'TEMPLATE_DB' : 'test_template_nominatim',
27     'TEST_DB' : 'test_nominatim',
28     'API_TEST_DB' : 'test_api_nominatim',
29     'API_TEST_FILE'  : TEST_BASE_DIR / 'testdb' / 'apidb-test-data.pbf',
30     'TOKENIZER' : None, # Test with a custom tokenizer
31     'STYLE' : 'extratags',
32     'API_ENGINE': 'falcon'
33 }
34
35 use_step_matcher("re")
36
37 def before_all(context):
38     # logging setup
39     context.config.setup_logging()
40     # set up -D options
41     for k,v in userconfig.items():
42         context.config.userdata.setdefault(k, v)
43     # Nominatim test setup
44     context.nominatim = NominatimEnvironment(context.config.userdata)
45     context.osm = GeometryFactory()
46
47
48 def before_scenario(context, scenario):
49     if not 'SQLITE' in context.tags \
50        and context.config.userdata['API_TEST_DB'].startswith('sqlite:'):
51         context.scenario.skip("Not usable with Sqlite database.")
52     elif 'DB' in context.tags:
53         context.nominatim.setup_db(context)
54     elif 'APIDB' in context.tags:
55         context.nominatim.setup_api_db()
56     elif 'UNKNOWNDB' in context.tags:
57         context.nominatim.setup_unknown_db()
58
59 def after_scenario(context, scenario):
60     if 'DB' in context.tags:
61         context.nominatim.teardown_db(context)