]> git.openstreetmap.org Git - nominatim.git/blob - test/python/test_db_status.py
introduce custom UsageError
[nominatim.git] / test / python / test_db_status.py
1 """
2 Tests for status table manipulation.
3 """
4 import datetime as dt
5
6 import pytest
7
8 import nominatim.db.status
9 from nominatim.errors import UsageError
10
11 def test_compute_database_date_place_empty(status_table, place_table, temp_db_conn):
12     with pytest.raises(UsageError):
13         nominatim.db.status.compute_database_date(temp_db_conn)
14
15 OSM_NODE_DATA = """\
16 <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/">
17 <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">
18 </node>
19 </osm>
20 """
21
22 def test_compute_database_date_valid(monkeypatch, status_table, place_row, temp_db_conn):
23     place_row(osm_type='N', osm_id=45673)
24
25     requested_url = []
26     def mock_url(url):
27         requested_url.append(url)
28         return OSM_NODE_DATA
29
30     monkeypatch.setattr(nominatim.db.status, "get_url", mock_url)
31
32     date = nominatim.db.status.compute_database_date(temp_db_conn)
33
34     assert requested_url == ['https://www.openstreetmap.org/api/0.6/node/45673/1']
35     assert date == dt.datetime.fromisoformat('2006-01-27T22:09:10').replace(tzinfo=dt.timezone.utc)
36
37
38 def test_compute_database_broken_api(monkeypatch, status_table, place_row, temp_db_conn):
39     place_row(osm_type='N', osm_id=45673)
40
41     requested_url = []
42     def mock_url(url):
43         requested_url.append(url)
44         return '<osm version="0.6" generator="OpenStre'
45
46     monkeypatch.setattr(nominatim.db.status, "get_url", mock_url)
47
48     with pytest.raises(UsageError):
49         date = nominatim.db.status.compute_database_date(temp_db_conn)
50
51
52 def test_set_status_empty_table(status_table, temp_db_conn, temp_db_cursor):
53     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
54     nominatim.db.status.set_status(temp_db_conn, date=date)
55
56     temp_db_cursor.execute("SELECT * FROM import_status")
57
58     assert temp_db_cursor.rowcount == 1
59     assert temp_db_cursor.fetchone() == [date, None, True]
60
61
62 def test_set_status_filled_table(status_table, temp_db_conn, temp_db_cursor):
63     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
64     nominatim.db.status.set_status(temp_db_conn, date=date)
65
66     assert 1 == temp_db_cursor.scalar("SELECT count(*) FROM import_status")
67
68
69     date = dt.datetime.fromordinal(1000100).replace(tzinfo=dt.timezone.utc)
70     nominatim.db.status.set_status(temp_db_conn, date=date, seq=456, indexed=False)
71
72     temp_db_cursor.execute("SELECT * FROM import_status")
73
74     assert temp_db_cursor.rowcount == 1
75     assert temp_db_cursor.fetchone() == [date, 456, False]
76
77
78 def test_get_status_empty_table(status_table, temp_db_conn):
79     assert nominatim.db.status.get_status(temp_db_conn) == (None, None, None)
80
81
82 def test_get_status_success(status_table, temp_db_conn):
83     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
84     nominatim.db.status.set_status(temp_db_conn, date=date, seq=667, indexed=False)
85
86     assert nominatim.db.status.get_status(temp_db_conn) == \
87              (date, 667, False)
88
89
90 @pytest.mark.parametrize("old_state", [True, False])
91 @pytest.mark.parametrize("new_state", [True, False])
92 def test_set_indexed(status_table, temp_db_conn, temp_db_cursor, old_state, new_state):
93     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
94     nominatim.db.status.set_status(temp_db_conn, date=date, indexed=old_state)
95     nominatim.db.status.set_indexed(temp_db_conn, new_state)
96
97     assert temp_db_cursor.scalar("SELECT indexed FROM import_status") == new_state
98
99
100 def test_set_indexed_empty_status(status_table, temp_db_conn, temp_db_cursor):
101     nominatim.db.status.set_indexed(temp_db_conn, True)
102
103     assert temp_db_cursor.scalar("SELECT count(*) FROM import_status") == 0
104
105
106 def text_log_status(status_table, temp_db_conn):
107     date = dt.datetime.fromordinal(1000000).replace(tzinfo=dt.timezone.utc)
108     start = dt.datetime.now() - dt.timedelta(hours=1)
109     nominatim.db.status.set_status(temp_db_conn, date=date, seq=56)
110     nominatim.db.status.log_status(temp_db_conn, start, 'index')
111
112     assert temp_db_cursor.scalar("SELECT count(*) FROM import_osmosis_log") == 1
113     assert temp_db_cursor.scalar("SELECT seq FROM import_osmosis_log") == 56
114     assert temp_db_cursor.scalar("SELECT date FROM import_osmosis_log") == date