]> git.openstreetmap.org Git - nominatim.git/blob - test/python/test_tokenizer_legacy.py
test: fix linting errors
[nominatim.git] / test / python / test_tokenizer_legacy.py
1 """
2 Test for legacy tokenizer.
3 """
4 import shutil
5
6 import pytest
7
8 from nominatim.tokenizer import legacy_tokenizer
9 from nominatim.db import properties
10 from nominatim.errors import UsageError
11
12 @pytest.fixture
13 def test_config(def_config, tmp_path):
14     def_config.project_dir = tmp_path / 'project'
15     def_config.project_dir.mkdir()
16
17     module_dir = tmp_path / 'module_src'
18     module_dir.mkdir()
19     (module_dir / 'nominatim.so').write_text('TEST nomiantim.so')
20
21     def_config.lib_dir.module = module_dir
22
23     sqldir = tmp_path / 'sql'
24     sqldir.mkdir()
25     (sqldir / 'tokenizer').mkdir()
26     (sqldir / 'tokenizer' / 'legacy_tokenizer.sql').write_text("SELECT 'a'")
27     (sqldir / 'words.sql').write_text("SELECT 'a'")
28     shutil.copy(str(def_config.lib_dir.sql / 'tokenizer' / 'legacy_tokenizer_tables.sql'),
29                 str(sqldir / 'tokenizer' / 'legacy_tokenizer_tables.sql'))
30
31     def_config.lib_dir.sql = sqldir
32     def_config.lib_dir.data = sqldir
33
34     return def_config
35
36
37 @pytest.fixture
38 def tokenizer_factory(dsn, tmp_path, property_table):
39     (tmp_path / 'tokenizer').mkdir()
40
41     def _maker():
42         return legacy_tokenizer.create(dsn, tmp_path / 'tokenizer')
43
44     return _maker
45
46
47 @pytest.fixture
48 def tokenizer_setup(tokenizer_factory, test_config, monkeypatch, sql_preprocessor):
49     monkeypatch.setattr(legacy_tokenizer, '_check_module', lambda m, c: None)
50     tok = tokenizer_factory()
51     tok.init_new_db(test_config)
52
53
54 @pytest.fixture
55 def analyzer(tokenizer_factory, test_config, monkeypatch, sql_preprocessor,
56              word_table, temp_db_with_extensions, tmp_path):
57     sql = tmp_path / 'sql' / 'tokenizer' / 'legacy_tokenizer.sql'
58     sql.write_text("""
59         CREATE OR REPLACE FUNCTION getorcreate_housenumber_id(lookup_word TEXT)
60           RETURNS INTEGER AS $$ SELECT 342; $$ LANGUAGE SQL;
61         """)
62
63     monkeypatch.setattr(legacy_tokenizer, '_check_module', lambda m, c: None)
64     monkeypatch.setenv('NOMINATIM_TERM_NORMALIZATION', ':: lower();')
65     tok = tokenizer_factory()
66     tok.init_new_db(test_config)
67     monkeypatch.undo()
68
69     with tok.name_analyzer() as analyzer:
70         yield analyzer
71
72
73 @pytest.fixture
74 def make_standard_name(temp_db_cursor):
75     temp_db_cursor.execute("""CREATE OR REPLACE FUNCTION make_standard_name(name TEXT)
76                               RETURNS TEXT AS $$ SELECT ' ' || name; $$ LANGUAGE SQL""")
77
78
79 @pytest.fixture
80 def create_postcode_id(temp_db_cursor):
81     temp_db_cursor.execute("""CREATE OR REPLACE FUNCTION create_postcode_id(postcode TEXT)
82                               RETURNS BOOLEAN AS $$
83                               INSERT INTO word (word_token, word, class, type)
84                                 VALUES (' ' || postcode, postcode, 'place', 'postcode')
85                               RETURNING True;
86                               $$ LANGUAGE SQL""")
87
88
89 @pytest.fixture
90 def make_keywords(temp_db_cursor, temp_db_with_extensions):
91     temp_db_cursor.execute(
92         """CREATE OR REPLACE FUNCTION make_keywords(names HSTORE)
93            RETURNS INTEGER[] AS $$ SELECT ARRAY[1, 2, 3] $$ LANGUAGE SQL""")
94
95 def test_init_new(tokenizer_factory, test_config, monkeypatch,
96                   temp_db_conn, sql_preprocessor):
97     monkeypatch.setenv('NOMINATIM_TERM_NORMALIZATION', 'xxvv')
98     monkeypatch.setattr(legacy_tokenizer, '_check_module', lambda m, c: None)
99
100     tok = tokenizer_factory()
101     tok.init_new_db(test_config)
102
103     assert properties.get_property(temp_db_conn, legacy_tokenizer.DBCFG_NORMALIZATION) == 'xxvv'
104
105     outfile = test_config.project_dir / 'module' / 'nominatim.so'
106
107     assert outfile.exists()
108     assert outfile.read_text() == 'TEST nomiantim.so'
109     assert outfile.stat().st_mode == 33261
110
111
112 def test_init_module_load_failed(tokenizer_factory, test_config):
113     tok = tokenizer_factory()
114
115     with pytest.raises(UsageError):
116         tok.init_new_db(test_config)
117
118
119 def test_init_module_custom(tokenizer_factory, test_config,
120                             monkeypatch, tmp_path, sql_preprocessor):
121     module_dir = (tmp_path / 'custom').resolve()
122     module_dir.mkdir()
123     (module_dir/ 'nominatim.so').write_text('CUSTOM nomiantim.so')
124
125     monkeypatch.setenv('NOMINATIM_DATABASE_MODULE_PATH', str(module_dir))
126     monkeypatch.setattr(legacy_tokenizer, '_check_module', lambda m, c: None)
127
128     tok = tokenizer_factory()
129     tok.init_new_db(test_config)
130
131     assert not (test_config.project_dir / 'module').exists()
132
133
134 def test_init_from_project(tokenizer_setup, tokenizer_factory):
135     tok = tokenizer_factory()
136
137     tok.init_from_project()
138
139     assert tok.normalization is not None
140
141
142 def test_update_sql_functions(sql_preprocessor, temp_db_conn,
143                               tokenizer_factory, test_config, table_factory,
144                               monkeypatch, temp_db_cursor):
145     monkeypatch.setenv('NOMINATIM_MAX_WORD_FREQUENCY', '1133')
146     monkeypatch.setattr(legacy_tokenizer, '_check_module', lambda m, c: None)
147     tok = tokenizer_factory()
148     tok.init_new_db(test_config)
149     monkeypatch.undo()
150
151     assert properties.get_property(temp_db_conn, legacy_tokenizer.DBCFG_MAXWORDFREQ) == '1133'
152
153     table_factory('test', 'txt TEXT')
154
155     func_file = test_config.lib_dir.sql / 'tokenizer' / 'legacy_tokenizer.sql'
156     func_file.write_text("""INSERT INTO test VALUES ('{{max_word_freq}}'),
157                                                    ('{{modulepath}}')""")
158
159     tok.update_sql_functions(test_config)
160
161     test_content = temp_db_cursor.row_set('SELECT * FROM test')
162     assert test_content == set((('1133', ), (str(test_config.project_dir / 'module'), )))
163
164
165 def test_migrate_database(tokenizer_factory, test_config, temp_db_conn, monkeypatch):
166     monkeypatch.setattr(legacy_tokenizer, '_check_module', lambda m, c: None)
167     tok = tokenizer_factory()
168     tok.migrate_database(test_config)
169
170     assert properties.get_property(temp_db_conn, legacy_tokenizer.DBCFG_MAXWORDFREQ) is not None
171     assert properties.get_property(temp_db_conn, legacy_tokenizer.DBCFG_NORMALIZATION) is not None
172
173     outfile = test_config.project_dir / 'module' / 'nominatim.so'
174
175     assert outfile.exists()
176     assert outfile.read_text() == 'TEST nomiantim.so'
177     assert outfile.stat().st_mode == 33261
178
179
180 def test_normalize(analyzer):
181     assert analyzer.normalize('TEsT') == 'test'
182
183
184 def test_update_postcodes_from_db_empty(analyzer, table_factory, word_table,
185                                         create_postcode_id):
186     table_factory('location_postcode', 'postcode TEXT',
187                   content=(('1234',), ('12 34',), ('AB23',), ('1234',)))
188
189     analyzer.update_postcodes_from_db()
190
191     assert word_table.count() == 3
192     assert word_table.get_postcodes() == {'1234', '12 34', 'AB23'}
193
194
195 def test_update_postcodes_from_db_add_and_remove(analyzer, table_factory, word_table,
196                                                  create_postcode_id):
197     table_factory('location_postcode', 'postcode TEXT',
198                   content=(('1234',), ('45BC', ), ('XX45', )))
199     word_table.add_postcode(' 1234', '1234')
200     word_table.add_postcode(' 5678', '5678')
201
202     analyzer.update_postcodes_from_db()
203
204     assert word_table.count() == 3
205     assert word_table.get_postcodes() == {'1234', '45BC', 'XX45'}
206
207
208 def test_update_special_phrase_empty_table(analyzer, word_table, make_standard_name):
209     analyzer.update_special_phrases([
210         ("König bei", "amenity", "royal", "near"),
211         ("Könige", "amenity", "royal", "-"),
212         ("strasse", "highway", "primary", "in")
213     ], True)
214
215     assert word_table.get_special() \
216                == set(((' könig bei', 'könig bei', 'amenity', 'royal', 'near'),
217                        (' könige', 'könige', 'amenity', 'royal', None),
218                        (' strasse', 'strasse', 'highway', 'primary', 'in')))
219
220
221 def test_update_special_phrase_delete_all(analyzer, word_table, make_standard_name):
222     word_table.add_special(' foo', 'foo', 'amenity', 'prison', 'in')
223     word_table.add_special(' bar', 'bar', 'highway', 'road', None)
224
225     assert word_table.count_special() == 2
226
227     analyzer.update_special_phrases([], True)
228
229     assert word_table.count_special() == 0
230
231
232 def test_update_special_phrases_no_replace(analyzer, word_table, make_standard_name):
233     word_table.add_special(' foo', 'foo', 'amenity', 'prison', 'in')
234     word_table.add_special(' bar', 'bar', 'highway', 'road', None)
235
236     assert word_table.count_special() == 2
237
238     analyzer.update_special_phrases([], False)
239
240     assert word_table.count_special() == 2
241
242
243 def test_update_special_phrase_modify(analyzer, word_table, make_standard_name):
244     word_table.add_special(' foo', 'foo', 'amenity', 'prison', 'in')
245     word_table.add_special(' bar', 'bar', 'highway', 'road', None)
246
247     assert word_table.count_special() == 2
248
249     analyzer.update_special_phrases([
250         ('prison', 'amenity', 'prison', 'in'),
251         ('bar', 'highway', 'road', '-'),
252         ('garden', 'leisure', 'garden', 'near')
253     ], True)
254
255     assert word_table.get_special() \
256                == set(((' prison', 'prison', 'amenity', 'prison', 'in'),
257                        (' bar', 'bar', 'highway', 'road', None),
258                        (' garden', 'garden', 'leisure', 'garden', 'near')))
259
260
261 def test_process_place_names(analyzer, make_keywords):
262     info = analyzer.process_place({'name' : {'name' : 'Soft bAr', 'ref': '34'}})
263
264     assert info['names'] == '{1,2,3}'
265
266
267 @pytest.mark.parametrize('pcode', ['12345', 'AB 123', '34-345'])
268 def test_process_place_postcode(analyzer, create_postcode_id, word_table, pcode):
269     analyzer.process_place({'address': {'postcode' : pcode}})
270
271     assert word_table.get_postcodes() == {pcode, }
272
273
274 @pytest.mark.parametrize('pcode', ['12:23', 'ab;cd;f', '123;836'])
275 def test_process_place_bad_postcode(analyzer, create_postcode_id, word_table, pcode):
276     analyzer.process_place({'address': {'postcode' : pcode}})
277
278     assert not word_table.get_postcodes()
279
280
281 class TestHousenumberName:
282
283     @staticmethod
284     @pytest.fixture(autouse=True)
285     def setup_create_housenumbers(temp_db_cursor):
286         temp_db_cursor.execute("""CREATE OR REPLACE FUNCTION create_housenumbers(
287                                       housenumbers TEXT[],
288                                       OUT tokens TEXT, OUT normtext TEXT)
289                                   AS $$
290                                   SELECT housenumbers::TEXT, array_to_string(housenumbers, ';')
291                                   $$ LANGUAGE SQL""")
292
293
294     @staticmethod
295     @pytest.mark.parametrize('hnr', ['123a', '1', '101'])
296     def test_process_place_housenumbers_simple(analyzer, hnr):
297         info = analyzer.process_place({'address': {'housenumber' : hnr}})
298
299         assert info['hnr'] == hnr
300         assert info['hnr_tokens'].startswith("{")
301
302
303     @staticmethod
304     def test_process_place_housenumbers_lists(analyzer):
305         info = analyzer.process_place({'address': {'conscriptionnumber' : '1; 2;3'}})
306
307         assert set(info['hnr'].split(';')) == set(('1', '2', '3'))
308
309
310     @staticmethod
311     def test_process_place_housenumbers_duplicates(analyzer):
312         info = analyzer.process_place({'address': {'housenumber' : '134',
313                                                    'conscriptionnumber' : '134',
314                                                    'streetnumber' : '99a'}})
315
316         assert set(info['hnr'].split(';')) == set(('134', '99a'))