1 # SPDX-License-Identifier: GPL-3.0-or-later
3 # This file is part of Nominatim. (https://nominatim.org)
5 # Copyright (C) 2026 by the Nominatim developer community.
6 # For a full list of authors see the git log.
8 Tests for database integrity checks.
12 from nominatim_db.tools import check_database as chkdb
13 import nominatim_db.version
16 def test_check_database_unknown_db(def_config, monkeypatch):
17 monkeypatch.setenv('NOMINATIM_DATABASE_DSN', 'pgsql:dbname=fjgkhughwgh2423gsags')
18 assert chkdb.check_database(def_config) == 1
21 def test_check_database_fatal_test(def_config, temp_db):
22 assert chkdb.check_database(def_config) == 1
25 def test_check_connection_good(temp_db_conn, def_config):
26 assert chkdb.check_connection(temp_db_conn, def_config) == chkdb.CheckState.OK
29 def test_check_connection_bad(def_config):
30 badconn = chkdb._BadConnection('Error')
31 assert chkdb.check_connection(badconn, def_config) == chkdb.CheckState.FATAL
34 def test_check_database_version_not_found(property_table, temp_db_conn, def_config):
35 assert chkdb.check_database_version(temp_db_conn, def_config) == chkdb.CheckState.FATAL
38 def test_check_database_version_good(property_table, temp_db_conn, def_config):
39 property_table.set('database_version',
40 str(nominatim_db.version.NOMINATIM_VERSION))
41 assert chkdb.check_database_version(temp_db_conn, def_config) == chkdb.CheckState.OK
44 def test_check_database_version_bad(property_table, temp_db_conn, def_config):
45 property_table.set('database_version', '3.9.9-9')
46 assert chkdb.check_database_version(temp_db_conn, def_config) == chkdb.CheckState.FATAL
49 def test_check_placex_table_good(placex_table, temp_db_conn, def_config):
50 assert chkdb.check_placex_table(temp_db_conn, def_config) == chkdb.CheckState.OK
53 def test_check_placex_table_bad(temp_db_conn, def_config):
54 assert chkdb.check_placex_table(temp_db_conn, def_config) == chkdb.CheckState.FATAL
57 def test_check_placex_table_size_good(placex_row, temp_db_conn, def_config):
60 assert chkdb.check_placex_size(temp_db_conn, def_config) == chkdb.CheckState.OK
63 def test_check_placex_table_size_bad(placex_table, temp_db_conn, def_config):
64 assert chkdb.check_placex_size(temp_db_conn, def_config) == chkdb.CheckState.FATAL
67 def test_check_tokenizer_missing(temp_db_conn, def_config, tmp_path):
68 def_config.project_dir = tmp_path
69 assert chkdb.check_tokenizer(temp_db_conn, def_config) == chkdb.CheckState.FAIL
72 @pytest.mark.parametrize("check_result,state", [(None, chkdb.CheckState.OK),
73 ("Something wrong", chkdb.CheckState.FAIL)])
74 def test_check_tokenizer(temp_db_conn, def_config, monkeypatch,
78 def check_database(_):
81 monkeypatch.setattr(chkdb.tokenizer_factory, 'get_tokenizer_for_db',
82 lambda *a, **k: _TestTokenizer())
83 assert chkdb.check_tokenizer(temp_db_conn, def_config) == state
86 def test_check_indexing_good(placex_row, temp_db_conn, def_config):
88 placex_row(indexed_status=0)
89 assert chkdb.check_indexing(temp_db_conn, def_config) == chkdb.CheckState.OK
92 def test_check_indexing_bad(placex_row, temp_db_conn, def_config):
94 placex_row(indexed_status=status)
95 assert chkdb.check_indexing(temp_db_conn, def_config) == chkdb.CheckState.FAIL
98 def test_check_indexing_bad_frozen(placex_row, temp_db_conn, def_config):
100 placex_row(indexed_status=status)
101 temp_db_conn.execute('DROP TABLE place')
102 assert chkdb.check_indexing(temp_db_conn, def_config) == chkdb.CheckState.WARN
105 def test_check_database_indexes_bad(temp_db_conn, def_config):
106 assert chkdb.check_database_indexes(temp_db_conn, def_config) == chkdb.CheckState.FAIL
109 def test_check_database_indexes_valid(temp_db_conn, def_config):
110 assert chkdb.check_database_index_valid(temp_db_conn, def_config) == chkdb.CheckState.OK
113 def test_check_tiger_table_disabled(temp_db_conn, def_config, monkeypatch):
114 monkeypatch.setenv('NOMINATIM_USE_US_TIGER_DATA', 'no')
115 assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.NOT_APPLICABLE
118 def test_check_tiger_table_enabled(temp_db_cursor, temp_db_conn, def_config, monkeypatch):
119 monkeypatch.setenv('NOMINATIM_USE_US_TIGER_DATA', 'yes')
120 assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.FAIL
122 temp_db_cursor.execute('CREATE TABLE location_property_tiger (place_id int)')
123 assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.FAIL
125 temp_db_cursor.execute('INSERT INTO location_property_tiger VALUES (1), (2)')
126 assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.OK