2 Tests for maintenance and analysis functions.
6 from nominatim.errors import UsageError
7 from nominatim.tools import admin
9 @pytest.fixture(autouse=True)
10 def create_placex_table(placex_table):
11 """ All tests in this module require the placex table to be set up.
16 def test_analyse_indexing_no_objects(temp_db_conn):
17 with pytest.raises(UsageError):
18 admin.analyse_indexing(temp_db_conn)
21 @pytest.mark.parametrize("oid", ['1234', 'N123a', 'X123'])
22 def test_analyse_indexing_bad_osmid(temp_db_conn, oid):
23 with pytest.raises(UsageError):
24 admin.analyse_indexing(temp_db_conn, osm_id=oid)
27 def test_analyse_indexing_unknown_osmid(temp_db_conn):
28 with pytest.raises(UsageError):
29 admin.analyse_indexing(temp_db_conn, osm_id='W12345674')
32 def test_analyse_indexing_with_place_id(temp_db_conn, temp_db_cursor):
33 temp_db_cursor.execute("INSERT INTO placex (place_id) VALUES(12345)")
35 admin.analyse_indexing(temp_db_conn, place_id=12345)
38 def test_analyse_indexing_with_osm_id(temp_db_conn, temp_db_cursor):
39 temp_db_cursor.execute("""INSERT INTO placex (place_id, osm_type, osm_id)
40 VALUES(9988, 'N', 10000)""")
42 admin.analyse_indexing(temp_db_conn, osm_id='N10000')