2 Tests for functions to import a new database.
7 from pathlib import Path
9 from nominatim.tools import database_import
10 from nominatim.errors import UsageError
14 dbname = 'test_nominatim_python_unittest'
16 conn = psycopg2.connect(database='postgres')
18 conn.set_isolation_level(0)
19 with conn.cursor() as cur:
20 cur.execute('DROP DATABASE IF EXISTS {}'.format(dbname))
24 with conn.cursor() as cur:
25 cur.execute('DROP DATABASE IF EXISTS {}'.format(dbname))
27 @pytest.mark.parametrize("no_partitions", (True, False))
28 def test_setup_skeleton(src_dir, nonexistant_db, no_partitions):
29 database_import.setup_database_skeleton('dbname=' + nonexistant_db,
30 src_dir / 'data', no_partitions)
32 conn = psycopg2.connect(database=nonexistant_db)
35 with conn.cursor() as cur:
36 cur.execute("SELECT distinct partition FROM country_name")
37 partitions = set([r[0] for r in list(cur)])
39 assert partitions == set([0])
41 assert len(partitions) > 10
46 def test_create_db_success(nonexistant_db):
47 database_import.create_db('dbname=' + nonexistant_db, rouser='www-data')
49 conn = psycopg2.connect(database=nonexistant_db)
53 def test_create_db_already_exists(temp_db):
54 with pytest.raises(UsageError):
55 database_import.create_db('dbname=' + temp_db)
58 def test_create_db_unsupported_version(nonexistant_db, monkeypatch):
59 monkeypatch.setattr(database_import, 'POSTGRESQL_REQUIRED_VERSION', (100, 4))
61 with pytest.raises(UsageError, match='PostgreSQL server is too old.'):
62 database_import.create_db('dbname=' + nonexistant_db)
65 def test_create_db_missing_ro_user(nonexistant_db):
66 with pytest.raises(UsageError, match='Missing read-only user.'):
67 database_import.create_db('dbname=' + nonexistant_db, rouser='sdfwkjkjgdugu2;jgsafkljas;')
70 def test_setup_extensions(temp_db_conn, temp_db_cursor):
71 database_import.setup_extensions(temp_db_conn)
73 temp_db_cursor.execute('CREATE TABLE t (h HSTORE, geom GEOMETRY(Geometry, 4326))')
76 def test_setup_extensions_old_postgis(temp_db_conn, monkeypatch):
77 monkeypatch.setattr(database_import, 'POSTGIS_REQUIRED_VERSION', (50, 50))
79 with pytest.raises(UsageError, match='PostGIS version is too old.'):
80 database_import.setup_extensions(temp_db_conn)
83 def test_import_base_data(src_dir, temp_db, temp_db_cursor):
84 temp_db_cursor.execute('CREATE EXTENSION hstore')
85 temp_db_cursor.execute('CREATE EXTENSION postgis')
86 database_import.import_base_data('dbname=' + temp_db, src_dir / 'data')
88 assert temp_db_cursor.scalar('SELECT count(*) FROM country_name') > 0
91 def test_import_base_data_ignore_partitions(src_dir, temp_db, temp_db_cursor):
92 temp_db_cursor.execute('CREATE EXTENSION hstore')
93 temp_db_cursor.execute('CREATE EXTENSION postgis')
94 database_import.import_base_data('dbname=' + temp_db, src_dir / 'data',
95 ignore_partitions=True)
97 assert temp_db_cursor.scalar('SELECT count(*) FROM country_name') > 0
98 assert temp_db_cursor.scalar('SELECT count(*) FROM country_name WHERE partition != 0') == 0
101 def test_import_osm_data_simple(temp_db_cursor,osm2pgsql_options):
102 temp_db_cursor.execute('CREATE TABLE place (id INT)')
103 temp_db_cursor.execute('INSERT INTO place values (1)')
105 database_import.import_osm_data('file.pdf', osm2pgsql_options)
108 def test_import_osm_data_simple_no_data(temp_db_cursor,osm2pgsql_options):
109 temp_db_cursor.execute('CREATE TABLE place (id INT)')
111 with pytest.raises(UsageError, match='No data.*'):
112 database_import.import_osm_data('file.pdf', osm2pgsql_options)
115 def test_import_osm_data_drop(temp_db_conn, temp_db_cursor, tmp_path, osm2pgsql_options):
116 temp_db_cursor.execute('CREATE TABLE place (id INT)')
117 temp_db_cursor.execute('CREATE TABLE planet_osm_nodes (id INT)')
118 temp_db_cursor.execute('INSERT INTO place values (1)')
120 flatfile = tmp_path / 'flatfile'
121 flatfile.write_text('touch')
123 osm2pgsql_options['flatnode_file'] = str(flatfile.resolve())
125 database_import.import_osm_data('file.pdf', osm2pgsql_options, drop=True)
127 assert not flatfile.exists()
128 assert not temp_db_conn.table_exists('planet_osm_nodes')
131 def test_import_osm_data_default_cache(temp_db_cursor,osm2pgsql_options):
132 temp_db_cursor.execute('CREATE TABLE place (id INT)')
133 temp_db_cursor.execute('INSERT INTO place values (1)')
135 osm2pgsql_options['osm2pgsql_cache'] = 0
137 database_import.import_osm_data(Path(__file__), osm2pgsql_options)
140 def test_truncate_database_tables(temp_db_conn, temp_db_cursor, table_factory):
141 tables = ('placex', 'place_addressline', 'location_area',
142 'location_area_country',
143 'location_property_tiger', 'location_property_osmline',
144 'location_postcode', 'search_name', 'location_road_23')
146 table_factory(table, content=(1, 2, 3))
148 database_import.truncate_data_tables(temp_db_conn)
151 assert temp_db_cursor.table_rows(table) == 0
154 @pytest.mark.parametrize("threads", (1, 5))
155 def test_load_data(dsn, src_dir, place_row, placex_table, osmline_table, word_table,
156 temp_db_cursor, threads):
157 for func in ('precompute_words', 'getorcreate_housenumber_id', 'make_standard_name'):
158 temp_db_cursor.execute("""CREATE FUNCTION {} (src TEXT)
159 RETURNS TEXT AS $$ SELECT 'a'::TEXT $$ LANGUAGE SQL
161 for oid in range(100, 130):
162 place_row(osm_id=oid)
163 place_row(osm_type='W', osm_id=342, cls='place', typ='houses',
164 geom='SRID=4326;LINESTRING(0 0, 10 10)')
166 database_import.load_data(dsn, threads)
168 assert temp_db_cursor.table_rows('placex') == 30
169 assert temp_db_cursor.table_rows('location_property_osmline') == 1
171 @pytest.mark.parametrize("languages", (False, True))
172 def test_create_country_names(temp_db_conn, temp_db_cursor, def_config,
173 temp_db_with_extensions, monkeypatch, languages):
175 monkeypatch.setenv('NOMINATIM_LANGUAGES', 'fr,en')
176 temp_db_cursor.execute("""CREATE FUNCTION make_standard_name (name TEXT)
177 RETURNS TEXT AS $$ SELECT 'a'::TEXT $$ LANGUAGE SQL
179 temp_db_cursor.execute('CREATE TABLE country_name (country_code varchar(2), name hstore)')
180 temp_db_cursor.execute('CREATE TABLE word (code varchar(2))')
181 temp_db_cursor.execute("""INSERT INTO country_name VALUES ('us',
182 '"name"=>"us","name:af"=>"us"')""")
183 temp_db_cursor.execute("""CREATE OR REPLACE FUNCTION getorcreate_country(lookup_word TEXT,
184 lookup_country_code varchar(2))
188 INSERT INTO word VALUES (lookup_country_code);
194 database_import.create_country_names(temp_db_conn, def_config)
196 assert temp_db_cursor.table_rows('word') == 4
198 assert temp_db_cursor.table_rows('word') == 5