2 Tests for command line interface wrapper.
8 import nominatim.indexer.indexer
10 def call_nominatim(*args):
11 return nominatim.cli.nominatim(module_dir='build/module',
12 osm2pgsql_path='build/osm2pgsql/osm2pgsql',
15 phpcgi_path='/usr/bin/php-cgi',
18 class MockParamCapture:
19 """ Mock that records the parameters with which a function was called
20 as well as the number of calls.
26 def __call__(self, *args, **kwargs):
29 self.last_kwargs = kwargs
30 return self.return_value
33 def mock_run_legacy(monkeypatch):
34 mock = MockParamCapture()
35 monkeypatch.setattr(nominatim.cli, 'run_legacy_script', mock)
39 def mock_run_api(monkeypatch):
40 mock = MockParamCapture()
41 monkeypatch.setattr(nominatim.cli, 'run_api_script', mock)
45 def test_cli_help(capsys):
46 """ Running nominatim tool without arguments prints help.
48 assert 1 == call_nominatim()
50 captured = capsys.readouterr()
51 assert captured.out.startswith('usage:')
54 @pytest.mark.parametrize("command,script", [
55 (('import', '--continue', 'load-data'), 'setup'),
56 (('freeze',), 'setup'),
57 (('special-phrases',), 'specialphrases'),
58 (('replication',), 'update'),
59 (('add-data', '--tiger-data', 'tiger'), 'setup'),
60 (('add-data', '--file', 'foo.osm'), 'update'),
61 (('check-database',), 'check_import_finished'),
63 (('export',), 'export')
65 def test_legacy_commands_simple(mock_run_legacy, command, script):
66 assert 0 == call_nominatim(*command)
68 assert mock_run_legacy.called == 1
69 assert mock_run_legacy.last_args[0] == script + '.php'
72 @pytest.mark.parametrize("name,oid", [('file', 'foo.osm'), ('diff', 'foo.osc'),
73 ('node', 12), ('way', 8), ('relation', 32)])
74 def test_add_data_command(mock_run_legacy, name, oid):
75 assert 0 == call_nominatim('add-data', '--' + name, str(oid))
77 assert mock_run_legacy.called == 1
78 assert mock_run_legacy.last_args == ('update.php', '--import-' + name, oid)
81 @pytest.mark.parametrize("params,do_bnds,do_ranks", [
83 (['--boundaries-only'], 1, 0),
84 (['--no-boundaries'], 0, 1),
85 (['--boundaries-only', '--no-boundaries'], 0, 0)])
86 def test_index_command(monkeypatch, temp_db, params, do_bnds, do_ranks):
87 with psycopg2.connect(database=temp_db) as conn:
88 with conn.cursor() as cur:
89 cur.execute("CREATE TABLE import_status (indexed bool)")
90 bnd_mock = MockParamCapture()
91 monkeypatch.setattr(nominatim.indexer.indexer.Indexer, 'index_boundaries', bnd_mock)
92 rank_mock = MockParamCapture()
93 monkeypatch.setattr(nominatim.indexer.indexer.Indexer, 'index_by_rank', rank_mock)
95 assert 0 == call_nominatim('index', *params)
97 assert bnd_mock.called == do_bnds
98 assert rank_mock.called == do_ranks
101 @pytest.mark.parametrize("command,params", [
102 ('postcodes', ('update.php', '--calculate-postcodes')),
103 ('word-counts', ('update.php', '--recompute-word-counts')),
104 ('address-levels', ('update.php', '--update-address-levels')),
105 ('functions', ('setup.php',)),
106 ('wiki-data', ('setup.php', '--import-wikipedia-articles')),
107 ('importance', ('update.php', '--recompute-importance')),
108 ('website', ('setup.php', '--setup-website')),
110 def test_refresh_command(mock_run_legacy, command, params):
111 assert 0 == call_nominatim('refresh', '--' + command)
113 assert mock_run_legacy.called == 1
114 assert len(mock_run_legacy.last_args) >= len(params)
115 assert mock_run_legacy.last_args[:len(params)] == params
118 def test_refresh_importance_computed_after_wiki_import(mock_run_legacy):
119 assert 0 == call_nominatim('refresh', '--importance', '--wiki-data')
121 assert mock_run_legacy.called == 2
122 assert mock_run_legacy.last_args == ('update.php', '--recompute-importance')
125 @pytest.mark.parametrize("params", [
126 ('search', '--query', 'new'),
127 ('reverse', '--lat', '0', '--lon', '0'),
128 ('lookup', '--id', 'N1'),
129 ('details', '--node', '1'),
130 ('details', '--way', '1'),
131 ('details', '--relation', '1'),
132 ('details', '--place_id', '10001'),
135 def test_api_commands_simple(mock_run_api, params):
136 assert 0 == call_nominatim(*params)
138 assert mock_run_api.called == 1
139 assert mock_run_api.last_args[0] == params[0]