]> git.openstreetmap.org Git - nominatim.git/blob - test/python/cli/test_cli.py
Correct some typos
[nominatim.git] / test / python / cli / test_cli.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2022 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Tests for command line interface wrapper.
9
10 These tests just check that the various command line parameters route to the
11 correct functionality. They use a lot of monkeypatching to avoid executing
12 the actual functions.
13 """
14 import importlib
15 import pytest
16
17 import nominatim.indexer.indexer
18 import nominatim.tools.add_osm_data
19 import nominatim.tools.freeze
20
21
22 def test_cli_help(cli_call, capsys):
23     """ Running nominatim tool without arguments prints help.
24     """
25     assert cli_call() == 1
26
27     captured = capsys.readouterr()
28     assert captured.out.startswith('usage:')
29
30 def test_cli_version(cli_call, capsys):
31     """ Running nominatim tool --version prints a version string.
32     """
33     assert cli_call('--version') == 0
34
35     captured = capsys.readouterr()
36     assert captured.out.startswith('Nominatim version')
37
38 @pytest.mark.parametrize("name,oid", [('file', 'foo.osm'), ('diff', 'foo.osc')])
39 def test_cli_add_data_file_command(cli_call, mock_func_factory, name, oid):
40     mock_run_legacy = mock_func_factory(nominatim.tools.add_osm_data, 'add_data_from_file')
41     assert cli_call('add-data', '--' + name, str(oid)) == 0
42
43     assert mock_run_legacy.called == 1
44
45
46 @pytest.mark.parametrize("name,oid", [('node', 12), ('way', 8), ('relation', 32)])
47 def test_cli_add_data_object_command(cli_call, mock_func_factory, name, oid):
48     mock_run_legacy = mock_func_factory(nominatim.tools.add_osm_data, 'add_osm_object')
49     assert cli_call('add-data', '--' + name, str(oid)) == 0
50
51     assert mock_run_legacy.called == 1
52
53
54
55 def test_cli_add_data_tiger_data(cli_call, cli_tokenizer_mock, mock_func_factory):
56     mock = mock_func_factory(nominatim.tools.tiger_data, 'add_tiger_data')
57
58     assert cli_call('add-data', '--tiger-data', 'somewhere') == 0
59
60     assert mock.called == 1
61
62
63 def test_cli_serve_php(cli_call, mock_func_factory):
64     func = mock_func_factory(nominatim.cli, 'run_php_server')
65
66     cli_call('serve', '--engine', 'php') == 0
67
68     assert func.called == 1
69
70
71 def test_cli_serve_starlette_custom_server(cli_call, mock_func_factory):
72     pytest.importorskip("starlette")
73     mod = pytest.importorskip("uvicorn")
74     func = mock_func_factory(mod, "run")
75
76     cli_call('serve', '--engine', 'starlette', '--server', 'foobar:4545') == 0
77
78     assert func.called == 1
79     assert func.last_kwargs['host'] == 'foobar'
80     assert func.last_kwargs['port'] == 4545
81
82
83 def test_cli_serve_starlette_custom_server_bad_port(cli_call, mock_func_factory):
84     pytest.importorskip("starlette")
85     mod = pytest.importorskip("uvicorn")
86     func = mock_func_factory(mod, "run")
87
88     cli_call('serve', '--engine', 'starlette', '--server', 'foobar:45:45') == 1
89
90
91 @pytest.mark.parametrize("engine", ['falcon', 'starlette'])
92 def test_cli_serve_uvicorn_based(cli_call, engine, mock_func_factory):
93     pytest.importorskip(engine)
94     mod = pytest.importorskip("uvicorn")
95     func = mock_func_factory(mod, "run")
96
97     cli_call('serve', '--engine', engine) == 0
98
99     assert func.called == 1
100     assert func.last_kwargs['host'] == '127.0.0.1'
101     assert func.last_kwargs['port'] == 8088
102
103
104 class TestCliWithDb:
105
106     @pytest.fixture(autouse=True)
107     def setup_cli_call(self, cli_call, temp_db, cli_tokenizer_mock):
108         self.call_nominatim = cli_call
109         self.tokenizer_mock = cli_tokenizer_mock
110
111
112     def test_freeze_command(self, mock_func_factory):
113         mock_drop = mock_func_factory(nominatim.tools.freeze, 'drop_update_tables')
114         mock_flatnode = mock_func_factory(nominatim.tools.freeze, 'drop_flatnode_file')
115
116         assert self.call_nominatim('freeze') == 0
117
118         assert mock_drop.called == 1
119         assert mock_flatnode.called == 1
120
121
122     @pytest.mark.parametrize("params,do_bnds,do_ranks", [
123                               ([], 1, 1),
124                               (['--boundaries-only'], 1, 0),
125                               (['--no-boundaries'], 0, 1),
126                               (['--boundaries-only', '--no-boundaries'], 0, 0)])
127     def test_index_command(self, mock_func_factory, table_factory,
128                            params, do_bnds, do_ranks):
129         table_factory('import_status', 'indexed bool')
130         bnd_mock = mock_func_factory(nominatim.indexer.indexer.Indexer, 'index_boundaries')
131         rank_mock = mock_func_factory(nominatim.indexer.indexer.Indexer, 'index_by_rank')
132
133         assert self.call_nominatim('index', *params) == 0
134
135         assert bnd_mock.called == do_bnds
136         assert rank_mock.called == do_ranks
137
138
139     def test_special_phrases_wiki_command(self, mock_func_factory):
140         func = mock_func_factory(nominatim.clicmd.special_phrases.SPImporter, 'import_phrases')
141
142         self.call_nominatim('special-phrases', '--import-from-wiki', '--no-replace')
143
144         assert func.called == 1
145
146
147     def test_special_phrases_csv_command(self, src_dir, mock_func_factory):
148         func = mock_func_factory(nominatim.clicmd.special_phrases.SPImporter, 'import_phrases')
149         testdata = src_dir / 'test' / 'testdb'
150         csv_path = str((testdata / 'full_en_phrases_test.csv').resolve())
151
152         self.call_nominatim('special-phrases', '--import-from-csv', csv_path)
153
154         assert func.called == 1
155
156
157     def test_special_phrases_csv_bad_file(self, src_dir):
158         testdata = src_dir / 'something349053905.csv'
159
160         self.call_nominatim('special-phrases', '--import-from-csv',
161                             str(testdata.resolve())) == 1