2 Tests for DB utility functions in db.utils
7 import nominatim.db.utils as db_utils
8 from nominatim.errors import UsageError
12 return 'dbname=' + temp_db
14 def test_execute_file_success(dsn, temp_db_cursor, tmp_path):
15 tmpfile = tmp_path / 'test.sql'
16 tmpfile.write_text('CREATE TABLE test (id INT);\nINSERT INTO test VALUES(56);')
18 db_utils.execute_file(dsn, tmpfile)
20 temp_db_cursor.execute('SELECT * FROM test')
22 assert temp_db_cursor.rowcount == 1
23 assert temp_db_cursor.fetchone()[0] == 56
25 def test_execute_file_bad_file(dsn, tmp_path):
26 with pytest.raises(FileNotFoundError):
27 db_utils.execute_file(dsn, tmp_path / 'test2.sql')
29 def test_execute_file_bad_sql(dsn, tmp_path):
30 tmpfile = tmp_path / 'test.sql'
31 tmpfile.write_text('CREATE STABLE test (id INT)')
33 with pytest.raises(UsageError):
34 db_utils.execute_file(dsn, tmpfile)
37 def test_execute_file_bad_sql_ignore_errors(dsn, tmp_path):
38 tmpfile = tmp_path / 'test.sql'
39 tmpfile.write_text('CREATE STABLE test (id INT)')
41 db_utils.execute_file(dsn, tmpfile, ignore_errors=True)