X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/2f547325007dccf17ccfcfd309c18c2f41147772..2755ebe88360c56f9e82c5b910362ac402cc1ed0:/test/python/api/conftest.py diff --git a/test/python/api/conftest.py b/test/python/api/conftest.py index d8a6dfa0..cfe14e1e 100644 --- a/test/python/api/conftest.py +++ b/test/python/api/conftest.py @@ -12,6 +12,8 @@ import pytest import time import datetime as dt +import sqlalchemy as sa + import nominatim.api as napi from nominatim.db.sql_preprocessor import SQLPreprocessor import nominatim.api.logging as loglib @@ -129,6 +131,34 @@ class APITester: 'geometry': 'SRID=4326;' + geometry}) + def add_country_name(self, country_code, names, partition=0): + self.add_data('country_name', + {'country_code': country_code, + 'name': names, + 'partition': partition}) + + + def add_search_name(self, place_id, **kw): + centroid = kw.get('centroid', (23.0, 34.0)) + self.add_data('search_name', + {'place_id': place_id, + 'importance': kw.get('importance', 0.00001), + 'search_rank': kw.get('search_rank', 30), + 'address_rank': kw.get('address_rank', 30), + 'name_vector': kw.get('names', []), + 'nameaddress_vector': kw.get('address', []), + 'country_code': kw.get('country_code', 'xx'), + 'centroid': 'SRID=4326;POINT(%f %f)' % centroid}) + + + def add_class_type_table(self, cls, typ): + self.async_to_sync( + self.exec_async(sa.text(f"""CREATE TABLE place_classtype_{cls}_{typ} + AS (SELECT place_id, centroid FROM placex + WHERE class = '{cls}' AND type = '{typ}') + """))) + + async def exec_async(self, sql, *args, **kwargs): async with self.api._async_api.begin() as conn: return await conn.execute(sql, *args, **kwargs)