X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/4cb6dc01f382e9fb748efbe4517442af2274f210..ff341985699f8148bedf142bea9c5deddaa03b6f:/test/python/test_db_status.py?ds=inline diff --git a/test/python/test_db_status.py b/test/python/test_db_status.py index 1a538aec..c6591471 100644 --- a/test/python/test_db_status.py +++ b/test/python/test_db_status.py @@ -6,9 +6,10 @@ import datetime as dt import pytest import nominatim.db.status +from nominatim.errors import UsageError def test_compute_database_date_place_empty(status_table, place_table, temp_db_conn): - with pytest.raises(RuntimeError): + with pytest.raises(UsageError): nominatim.db.status.compute_database_date(temp_db_conn) OSM_NODE_DATA = """\ @@ -44,7 +45,7 @@ def test_compute_database_broken_api(monkeypatch, status_table, place_row, temp_ monkeypatch.setattr(nominatim.db.status, "get_url", mock_url) - with pytest.raises(RuntimeError): + with pytest.raises(UsageError): date = nominatim.db.status.compute_database_date(temp_db_conn) @@ -64,7 +65,6 @@ def test_set_status_filled_table(status_table, temp_db_conn, temp_db_cursor): assert 1 == temp_db_cursor.scalar("SELECT count(*) FROM import_status") - date = dt.datetime.fromordinal(1000100).replace(tzinfo=dt.timezone.utc) nominatim.db.status.set_status(temp_db_conn, date=date, seq=456, indexed=False) @@ -74,6 +74,20 @@ def test_set_status_filled_table(status_table, temp_db_conn, temp_db_cursor): assert temp_db_cursor.fetchone() == [date, 456, False] +def test_set_status_missing_date(status_table, temp_db_conn, temp_db_cursor): + date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc) + nominatim.db.status.set_status(temp_db_conn, date=date) + + assert 1 == temp_db_cursor.scalar("SELECT count(*) FROM import_status") + + nominatim.db.status.set_status(temp_db_conn, date=None, seq=456, indexed=False) + + temp_db_cursor.execute("SELECT * FROM import_status") + + assert temp_db_cursor.rowcount == 1 + assert temp_db_cursor.fetchone() == [date, 456, False] + + def test_get_status_empty_table(status_table, temp_db_conn): assert nominatim.db.status.get_status(temp_db_conn) == (None, None, None)