]> git.openstreetmap.org Git - nominatim.git/blob - test/python/mocks.py
Merge pull request #2357 from lonvia/legacy-tokenizer-fix-word-entries
[nominatim.git] / test / python / mocks.py
1 """
2 Custom mocks for testing.
3 """
4 import itertools
5
6 import psycopg2.extras
7
8 from nominatim.db import properties
9
10 class MockParamCapture:
11     """ Mock that records the parameters with which a function was called
12         as well as the number of calls.
13     """
14     def __init__(self, retval=0):
15         self.called = 0
16         self.return_value = retval
17         self.last_args = None
18         self.last_kwargs = None
19
20     def __call__(self, *args, **kwargs):
21         self.called += 1
22         self.last_args = args
23         self.last_kwargs = kwargs
24         return self.return_value
25
26
27 class MockWordTable:
28     """ A word table for testing.
29     """
30     def __init__(self, conn):
31         self.conn = conn
32         with conn.cursor() as cur:
33             cur.execute("""CREATE TABLE word (word_id INTEGER,
34                                               word_token text,
35                                               word text,
36                                               class text,
37                                               type text,
38                                               country_code varchar(2),
39                                               search_name_count INTEGER,
40                                               operator TEXT)""")
41
42         conn.commit()
43
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))
49         self.conn.commit()
50
51
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))
56         self.conn.commit()
57
58
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))
64         self.conn.commit()
65
66
67     def count(self):
68         with self.conn.cursor() as cur:
69             return cur.scalar("SELECT count(*) FROM word")
70
71
72     def count_special(self):
73         with self.conn.cursor() as cur:
74             return cur.scalar("SELECT count(*) FROM word WHERE class != 'place'")
75
76
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."
83             return result
84
85
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."
92             return result
93
94
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))
100
101
102 class MockPlacexTable:
103     """ A placex table for testing.
104     """
105     def __init__(self, conn):
106         self.idseq = itertools.count(10000)
107         self.conn = conn
108         with conn.cursor() as cur:
109             cur.execute("""CREATE TABLE placex (
110                                place_id BIGINT,
111                                parent_place_id BIGINT,
112                                linked_place_id BIGINT,
113                                importance FLOAT,
114                                indexed_date TIMESTAMP,
115                                geometry_sector INTEGER,
116                                rank_address SMALLINT,
117                                rank_search SMALLINT,
118                                partition SMALLINT,
119                                indexed_status SMALLINT,
120                                osm_id int8,
121                                osm_type char(1),
122                                class text,
123                                type text,
124                                name hstore,
125                                admin_level smallint,
126                                address hstore,
127                                extratags hstore,
128                                geometry Geometry(Geometry,4326),
129                                wikipedia TEXT,
130                                country_code varchar(2),
131                                housenumber TEXT,
132                                postcode TEXT,
133                                centroid GEOMETRY(Geometry, 4326))""")
134             cur.execute("CREATE SEQUENCE IF NOT EXISTS seq_place")
135         conn.commit()
136
137     def add(self, osm_type='N', osm_id=None, cls='amenity', typ='cafe', names=None,
138             admin_level=None, address=None, extratags=None, geom='POINT(10 4)',
139             country=None):
140         with self.conn.cursor() as cur:
141             psycopg2.extras.register_hstore(cur)
142             cur.execute("""INSERT INTO placex (place_id, osm_type, osm_id, class,
143                                                type, name, admin_level, address,
144                                                extratags, geometry, country_code)
145                             VALUES(nextval('seq_place'), %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)""",
146                         (osm_type, osm_id or next(self.idseq), cls, typ, names,
147                          admin_level, address, extratags, 'SRID=4326;' + geom,
148                          country))
149         self.conn.commit()
150
151
152 class MockPropertyTable:
153     """ A property table for testing.
154     """
155     def __init__(self, conn):
156         self.conn = conn
157
158
159     def set(self, name, value):
160         """ Set a property in the table to the given value.
161         """
162         properties.set_property(self.conn, name, value)