2 Custom mocks for testing.
8 from nominatim.db import properties
10 class MockParamCapture:
11 """ Mock that records the parameters with which a function was called
12 as well as the number of calls.
14 def __init__(self, retval=0):
16 self.return_value = retval
18 self.last_kwargs = None
20 def __call__(self, *args, **kwargs):
23 self.last_kwargs = kwargs
24 return self.return_value
28 """ A word table for testing.
30 def __init__(self, conn):
32 with conn.cursor() as cur:
33 cur.execute("""CREATE TABLE word (word_id INTEGER,
38 country_code varchar(2),
39 search_name_count INTEGER,
44 def add_special(self, word_token, word, cls, typ, oper):
45 with self.conn.cursor() as cur:
46 cur.execute("""INSERT INTO word (word_token, word, class, type, operator)
47 VALUES (%s, %s, %s, %s, %s)
48 """, (word_token, word, cls, typ, oper))
52 def add_country(self, country_code, word_token):
53 with self.conn.cursor() as cur:
54 cur.execute("INSERT INTO word (word_token, country_code) VALUES(%s, %s)",
55 (word_token, country_code))
59 def add_postcode(self, word_token, postcode):
60 with self.conn.cursor() as cur:
61 cur.execute("""INSERT INTO word (word_token, word, class, type)
62 VALUES (%s, %s, 'place', 'postcode')
63 """, (word_token, postcode))
68 with self.conn.cursor() as cur:
69 return cur.scalar("SELECT count(*) FROM word")
72 def count_special(self):
73 with self.conn.cursor() as cur:
74 return cur.scalar("SELECT count(*) FROM word WHERE class != 'place'")
77 def get_special(self):
78 with self.conn.cursor() as cur:
79 cur.execute("""SELECT word_token, word, class, type, operator
80 FROM word WHERE class != 'place'""")
81 result = set((tuple(row) for row in cur))
82 assert len(result) == cur.rowcount, "Word table has duplicates."
86 def get_country(self):
87 with self.conn.cursor() as cur:
88 cur.execute("""SELECT country_code, word_token
89 FROM word WHERE country_code is not null""")
90 result = set((tuple(row) for row in cur))
91 assert len(result) == cur.rowcount, "Word table has duplicates."
95 def get_postcodes(self):
96 with self.conn.cursor() as cur:
97 cur.execute("""SELECT word FROM word
98 WHERE class = 'place' and type = 'postcode'""")
99 return set((row[0] for row in cur))
101 def get_partial_words(self):
102 with self.conn.cursor() as cur:
103 cur.execute("""SELECT word_token, search_name_count FROM word
104 WHERE class is null and country_code is null
105 and not word_token like ' %'""")
106 return set((tuple(row) for row in cur))
109 class MockPlacexTable:
110 """ A placex table for testing.
112 def __init__(self, conn):
113 self.idseq = itertools.count(10000)
115 with conn.cursor() as cur:
116 cur.execute("""CREATE TABLE placex (
118 parent_place_id BIGINT,
119 linked_place_id BIGINT,
121 indexed_date TIMESTAMP,
122 geometry_sector INTEGER,
123 rank_address SMALLINT,
124 rank_search SMALLINT,
126 indexed_status SMALLINT,
132 admin_level smallint,
135 geometry Geometry(Geometry,4326),
137 country_code varchar(2),
140 centroid GEOMETRY(Geometry, 4326))""")
141 cur.execute("CREATE SEQUENCE IF NOT EXISTS seq_place")
144 def add(self, osm_type='N', osm_id=None, cls='amenity', typ='cafe', names=None,
145 admin_level=None, address=None, extratags=None, geom='POINT(10 4)',
147 with self.conn.cursor() as cur:
148 psycopg2.extras.register_hstore(cur)
149 cur.execute("""INSERT INTO placex (place_id, osm_type, osm_id, class,
150 type, name, admin_level, address,
151 extratags, geometry, country_code)
152 VALUES(nextval('seq_place'), %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)""",
153 (osm_type, osm_id or next(self.idseq), cls, typ, names,
154 admin_level, address, extratags, 'SRID=4326;' + geom,
159 class MockPropertyTable:
160 """ A property table for testing.
162 def __init__(self, conn):
166 def set(self, name, value):
167 """ Set a property in the table to the given value.
169 properties.set_property(self.conn, name, value)