1 # SPDX-License-Identifier: GPL-2.0-only
3 # This file is part of Nominatim. (https://nominatim.org)
5 # Copyright (C) 2022 by the Nominatim developer community.
6 # For a full list of authors see the git log.
8 Custom mocks for testing.
12 import psycopg2.extras
14 from nominatim.db import properties
16 # This must always point to the mock word table for the default tokenizer.
17 from mock_icu_word_table import MockIcuWordTable as MockWordTable
19 class MockPlacexTable:
20 """ A placex table for testing.
22 def __init__(self, conn):
23 self.idseq = itertools.count(10000)
25 with conn.cursor() as cur:
26 cur.execute("""CREATE TABLE placex (
28 parent_place_id BIGINT,
29 linked_place_id BIGINT,
31 indexed_date TIMESTAMP,
32 geometry_sector INTEGER,
33 rank_address SMALLINT,
36 indexed_status SMALLINT,
46 geometry Geometry(Geometry,4326),
48 country_code varchar(2),
51 centroid GEOMETRY(Geometry, 4326))""")
52 cur.execute("CREATE SEQUENCE IF NOT EXISTS seq_place")
55 def add(self, osm_type='N', osm_id=None, cls='amenity', typ='cafe', names=None,
56 admin_level=None, address=None, extratags=None, geom='POINT(10 4)',
57 country=None, housenumber=None):
58 with self.conn.cursor() as cur:
59 psycopg2.extras.register_hstore(cur)
60 cur.execute("""INSERT INTO placex (place_id, osm_type, osm_id, class,
61 type, name, admin_level, address,
63 extratags, geometry, country_code)
64 VALUES(nextval('seq_place'), %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)""",
65 (osm_type, osm_id or next(self.idseq), cls, typ, names,
66 admin_level, address, housenumber, extratags, 'SRID=4326;' + geom,
71 class MockPropertyTable:
72 """ A property table for testing.
74 def __init__(self, conn):
78 def set(self, name, value):
79 """ Set a property in the table to the given value.
81 properties.set_property(self.conn, name, value)
85 """ Set a property in the table to the given value.
87 return properties.get_property(self.conn, name)