]> git.openstreetmap.org Git - nominatim.git/blob - test/bdd/environment.py
664b5ac79e7d2013182ebff5036f04889870f586
[nominatim.git] / test / bdd / environment.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2022 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 from pathlib import Path
8
9 from behave import *
10
11 from steps.geometry_factory import GeometryFactory
12 from steps.nominatim_environment import NominatimEnvironment
13
14 TEST_BASE_DIR = Path(__file__) / '..' / '..'
15
16 userconfig = {
17     'BUILDDIR' : (TEST_BASE_DIR / '..' / 'build').resolve(),
18     'REMOVE_TEMPLATE' : False,
19     'KEEP_TEST_DB' : False,
20     'DB_HOST' : None,
21     'DB_PORT' : None,
22     'DB_USER' : None,
23     'DB_PASS' : None,
24     'TEMPLATE_DB' : 'test_template_nominatim',
25     'TEST_DB' : 'test_nominatim',
26     'API_TEST_DB' : 'test_api_nominatim',
27     'API_TEST_FILE'  : (TEST_BASE_DIR / 'testdb' / 'apidb-test-data.pbf').resolve(),
28     'SERVER_MODULE_PATH' : None,
29     'TOKENIZER' : None, # Test with a custom tokenizer
30     'STYLE' : 'extratags',
31     'API_ENGINE': 'php',
32     'PHPCOV' : False, # set to output directory to enable code coverage
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)
62
63
64 def before_tag(context, tag):
65     if tag == 'fail-legacy':
66         if context.config.userdata['TOKENIZER'] == 'legacy':
67             context.scenario.skip("Not implemented in legacy tokenizer")
68     if tag == 'v1-api-php-only':
69         if context.config.userdata['API_ENGINE'] != 'php':
70             context.scenario.skip("Only valid with PHP version of v1 API.")
71     if tag == 'v1-api-python-only':
72         if context.config.userdata['API_ENGINE'] == 'php':
73             context.scenario.skip("Only valid with Python version of v1 API.")