X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a0ae4945cd60fb395e9d08a8306fb4f7201fa7d1..90a5d2301610142994e75311be8ef9ca4643aafb:/test/python/test_tools_check_database.py diff --git a/test/python/test_tools_check_database.py b/test/python/test_tools_check_database.py index 0b5c23a6..68b376a7 100644 --- a/test/python/test_tools_check_database.py +++ b/test/python/test_tools_check_database.py @@ -10,6 +10,10 @@ def test_check_database_unknown_db(def_config, monkeypatch): assert 1 == chkdb.check_database(def_config) +def test_check_database_fatal_test(def_config, temp_db): + assert 1 == chkdb.check_database(def_config) + + def test_check_conection_good(temp_db_conn, def_config): assert chkdb.check_connection(temp_db_conn, def_config) == chkdb.CheckState.OK @@ -59,6 +63,10 @@ def test_check_database_indexes_bad(temp_db_conn, def_config): assert chkdb.check_database_indexes(temp_db_conn, def_config) == chkdb.CheckState.FAIL +def test_check_database_indexes_valid(temp_db_conn, def_config): + assert chkdb.check_database_index_valid(temp_db_conn, def_config) == chkdb.CheckState.OK + + def test_check_tiger_table_disabled(temp_db_conn, def_config, monkeypatch): monkeypatch.setenv('NOMINATIM_USE_US_TIGER_DATA' , 'no') assert chkdb.check_tiger_table(temp_db_conn, def_config) == chkdb.CheckState.NOT_APPLICABLE