2 Tests for database integrity checks.
6 from nominatim.tools import check_database as chkdb
8 def test_check_database_unknown_db(def_config, monkeypatch):
9 monkeypatch.setenv('NOMINATIM_DATABASE_DSN', 'pgsql:dbname=fjgkhughwgh2423gsags')
10 assert 1 == chkdb.check_database(def_config)
13 def test_check_database_fatal_test(def_config, temp_db):
14 assert 1 == chkdb.check_database(def_config)
17 def test_check_conection_good(temp_db_conn, def_config):
18 assert chkdb.check_connection(temp_db_conn, def_config) == chkdb.CheckState.OK
21 def test_check_conection_bad(def_config):
22 badconn = chkdb._BadConnection('Error')
23 assert chkdb.check_connection(badconn, def_config) == chkdb.CheckState.FATAL
26 def test_check_placex_table_good(temp_db_cursor, temp_db_conn, def_config):
27 temp_db_cursor.execute('CREATE TABLE placex (place_id int)')
28 assert chkdb.check_placex_table(temp_db_conn, def_config) == chkdb.CheckState.OK
31 def test_check_placex_table_bad(temp_db_conn, def_config):
32 assert chkdb.check_placex_table(temp_db_conn, def_config) == chkdb.CheckState.FATAL
35 def test_check_placex_table_size_good(temp_db_cursor, temp_db_conn, def_config):
36 temp_db_cursor.execute('CREATE TABLE placex (place_id int)')
37 temp_db_cursor.execute('INSERT INTO placex VALUES (1), (2)')
38 assert chkdb.check_placex_size(temp_db_conn, def_config) == chkdb.CheckState.OK
41 def test_check_placex_table_size_bad(temp_db_cursor, temp_db_conn, def_config):
42 temp_db_cursor.execute('CREATE TABLE placex (place_id int)')
43 assert chkdb.check_placex_size(temp_db_conn, def_config) == chkdb.CheckState.FATAL
46 def test_check_tokenizer_missing(temp_db_conn, def_config, tmp_path):
47 def_config.project_dir = tmp_path
48 assert chkdb.check_tokenizer(temp_db_conn, def_config) == chkdb.CheckState.FAIL
51 @pytest.mark.parametrize("check_result,state", [(None, chkdb.CheckState.OK),
52 ("Something wrong", chkdb.CheckState.FAIL)])
53 def test_check_tokenizer(tokenizer_mock, temp_db_conn, def_config, monkeypatch,
56 def check_database(self):
59 monkeypatch.setattr(chkdb.tokenizer_factory, 'get_tokenizer_for_db',
60 lambda *a, **k: _TestTokenizer())
61 assert chkdb.check_tokenizer(temp_db_conn, def_config) == state
64 def test_check_indexing_good(temp_db_cursor, temp_db_conn, def_config):
65 temp_db_cursor.execute('CREATE TABLE placex (place_id int, indexed_status smallint)')
66 temp_db_cursor.execute('INSERT INTO placex VALUES (1, 0), (2, 0)')
67 assert chkdb.check_indexing(temp_db_conn, def_config) == chkdb.CheckState.OK
70 def test_check_indexing_bad(temp_db_cursor, temp_db_conn, def_config):
71 temp_db_cursor.execute('CREATE TABLE placex (place_id int, indexed_status smallint)')
72 temp_db_cursor.execute('INSERT INTO placex VALUES (1, 0), (2, 2)')
73 assert chkdb.check_indexing(temp_db_conn, def_config) == chkdb.CheckState.FAIL
76 def test_check_database_indexes_bad(temp_db_conn, def_config):
77 assert chkdb.check_database_indexes(temp_db_conn, def_config) == chkdb.CheckState.FAIL
80 def test_check_database_indexes_valid(temp_db_conn, def_config):
81 assert chkdb.check_database_index_valid(temp_db_conn, def_config) == chkdb.CheckState.OK
84 def test_check_tiger_table_disabled(temp_db_conn, def_config, monkeypatch):
85 monkeypatch.setenv('NOMINATIM_USE_US_TIGER_DATA' , 'no')
86 assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.NOT_APPLICABLE
89 def test_check_tiger_table_enabled(temp_db_cursor, temp_db_conn, def_config, monkeypatch):
90 monkeypatch.setenv('NOMINATIM_USE_US_TIGER_DATA' , 'yes')
91 assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.FAIL
93 temp_db_cursor.execute('CREATE TABLE location_property_tiger (place_id int)')
94 assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.FAIL
96 temp_db_cursor.execute('INSERT INTO location_property_tiger VALUES (1), (2)')
97 assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.OK