]> git.openstreetmap.org Git - nominatim.git/blob - test/python/test_tools_check_database.py
improve deadlock detection for various versions of psycopg2
[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_conection_good(temp_db_conn, def_config):
14     assert chkdb.check_connection(temp_db_conn, def_config) == chkdb.CheckState.OK
15
16
17 def test_check_conection_bad(def_config):
18     badconn = chkdb._BadConnection('Error')
19     assert chkdb.check_connection(badconn, def_config) == chkdb.CheckState.FATAL
20
21
22 def test_check_placex_table_good(temp_db_cursor, temp_db_conn, def_config):
23     temp_db_cursor.execute('CREATE TABLE placex (place_id int)')
24     assert chkdb.check_placex_table(temp_db_conn, def_config) == chkdb.CheckState.OK
25
26
27 def test_check_placex_table_bad(temp_db_conn, def_config):
28     assert chkdb.check_placex_table(temp_db_conn, def_config) == chkdb.CheckState.FATAL
29
30
31 def test_check_placex_table_size_good(temp_db_cursor, temp_db_conn, def_config):
32     temp_db_cursor.execute('CREATE TABLE placex (place_id int)')
33     temp_db_cursor.execute('INSERT INTO placex VALUES (1), (2)')
34     assert chkdb.check_placex_size(temp_db_conn, def_config) == chkdb.CheckState.OK
35
36
37 def test_check_placex_table_size_bad(temp_db_cursor, temp_db_conn, def_config):
38     temp_db_cursor.execute('CREATE TABLE placex (place_id int)')
39     assert chkdb.check_placex_size(temp_db_conn, def_config) == chkdb.CheckState.FATAL
40
41
42 def test_check_module_bad(temp_db_conn, def_config):
43     assert chkdb.check_module(temp_db_conn, def_config) == chkdb.CheckState.FAIL
44
45
46 def test_check_indexing_good(temp_db_cursor, temp_db_conn, def_config):
47     temp_db_cursor.execute('CREATE TABLE placex (place_id int, indexed_status smallint)')
48     temp_db_cursor.execute('INSERT INTO placex VALUES (1, 0), (2, 0)')
49     assert chkdb.check_indexing(temp_db_conn, def_config) == chkdb.CheckState.OK
50
51
52 def test_check_indexing_bad(temp_db_cursor, temp_db_conn, def_config):
53     temp_db_cursor.execute('CREATE TABLE placex (place_id int, indexed_status smallint)')
54     temp_db_cursor.execute('INSERT INTO placex VALUES (1, 0), (2, 2)')
55     assert chkdb.check_indexing(temp_db_conn, def_config) == chkdb.CheckState.FAIL
56
57
58 def test_check_database_indexes_bad(temp_db_conn, def_config):
59     assert chkdb.check_database_indexes(temp_db_conn, def_config) == chkdb.CheckState.FAIL
60
61
62 def test_check_tiger_table_disabled(temp_db_conn, def_config, monkeypatch):
63     monkeypatch.setenv('NOMINATIM_USE_US_TIGER_DATA' , 'no')
64     assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.NOT_APPLICABLE
65
66
67 def test_check_tiger_table_enabled(temp_db_cursor, temp_db_conn, def_config, monkeypatch):
68     monkeypatch.setenv('NOMINATIM_USE_US_TIGER_DATA' , 'yes')
69     assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.FAIL
70
71     temp_db_cursor.execute('CREATE TABLE location_property_tiger (place_id int)')
72     assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.FAIL
73
74     temp_db_cursor.execute('INSERT INTO location_property_tiger VALUES (1), (2)')
75     assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.OK
76