mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-15 02:47:59 +00:00
add tests for new data invalidation functions
This commit is contained in:
@@ -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