]> git.openstreetmap.org Git - nominatim.git/blob - test/python/test_tools_check_database.py
a0afb0452b5b7bdff6c965a8970c57132e5a5ade
[nominatim.git] / test / python / test_tools_check_database.py
1 """
2 Tests for database integrity checks.
3 """
4 import pytest
5
6 from nominatim.tools import check_database as chkdb
7
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)
11
12
13 def test_check_database_fatal_test(def_config, temp_db):
14     assert 1 == chkdb.check_database(def_config)
15
16
17 def test_check_conection_good(temp_db_conn, def_config):
18     assert chkdb.check_connection(temp_db_conn, def_config) == chkdb.CheckState.OK
19
20
21 def test_check_conection_bad(def_config):
22     badconn = chkdb._BadConnection('Error')
23     assert chkdb.check_connection(badconn, def_config) == chkdb.CheckState.FATAL
24
25
26 def test_check_placex_table_good(table_factory, temp_db_conn, def_config):
27     table_factory('placex')
28     assert chkdb.check_placex_table(temp_db_conn, def_config) == chkdb.CheckState.OK
29
30
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
33
34
35 def test_check_placex_table_size_good(table_factory, temp_db_conn, def_config):
36     table_factory('placex', content=((1, ), (2, )))
37     assert chkdb.check_placex_size(temp_db_conn, def_config) == chkdb.CheckState.OK
38
39
40 def test_check_placex_table_size_bad(table_factory, temp_db_conn, def_config):
41     table_factory('placex')
42     assert chkdb.check_placex_size(temp_db_conn, def_config) == chkdb.CheckState.FATAL
43
44
45 def test_check_tokenizer_missing(temp_db_conn, def_config, tmp_path):
46     def_config.project_dir = tmp_path
47     assert chkdb.check_tokenizer(temp_db_conn, def_config) == chkdb.CheckState.FAIL
48
49
50 @pytest.mark.parametrize("check_result,state", [(None, chkdb.CheckState.OK),
51                                                 ("Something wrong", chkdb.CheckState.FAIL)])
52 def test_check_tokenizer(tokenizer_mock, temp_db_conn, def_config, monkeypatch,
53                          check_result, state):
54     class _TestTokenizer:
55         def check_database(self):
56             return check_result
57
58     monkeypatch.setattr(chkdb.tokenizer_factory, 'get_tokenizer_for_db',
59                          lambda *a, **k: _TestTokenizer())
60     assert chkdb.check_tokenizer(temp_db_conn, def_config) == state
61
62
63 def test_check_indexing_good(table_factory, temp_db_conn, def_config):
64     table_factory('placex', 'place_id int, indexed_status smallint',
65                   content=((1, 0), (2, 0)))
66     assert chkdb.check_indexing(temp_db_conn, def_config) == chkdb.CheckState.OK
67
68
69 def test_check_indexing_bad(table_factory, temp_db_conn, def_config):
70     table_factory('placex', 'place_id int, indexed_status smallint',
71                   content=((1, 0), (2, 2)))
72     assert chkdb.check_indexing(temp_db_conn, def_config) == chkdb.CheckState.FAIL
73
74
75 def test_check_database_indexes_bad(temp_db_conn, def_config):
76     assert chkdb.check_database_indexes(temp_db_conn, def_config) == chkdb.CheckState.FAIL
77
78
79 def test_check_database_indexes_valid(temp_db_conn, def_config):
80     assert chkdb.check_database_index_valid(temp_db_conn, def_config) == chkdb.CheckState.OK
81
82
83 def test_check_tiger_table_disabled(temp_db_conn, def_config, monkeypatch):
84     monkeypatch.setenv('NOMINATIM_USE_US_TIGER_DATA' , 'no')
85     assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.NOT_APPLICABLE
86
87
88 def test_check_tiger_table_enabled(temp_db_cursor, temp_db_conn, def_config, monkeypatch):
89     monkeypatch.setenv('NOMINATIM_USE_US_TIGER_DATA' , 'yes')
90     assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.FAIL
91
92     temp_db_cursor.execute('CREATE TABLE location_property_tiger (place_id int)')
93     assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.FAIL
94
95     temp_db_cursor.execute('INSERT INTO location_property_tiger VALUES (1), (2)')
96     assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.OK
97