X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/de2a3bd5f8c2a4a40da1f2153afdb69e387dbcd2..2bab0ca060ff224091b20a0ac808a3febaba04b1:/test/bdd/environment.py diff --git a/test/bdd/environment.py b/test/bdd/environment.py index 7a7b943d..460f3569 100644 --- a/test/bdd/environment.py +++ b/test/bdd/environment.py @@ -28,6 +28,7 @@ userconfig = { 'SERVER_MODULE_PATH' : None, 'TOKENIZER' : None, # Test with a custom tokenizer 'STYLE' : 'extratags', + 'API_ENGINE': 'falcon', 'PHPCOV' : False, # set to output directory to enable code coverage } @@ -45,7 +46,10 @@ 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() @@ -61,3 +65,9 @@ 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.")