mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-14 18:37:58 +00:00
add tests for new data invalidation functions
This commit is contained in:
@@ -14,15 +14,14 @@ import nominatim.clicmd.api
|
||||
|
||||
@pytest.mark.parametrize("endpoint", (('search', 'reverse', 'lookup', 'details', 'status')))
|
||||
def test_no_api_without_phpcgi(src_dir, endpoint):
|
||||
with pytest.raises(SystemExit):
|
||||
nominatim.cli.nominatim(module_dir='MODULE NOT AVAILABLE',
|
||||
osm2pgsql_path='OSM2PGSQL NOT AVAILABLE',
|
||||
phplib_dir=str(src_dir / 'lib-php'),
|
||||
data_dir=str(src_dir / 'data'),
|
||||
phpcgi_path=None,
|
||||
sqllib_dir=str(src_dir / 'lib-sql'),
|
||||
config_dir=str(src_dir / 'settings'),
|
||||
cli_args=[endpoint])
|
||||
assert nominatim.cli.nominatim(module_dir='MODULE NOT AVAILABLE',
|
||||
osm2pgsql_path='OSM2PGSQL NOT AVAILABLE',
|
||||
phplib_dir=str(src_dir / 'lib-php'),
|
||||
data_dir=str(src_dir / 'data'),
|
||||
phpcgi_path=None,
|
||||
sqllib_dir=str(src_dir / 'lib-sql'),
|
||||
config_dir=str(src_dir / 'settings'),
|
||||
cli_args=[endpoint]) == 1
|
||||
|
||||
|
||||
@pytest.mark.parametrize("params", [('search', '--query', 'new'),
|
||||
|
||||
@@ -82,3 +82,24 @@ class TestRefresh:
|
||||
assert self.call_nominatim('refresh', '--importance', '--wiki-data') == 0
|
||||
|
||||
assert calls == ['import', 'update']
|
||||
|
||||
@pytest.mark.parametrize('params', [('--data-object', 'w234'),
|
||||
('--data-object', 'N23', '--data-object', 'N24'),
|
||||
('--data-area', 'R7723'),
|
||||
('--data-area', 'r7723', '--data-area', 'r2'),
|
||||
('--data-area', 'R9284425', '--data-object', 'n1234567894567')])
|
||||
def test_refresh_objects(self, params, mock_func_factory):
|
||||
func_mock = mock_func_factory(nominatim.tools.refresh, 'invalidate_osm_object')
|
||||
|
||||
assert self.call_nominatim('refresh', *params) == 0
|
||||
|
||||
assert func_mock.called == len(params)/2
|
||||
|
||||
|
||||
@pytest.mark.parametrize('func', ('--data-object', '--data-area'))
|
||||
@pytest.mark.parametrize('param', ('234', 'a55', 'R 453', 'Rel'))
|
||||
def test_refresh_objects_bad_param(self, func, param, mock_func_factory):
|
||||
func_mock = mock_func_factory(nominatim.tools.refresh, 'invalidate_osm_object')
|
||||
|
||||
self.call_nominatim('refresh', func, param) == 1
|
||||
assert func_mock.called == 0
|
||||
|
||||
Reference in New Issue
Block a user