mirror of
https://github.com/osm-search/Nominatim.git
synced 2024-11-27 10:43:02 +03:00
b90e719da5
The directories follow the same structure as the modules in nominatim/.
159 lines
5.2 KiB
Python
159 lines
5.2 KiB
Python
"""
|
|
Tests for functions to import a new database.
|
|
"""
|
|
from pathlib import Path
|
|
from contextlib import closing
|
|
|
|
import pytest
|
|
import psycopg2
|
|
|
|
from nominatim.tools import database_import
|
|
from nominatim.errors import UsageError
|
|
|
|
class TestDatabaseSetup:
|
|
DBNAME = 'test_nominatim_python_unittest'
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def setup_nonexistant_db(self):
|
|
conn = psycopg2.connect(database='postgres')
|
|
|
|
try:
|
|
conn.set_isolation_level(0)
|
|
with conn.cursor() as cur:
|
|
cur.execute(f'DROP DATABASE IF EXISTS {self.DBNAME}')
|
|
|
|
yield True
|
|
|
|
with conn.cursor() as cur:
|
|
cur.execute(f'DROP DATABASE IF EXISTS {self.DBNAME}')
|
|
finally:
|
|
conn.close()
|
|
|
|
@pytest.fixture
|
|
def cursor(self):
|
|
conn = psycopg2.connect(database=self.DBNAME)
|
|
|
|
try:
|
|
with conn.cursor() as cur:
|
|
yield cur
|
|
finally:
|
|
conn.close()
|
|
|
|
|
|
def conn(self):
|
|
return closing(psycopg2.connect(database=self.DBNAME))
|
|
|
|
|
|
def test_setup_skeleton(self):
|
|
database_import.setup_database_skeleton(f'dbname={self.DBNAME}')
|
|
|
|
# Check that all extensions are set up.
|
|
with self.conn() as conn:
|
|
with conn.cursor() as cur:
|
|
cur.execute('CREATE TABLE t (h HSTORE, geom GEOMETRY(Geometry, 4326))')
|
|
|
|
|
|
def test_unsupported_pg_version(self, monkeypatch):
|
|
monkeypatch.setattr(database_import, 'POSTGRESQL_REQUIRED_VERSION', (100, 4))
|
|
|
|
with pytest.raises(UsageError, match='PostgreSQL server is too old.'):
|
|
database_import.setup_database_skeleton(f'dbname={self.DBNAME}')
|
|
|
|
|
|
def test_create_db_missing_ro_user(self):
|
|
with pytest.raises(UsageError, match='Missing read-only user.'):
|
|
database_import.setup_database_skeleton(f'dbname={self.DBNAME}',
|
|
rouser='sdfwkjkjgdugu2;jgsafkljas;')
|
|
|
|
|
|
def test_setup_extensions_old_postgis(self, monkeypatch):
|
|
monkeypatch.setattr(database_import, 'POSTGIS_REQUIRED_VERSION', (50, 50))
|
|
|
|
with pytest.raises(UsageError, match='PostGIS is too old.'):
|
|
database_import.setup_database_skeleton(f'dbname={self.DBNAME}')
|
|
|
|
|
|
def test_setup_skeleton_already_exists(temp_db):
|
|
with pytest.raises(UsageError):
|
|
database_import.setup_database_skeleton(f'dbname={temp_db}')
|
|
|
|
|
|
def test_import_osm_data_simple(table_factory, osm2pgsql_options):
|
|
table_factory('place', content=((1, ), ))
|
|
|
|
database_import.import_osm_data(Path('file.pbf'), osm2pgsql_options)
|
|
|
|
|
|
def test_import_osm_data_multifile(table_factory, tmp_path, osm2pgsql_options):
|
|
table_factory('place', content=((1, ), ))
|
|
osm2pgsql_options['osm2pgsql_cache'] = 0
|
|
|
|
files = [tmp_path / 'file1.osm', tmp_path / 'file2.osm']
|
|
for f in files:
|
|
f.write_text('test')
|
|
|
|
database_import.import_osm_data(files, osm2pgsql_options)
|
|
|
|
|
|
def test_import_osm_data_simple_no_data(table_factory, osm2pgsql_options):
|
|
table_factory('place')
|
|
|
|
with pytest.raises(UsageError, match='No data.*'):
|
|
database_import.import_osm_data(Path('file.pbf'), osm2pgsql_options)
|
|
|
|
|
|
def test_import_osm_data_drop(table_factory, temp_db_conn, tmp_path, osm2pgsql_options):
|
|
table_factory('place', content=((1, ), ))
|
|
table_factory('planet_osm_nodes')
|
|
|
|
flatfile = tmp_path / 'flatfile'
|
|
flatfile.write_text('touch')
|
|
|
|
osm2pgsql_options['flatnode_file'] = str(flatfile.resolve())
|
|
|
|
database_import.import_osm_data(Path('file.pbf'), osm2pgsql_options, drop=True)
|
|
|
|
assert not flatfile.exists()
|
|
assert not temp_db_conn.table_exists('planet_osm_nodes')
|
|
|
|
|
|
def test_import_osm_data_default_cache(table_factory, osm2pgsql_options):
|
|
table_factory('place', content=((1, ), ))
|
|
|
|
osm2pgsql_options['osm2pgsql_cache'] = 0
|
|
|
|
database_import.import_osm_data(Path(__file__), osm2pgsql_options)
|
|
|
|
|
|
def test_truncate_database_tables(temp_db_conn, temp_db_cursor, table_factory):
|
|
tables = ('placex', 'place_addressline', 'location_area',
|
|
'location_area_country',
|
|
'location_property_tiger', 'location_property_osmline',
|
|
'location_postcode', 'search_name', 'location_road_23')
|
|
for table in tables:
|
|
table_factory(table, content=((1, ), (2, ), (3, )))
|
|
assert temp_db_cursor.table_rows(table) == 3
|
|
|
|
database_import.truncate_data_tables(temp_db_conn)
|
|
|
|
for table in tables:
|
|
assert temp_db_cursor.table_rows(table) == 0
|
|
|
|
|
|
@pytest.mark.parametrize("threads", (1, 5))
|
|
def test_load_data(dsn, place_row, placex_table, osmline_table,
|
|
word_table, temp_db_cursor, threads):
|
|
for func in ('precompute_words', 'getorcreate_housenumber_id', 'make_standard_name'):
|
|
temp_db_cursor.execute("""CREATE FUNCTION {} (src TEXT)
|
|
RETURNS TEXT AS $$ SELECT 'a'::TEXT $$ LANGUAGE SQL
|
|
""".format(func))
|
|
for oid in range(100, 130):
|
|
place_row(osm_id=oid)
|
|
place_row(osm_type='W', osm_id=342, cls='place', typ='houses',
|
|
geom='SRID=4326;LINESTRING(0 0, 10 10)')
|
|
|
|
database_import.load_data(dsn, threads)
|
|
|
|
assert temp_db_cursor.table_rows('placex') == 30
|
|
assert temp_db_cursor.table_rows('location_property_osmline') == 1
|