4 from pathlib import Path
9 SRC_DIR = Path(__file__) / '..' / '..' / '..'
11 # always test against the source
12 sys.path.insert(0, str(SRC_DIR.resolve()))
14 from nominatim.config import Configuration
15 from nominatim.db import connection
16 from nominatim.db.sql_preprocessor import SQLPreprocessor
17 from nominatim.db import properties
18 import nominatim.tokenizer.factory
20 import dummy_tokenizer
22 from cursor import TestingCursor
26 def temp_db(monkeypatch):
27 """ Create an empty database for the test. The database name is also
28 exported into NOMINATIM_DATABASE_DSN.
30 name = 'test_nominatim_python_unittest'
31 conn = psycopg2.connect(database='postgres')
33 conn.set_isolation_level(0)
34 with conn.cursor() as cur:
35 cur.execute('DROP DATABASE IF EXISTS {}'.format(name))
36 cur.execute('CREATE DATABASE {}'.format(name))
40 monkeypatch.setenv('NOMINATIM_DATABASE_DSN', 'dbname=' + name)
44 conn = psycopg2.connect(database='postgres')
46 conn.set_isolation_level(0)
47 with conn.cursor() as cur:
48 cur.execute('DROP DATABASE IF EXISTS {}'.format(name))
55 return 'dbname=' + temp_db
59 def temp_db_with_extensions(temp_db):
60 conn = psycopg2.connect(database=temp_db)
61 with conn.cursor() as cur:
62 cur.execute('CREATE EXTENSION hstore; CREATE EXTENSION postgis;')
69 def temp_db_conn(temp_db):
70 """ Connection to the test database.
72 with connection.connect('dbname=' + temp_db) as conn:
77 def temp_db_cursor(temp_db):
78 """ Connection and cursor towards the test database. The connection will
79 be in auto-commit mode.
81 conn = psycopg2.connect('dbname=' + temp_db)
82 conn.set_isolation_level(0)
83 with conn.cursor(cursor_factory=TestingCursor) as cur:
89 def table_factory(temp_db_cursor):
90 def mk_table(name, definition='id INT', content=None):
91 temp_db_cursor.execute('CREATE TABLE {} ({})'.format(name, definition))
92 if content is not None:
93 temp_db_cursor.execute_values("INSERT INTO {} VALUES %s".format(name), content)
100 cfg = Configuration(None, SRC_DIR.resolve() / 'settings')
101 cfg.set_libdirs(module='.', osm2pgsql='.',
102 php=SRC_DIR / 'lib-php',
103 sql=SRC_DIR / 'lib-sql',
104 data=SRC_DIR / 'data')
109 return SRC_DIR.resolve()
112 def tmp_phplib_dir():
113 with tempfile.TemporaryDirectory() as phpdir:
114 (Path(phpdir) / 'admin').mkdir()
120 def property_table(table_factory):
121 table_factory('nominatim_properties', 'property TEXT, value TEXT')
124 def status_table(temp_db_conn):
125 """ Create an empty version of the status table and
126 the status logging table.
128 with temp_db_conn.cursor() as cur:
129 cur.execute("""CREATE TABLE import_status (
130 lastimportdate timestamp with time zone NOT NULL,
134 cur.execute("""CREATE TABLE import_osmosis_log (
142 temp_db_conn.commit()
146 def place_table(temp_db_with_extensions, temp_db_conn):
147 """ Create an empty version of the place table.
149 with temp_db_conn.cursor() as cur:
150 cur.execute("""CREATE TABLE place (
151 osm_id int8 NOT NULL,
152 osm_type char(1) NOT NULL,
156 admin_level smallint,
159 geometry Geometry(Geometry,4326) NOT NULL)""")
160 temp_db_conn.commit()
164 def place_row(place_table, temp_db_cursor):
165 """ A factory for rows in the place table. The table is created as a
166 prerequisite to the fixture.
168 idseq = itertools.count(1001)
169 def _insert(osm_type='N', osm_id=None, cls='amenity', typ='cafe', names=None,
170 admin_level=None, address=None, extratags=None, geom=None):
171 temp_db_cursor.execute("INSERT INTO place VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s)",
172 (osm_id or next(idseq), osm_type, cls, typ, names,
173 admin_level, address, extratags,
174 geom or 'SRID=4326;POINT(0 0)'))
179 def placex_table(temp_db_with_extensions, temp_db_conn):
180 """ Create an empty version of the place table.
182 return mocks.MockPlacexTable(temp_db_conn)
186 def osmline_table(temp_db_with_extensions, temp_db_conn):
187 with temp_db_conn.cursor() as cur:
188 cur.execute("""CREATE TABLE location_property_osmline (
191 parent_place_id BIGINT,
192 geometry_sector INTEGER,
193 indexed_date TIMESTAMP,
197 indexed_status SMALLINT,
199 interpolationtype TEXT,
202 country_code VARCHAR(2))""")
203 temp_db_conn.commit()
207 def word_table(temp_db_conn):
208 return mocks.MockWordTable(temp_db_conn)
212 def osm2pgsql_options(temp_db):
213 return dict(osm2pgsql='echo',
215 osm2pgsql_style='style.file',
217 dsn='dbname=' + temp_db,
219 tablespaces=dict(slim_data='', slim_index='',
220 main_data='', main_index=''))
223 def sql_preprocessor(temp_db_conn, tmp_path, monkeypatch, table_factory):
224 table_factory('country_name', 'partition INT', ((0, ), (1, ), (2, )))
225 cfg = Configuration(None, SRC_DIR.resolve() / 'settings')
226 cfg.set_libdirs(module='.', osm2pgsql='.', php=SRC_DIR / 'lib-php',
227 sql=tmp_path, data=SRC_DIR / 'data')
229 return SQLPreprocessor(temp_db_conn, cfg)
233 def tokenizer_mock(monkeypatch, property_table, temp_db_conn, tmp_path):
234 """ Sets up the configuration so that the test dummy tokenizer will be
235 loaded when the tokenizer factory is used. Also returns a factory
236 with which a new dummy tokenizer may be created.
238 monkeypatch.setenv('NOMINATIM_TOKENIZER', 'dummy')
240 def _import_dummy(module, *args, **kwargs):
241 return dummy_tokenizer
243 monkeypatch.setattr(nominatim.tokenizer.factory, "_import_tokenizer", _import_dummy)
244 properties.set_property(temp_db_conn, 'tokenizer', 'dummy')
246 def _create_tokenizer():
247 return dummy_tokenizer.DummyTokenizer(None, None)
249 return _create_tokenizer