1 # SPDX-License-Identifier: GPL-3.0-or-later
 
   3 # This file is part of Nominatim. (https://nominatim.org)
 
   5 # Copyright (C) 2024 by the Nominatim developer community.
 
   6 # For a full list of authors see the git log.
 
   8 Tests for status table manipulation.
 
  14 import nominatim_db.db.status
 
  15 from nominatim_db.errors import UsageError
 
  18 <osm version="0.6" generator="OpenStreetMap server" copyright="OpenStreetMap and contributors" attribution="http://www.openstreetmap.org/copyright" license="http://opendatacommons.org/licenses/odbl/1-0/">
 
  19 <node id="45673" visible="true" version="1" changeset="2047" timestamp="2006-01-27T22:09:10Z" user="Foo" uid="111" lat="48.7586670" lon="8.1343060">
 
  25     return dt.datetime.strptime(date, nominatim_db.db.status.ISODATE_FORMAT)\
 
  26                .replace(tzinfo=dt.timezone.utc)
 
  29 @pytest.fixture(autouse=True)
 
  30 def setup_status_table(status_table):
 
  34 @pytest.mark.parametrize('offline', [True, False])
 
  35 def test_compute_database_date_from_osm2pgsql(table_factory, temp_db_conn, offline):
 
  36     table_factory('osm2pgsql_properties', 'property TEXT, value TEXT',
 
  37                   content=(('current_timestamp', '2024-01-03T23:45:54Z'), ))
 
  39     date = nominatim_db.db.status.compute_database_date(temp_db_conn, offline=offline)
 
  40     assert date == iso_date('2024-01-03T23:45:54')
 
  43 def test_compute_database_date_from_osm2pgsql_nodata(table_factory, temp_db_conn):
 
  44     table_factory('osm2pgsql_properties', 'property TEXT, value TEXT')
 
  46     with pytest.raises(UsageError, match='Cannot determine database date from data in offline mode'):
 
  47         nominatim_db.db.status.compute_database_date(temp_db_conn, offline=True)
 
  50 def test_compute_database_date_place_empty(place_table, temp_db_conn):
 
  51     with pytest.raises(UsageError):
 
  52         nominatim_db.db.status.compute_database_date(temp_db_conn)
 
  55 def test_compute_database_date_valid(monkeypatch, place_row, temp_db_conn):
 
  56     place_row(osm_type='N', osm_id=45673)
 
  60         requested_url.append(url)
 
  63     monkeypatch.setattr(nominatim_db.db.status, "get_url", mock_url)
 
  65     date = nominatim_db.db.status.compute_database_date(temp_db_conn)
 
  67     assert requested_url == ['https://www.openstreetmap.org/api/0.6/node/45673/1']
 
  68     assert date == iso_date('2006-01-27T22:09:10')
 
  71 def test_compute_database_broken_api(monkeypatch, place_row, temp_db_conn):
 
  72     place_row(osm_type='N', osm_id=45673)
 
  76         requested_url.append(url)
 
  77         return '<osm version="0.6" generator="OpenStre'
 
  79     monkeypatch.setattr(nominatim_db.db.status, "get_url", mock_url)
 
  81     with pytest.raises(UsageError):
 
  82         nominatim_db.db.status.compute_database_date(temp_db_conn)
 
  85 def test_set_status_empty_table(temp_db_conn, temp_db_cursor):
 
  86     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
 
  87     nominatim_db.db.status.set_status(temp_db_conn, date=date)
 
  89     assert temp_db_cursor.row_set("SELECT * FROM import_status") == \
 
  93 def test_set_status_filled_table(temp_db_conn, temp_db_cursor):
 
  94     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
 
  95     nominatim_db.db.status.set_status(temp_db_conn, date=date)
 
  97     assert temp_db_cursor.table_rows('import_status') == 1
 
  99     date = dt.datetime.fromordinal(1000100).replace(tzinfo=dt.timezone.utc)
 
 100     nominatim_db.db.status.set_status(temp_db_conn, date=date, seq=456, indexed=False)
 
 102     assert temp_db_cursor.row_set("SELECT * FROM import_status") == \
 
 106 def test_set_status_missing_date(temp_db_conn, temp_db_cursor):
 
 107     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
 
 108     nominatim_db.db.status.set_status(temp_db_conn, date=date)
 
 110     assert temp_db_cursor.table_rows('import_status') == 1
 
 112     nominatim_db.db.status.set_status(temp_db_conn, date=None, seq=456, indexed=False)
 
 114     assert temp_db_cursor.row_set("SELECT * FROM import_status") == \
 
 118 def test_get_status_empty_table(temp_db_conn):
 
 119     assert nominatim_db.db.status.get_status(temp_db_conn) == (None, None, None)
 
 122 def test_get_status_success(temp_db_conn):
 
 123     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
 
 124     nominatim_db.db.status.set_status(temp_db_conn, date=date, seq=667, indexed=False)
 
 126     assert nominatim_db.db.status.get_status(temp_db_conn) == \
 
 130 @pytest.mark.parametrize("old_state", [True, False])
 
 131 @pytest.mark.parametrize("new_state", [True, False])
 
 132 def test_set_indexed(temp_db_conn, temp_db_cursor, old_state, new_state):
 
 133     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
 
 134     nominatim_db.db.status.set_status(temp_db_conn, date=date, indexed=old_state)
 
 135     nominatim_db.db.status.set_indexed(temp_db_conn, new_state)
 
 137     assert temp_db_cursor.scalar("SELECT indexed FROM import_status") == new_state
 
 140 def test_set_indexed_empty_status(temp_db_conn, temp_db_cursor):
 
 141     nominatim_db.db.status.set_indexed(temp_db_conn, True)
 
 143     assert temp_db_cursor.table_rows("import_status") == 0
 
 146 def test_log_status(temp_db_conn, temp_db_cursor):
 
 147     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
 
 148     start = dt.datetime.now() - dt.timedelta(hours=1)
 
 150     nominatim_db.db.status.set_status(temp_db_conn, date=date, seq=56)
 
 151     nominatim_db.db.status.log_status(temp_db_conn, start, 'index')
 
 153     temp_db_conn.commit()
 
 155     assert temp_db_cursor.table_rows("import_osmosis_log") == 1
 
 156     assert temp_db_cursor.scalar("SELECT batchseq FROM import_osmosis_log") == 56
 
 157     assert temp_db_cursor.scalar("SELECT event FROM import_osmosis_log") == 'index'