]> git.openstreetmap.org Git - nominatim.git/blob - test/python/test_db_utils.py
b2586ed0d34b5f9a0454701f4e370cae2a28f72a
[nominatim.git] / test / python / test_db_utils.py
1 """
2 Tests for DB utility functions in db.utils
3 """
4 import psycopg2
5 import pytest
6
7 import nominatim.db.utils as db_utils
8 from nominatim.errors import UsageError
9
10 @pytest.fixture
11 def dsn(temp_db):
12     return 'dbname=' + temp_db
13
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);')
17
18     db_utils.execute_file(dsn, tmpfile)
19
20     temp_db_cursor.execute('SELECT * FROM test')
21
22     assert temp_db_cursor.rowcount == 1
23     assert temp_db_cursor.fetchone()[0] == 56
24
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')
28
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)')
32
33     with pytest.raises(UsageError):
34         db_utils.execute_file(dsn, tmpfile)
35
36
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)')
40
41     db_utils.execute_file(dsn, tmpfile, ignore_errors=True)