1 # SPDX-License-Identifier: GPL-2.0-only
3 # This file is part of Nominatim. (https://nominatim.org)
5 # Copyright (C) 2022 by the Nominatim developer community.
6 # For a full list of authors see the git log.
8 Tests for replication command of command-line interface wrapper.
16 import nominatim.indexer.indexer
17 import nominatim.tools.replication
18 from nominatim.db import status
21 def tokenizer_mock(monkeypatch):
23 def __init__(self, *args, **kwargs):
24 self.update_sql_functions_called = False
25 self.finalize_import_called = False
27 def update_sql_functions(self, *args):
28 self.update_sql_functions_called = True
30 def finalize_import(self, *args):
31 self.finalize_import_called = True
33 tok = DummyTokenizer()
34 monkeypatch.setattr(nominatim.tokenizer.factory, 'get_tokenizer_for_db',
36 monkeypatch.setattr(nominatim.tokenizer.factory, 'create_tokenizer',
44 def init_status(temp_db_conn, status_table):
45 status.set_status(temp_db_conn, date=dt.datetime.now(dt.timezone.utc), seq=1)
49 def index_mock(mock_func_factory, tokenizer_mock, init_status):
50 return mock_func_factory(nominatim.indexer.indexer.Indexer, 'index_full')
54 def update_mock(mock_func_factory, init_status, tokenizer_mock):
55 return mock_func_factory(nominatim.tools.replication, 'update')
58 class TestCliReplication:
60 @pytest.fixture(autouse=True)
61 def setup_cli_call(self, cli_call, temp_db):
62 self.call_nominatim = lambda *args: cli_call('replication', *args)
65 @pytest.fixture(autouse=True)
66 def setup_update_function(self, monkeypatch):
67 def _mock_updates(states):
68 monkeypatch.setattr(nominatim.tools.replication, 'update',
69 lambda *args, **kwargs: states.pop())
71 self.update_states = _mock_updates
74 @pytest.mark.parametrize("params,func", [
75 (('--init',), 'init_replication'),
76 (('--init', '--no-update-functions'), 'init_replication'),
77 (('--check-for-updates',), 'check_for_updates')
79 def test_replication_command(self, mock_func_factory, params, func):
80 func_mock = mock_func_factory(nominatim.tools.replication, func)
82 if params == ('--init',):
83 umock = mock_func_factory(nominatim.tools.refresh, 'create_functions')
85 assert self.call_nominatim(*params) == 0
86 assert func_mock.called == 1
87 if params == ('--init',):
88 assert umock.called == 1
91 def test_replication_update_bad_interval(self, monkeypatch):
92 monkeypatch.setenv('NOMINATIM_REPLICATION_UPDATE_INTERVAL', 'xx')
94 assert self.call_nominatim() == 1
97 def test_replication_update_bad_interval_for_geofabrik(self, monkeypatch):
98 monkeypatch.setenv('NOMINATIM_REPLICATION_URL',
99 'https://download.geofabrik.de/europe/italy-updates')
101 assert self.call_nominatim() == 1
104 def test_replication_update_continuous_no_index(self):
105 assert self.call_nominatim('--no-index') == 1
107 def test_replication_update_once_no_index(self, update_mock):
108 assert self.call_nominatim('--once', '--no-index') == 0
110 assert str(update_mock.last_args[1]['osm2pgsql']) == 'OSM2PGSQL NOT AVAILABLE'
113 def test_replication_update_custom_osm2pgsql(self, monkeypatch, update_mock):
114 monkeypatch.setenv('NOMINATIM_OSM2PGSQL_BINARY', '/secret/osm2pgsql')
115 assert self.call_nominatim('--once', '--no-index') == 0
117 assert str(update_mock.last_args[1]['osm2pgsql']) == '/secret/osm2pgsql'
120 @pytest.mark.parametrize("update_interval", [60, 3600])
121 def test_replication_catchup(self, placex_table, monkeypatch, index_mock, update_interval):
122 monkeypatch.setenv('NOMINATIM_REPLICATION_UPDATE_INTERVAL', str(update_interval))
123 self.update_states([nominatim.tools.replication.UpdateState.NO_CHANGES])
125 assert self.call_nominatim('--catch-up') == 0
128 def test_replication_update_custom_threads(self, update_mock):
129 assert self.call_nominatim('--once', '--no-index', '--threads', '4') == 0
131 assert update_mock.last_args[1]['threads'] == 4
134 def test_replication_update_continuous(self, index_mock):
135 self.update_states([nominatim.tools.replication.UpdateState.UP_TO_DATE,
136 nominatim.tools.replication.UpdateState.UP_TO_DATE])
138 with pytest.raises(IndexError):
139 self.call_nominatim()
141 assert index_mock.called == 2
144 def test_replication_update_continuous_no_change(self, mock_func_factory,
146 self.update_states([nominatim.tools.replication.UpdateState.NO_CHANGES,
147 nominatim.tools.replication.UpdateState.UP_TO_DATE])
149 sleep_mock = mock_func_factory(time, 'sleep')
151 with pytest.raises(IndexError):
152 self.call_nominatim()
154 assert index_mock.called == 1
155 assert sleep_mock.called == 1
156 assert sleep_mock.last_args[0] == 60