]> git.openstreetmap.org Git - nominatim.git/blob - test/python/test_tokenizer_icu.py
Merge pull request #2455 from lonvia/adjust-address-levels-slovakia
[nominatim.git] / test / python / test_tokenizer_icu.py
1 """
2 Tests for Legacy ICU tokenizer.
3 """
4 import shutil
5 import yaml
6
7 import pytest
8
9 from nominatim.tokenizer import icu_tokenizer
10 from nominatim.tokenizer.icu_name_processor import ICUNameProcessorRules
11 from nominatim.tokenizer.icu_rule_loader import ICURuleLoader
12 from nominatim.db import properties
13 from nominatim.db.sql_preprocessor import SQLPreprocessor
14
15 from mock_icu_word_table import MockIcuWordTable
16
17 @pytest.fixture
18 def word_table(temp_db_conn):
19     return MockIcuWordTable(temp_db_conn)
20
21
22 @pytest.fixture
23 def test_config(def_config, tmp_path):
24     def_config.project_dir = tmp_path / 'project'
25     def_config.project_dir.mkdir()
26
27     sqldir = tmp_path / 'sql'
28     sqldir.mkdir()
29     (sqldir / 'tokenizer').mkdir()
30     (sqldir / 'tokenizer' / 'icu_tokenizer.sql').write_text("SELECT 'a'")
31     shutil.copy(str(def_config.lib_dir.sql / 'tokenizer' / 'icu_tokenizer_tables.sql'),
32                 str(sqldir / 'tokenizer' / 'icu_tokenizer_tables.sql'))
33
34     def_config.lib_dir.sql = sqldir
35
36     return def_config
37
38
39 @pytest.fixture
40 def tokenizer_factory(dsn, tmp_path, property_table,
41                       sql_preprocessor, place_table, word_table):
42     (tmp_path / 'tokenizer').mkdir()
43
44     def _maker():
45         return icu_tokenizer.create(dsn, tmp_path / 'tokenizer')
46
47     return _maker
48
49
50 @pytest.fixture
51 def db_prop(temp_db_conn):
52     def _get_db_property(name):
53         return properties.get_property(temp_db_conn, name)
54
55     return _get_db_property
56
57
58 @pytest.fixture
59 def analyzer(tokenizer_factory, test_config, monkeypatch,
60              temp_db_with_extensions, tmp_path):
61     sql = tmp_path / 'sql' / 'tokenizer' / 'icu_tokenizer.sql'
62     sql.write_text("SELECT 'a';")
63
64     monkeypatch.setenv('NOMINATIM_TERM_NORMALIZATION', ':: lower();')
65     tok = tokenizer_factory()
66     tok.init_new_db(test_config)
67     monkeypatch.undo()
68
69     def _mk_analyser(norm=("[[:Punctuation:][:Space:]]+ > ' '",), trans=(':: upper()',),
70                      variants=('~gasse -> gasse', 'street => st', )):
71         cfgstr = {'normalization' : list(norm),
72                    'transliteration' : list(trans),
73                    'variants' : [ {'words': list(variants)}]}
74         tok.naming_rules = ICUNameProcessorRules(loader=ICURuleLoader(cfgstr))
75
76         return tok.name_analyzer()
77
78     return _mk_analyser
79
80 @pytest.fixture
81 def sql_functions(temp_db_conn, def_config, src_dir):
82     orig_sql = def_config.lib_dir.sql
83     def_config.lib_dir.sql = src_dir / 'lib-sql'
84     sqlproc = SQLPreprocessor(temp_db_conn, def_config)
85     sqlproc.run_sql_file(temp_db_conn, 'functions/utils.sql')
86     sqlproc.run_sql_file(temp_db_conn, 'tokenizer/icu_tokenizer.sql')
87     def_config.lib_dir.sql = orig_sql
88
89
90 @pytest.fixture
91 def getorcreate_full_word(temp_db_cursor):
92     temp_db_cursor.execute("""CREATE OR REPLACE FUNCTION getorcreate_full_word(
93                                                  norm_term TEXT, lookup_terms TEXT[],
94                                                  OUT full_token INT,
95                                                  OUT partial_tokens INT[])
96   AS $$
97 DECLARE
98   partial_terms TEXT[] = '{}'::TEXT[];
99   term TEXT;
100   term_id INTEGER;
101   term_count INTEGER;
102 BEGIN
103   SELECT min(word_id) INTO full_token
104     FROM word WHERE info->>'word' = norm_term and type = 'W';
105
106   IF full_token IS NULL THEN
107     full_token := nextval('seq_word');
108     INSERT INTO word (word_id, word_token, type, info)
109       SELECT full_token, lookup_term, 'W',
110              json_build_object('word', norm_term, 'count', 0)
111         FROM unnest(lookup_terms) as lookup_term;
112   END IF;
113
114   FOR term IN SELECT unnest(string_to_array(unnest(lookup_terms), ' ')) LOOP
115     term := trim(term);
116     IF NOT (ARRAY[term] <@ partial_terms) THEN
117       partial_terms := partial_terms || term;
118     END IF;
119   END LOOP;
120
121   partial_tokens := '{}'::INT[];
122   FOR term IN SELECT unnest(partial_terms) LOOP
123     SELECT min(word_id), max(info->>'count') INTO term_id, term_count
124       FROM word WHERE word_token = term and type = 'w';
125
126     IF term_id IS NULL THEN
127       term_id := nextval('seq_word');
128       term_count := 0;
129       INSERT INTO word (word_id, word_token, type, info)
130         VALUES (term_id, term, 'w', json_build_object('count', term_count));
131     END IF;
132
133     IF NOT (ARRAY[term_id] <@ partial_tokens) THEN
134       partial_tokens := partial_tokens || term_id;
135     END IF;
136   END LOOP;
137 END;
138 $$
139 LANGUAGE plpgsql;
140                               """)
141
142
143 @pytest.fixture
144 def getorcreate_hnr_id(temp_db_cursor):
145     temp_db_cursor.execute("""CREATE OR REPLACE FUNCTION getorcreate_hnr_id(lookup_term TEXT)
146                               RETURNS INTEGER AS $$
147                                 SELECT -nextval('seq_word')::INTEGER; $$ LANGUAGE SQL""")
148
149
150 def test_init_new(tokenizer_factory, test_config, monkeypatch, db_prop):
151     monkeypatch.setenv('NOMINATIM_TERM_NORMALIZATION', ':: lower();')
152
153     tok = tokenizer_factory()
154     tok.init_new_db(test_config)
155
156     assert db_prop(icu_tokenizer.DBCFG_TERM_NORMALIZATION) == ':: lower();'
157
158
159 def test_init_word_table(tokenizer_factory, test_config, place_row, word_table):
160     place_row(names={'name' : 'Test Area', 'ref' : '52'})
161     place_row(names={'name' : 'No Area'})
162     place_row(names={'name' : 'Holzstrasse'})
163
164     tok = tokenizer_factory()
165     tok.init_new_db(test_config)
166
167     assert word_table.get_partial_words() == {('test', 1),
168                                               ('no', 1), ('area', 2),
169                                               ('holz', 1), ('strasse', 1),
170                                               ('str', 1)}
171
172
173 def test_init_from_project(monkeypatch, test_config, tokenizer_factory):
174     monkeypatch.setenv('NOMINATIM_TERM_NORMALIZATION', ':: lower();')
175     tok = tokenizer_factory()
176     tok.init_new_db(test_config)
177     monkeypatch.undo()
178
179     tok = tokenizer_factory()
180     tok.init_from_project()
181
182     assert tok.naming_rules is not None
183     assert tok.term_normalization == ':: lower();'
184
185
186 def test_update_sql_functions(db_prop, temp_db_cursor,
187                               tokenizer_factory, test_config, table_factory,
188                               monkeypatch):
189     tok = tokenizer_factory()
190     tok.init_new_db(test_config)
191
192     table_factory('test', 'txt TEXT')
193
194     func_file = test_config.lib_dir.sql / 'tokenizer' / 'icu_tokenizer.sql'
195     func_file.write_text("""INSERT INTO test VALUES (1133)""")
196
197     tok.update_sql_functions(test_config)
198
199     test_content = temp_db_cursor.row_set('SELECT * FROM test')
200     assert test_content == set((('1133', ), ))
201
202
203 def test_normalize_postcode(analyzer):
204     with analyzer() as anl:
205         anl.normalize_postcode('123') == '123'
206         anl.normalize_postcode('ab-34 ') == 'AB-34'
207         anl.normalize_postcode('38 Б') == '38 Б'
208
209
210 def test_update_postcodes_from_db_empty(analyzer, table_factory, word_table):
211     table_factory('location_postcode', 'postcode TEXT',
212                   content=(('1234',), ('12 34',), ('AB23',), ('1234',)))
213
214     with analyzer() as anl:
215         anl.update_postcodes_from_db()
216
217     assert word_table.count() == 3
218     assert word_table.get_postcodes() == {'1234', '12 34', 'AB23'}
219
220
221 def test_update_postcodes_from_db_add_and_remove(analyzer, table_factory, word_table):
222     table_factory('location_postcode', 'postcode TEXT',
223                   content=(('1234',), ('45BC', ), ('XX45', )))
224     word_table.add_postcode(' 1234', '1234')
225     word_table.add_postcode(' 5678', '5678')
226
227     with analyzer() as anl:
228         anl.update_postcodes_from_db()
229
230     assert word_table.count() == 3
231     assert word_table.get_postcodes() == {'1234', '45BC', 'XX45'}
232
233
234 def test_update_special_phrase_empty_table(analyzer, word_table):
235     with analyzer() as anl:
236         anl.update_special_phrases([
237             ("König  bei", "amenity", "royal", "near"),
238             ("Könige ", "amenity", "royal", "-"),
239             ("street", "highway", "primary", "in")
240         ], True)
241
242     assert word_table.get_special() \
243                == {('KÖNIG BEI', 'König bei', 'amenity', 'royal', 'near'),
244                    ('KÖNIGE', 'Könige', 'amenity', 'royal', None),
245                    ('STREET', 'street', 'highway', 'primary', 'in')}
246
247
248 def test_update_special_phrase_delete_all(analyzer, word_table):
249     word_table.add_special('FOO', 'foo', 'amenity', 'prison', 'in')
250     word_table.add_special('BAR', 'bar', 'highway', 'road', None)
251
252     assert word_table.count_special() == 2
253
254     with analyzer() as anl:
255         anl.update_special_phrases([], True)
256
257     assert word_table.count_special() == 0
258
259
260 def test_update_special_phrases_no_replace(analyzer, word_table):
261     word_table.add_special('FOO', 'foo', 'amenity', 'prison', 'in')
262     word_table.add_special('BAR', 'bar', 'highway', 'road', None)
263
264     assert word_table.count_special() == 2
265
266     with analyzer() as anl:
267         anl.update_special_phrases([], False)
268
269     assert word_table.count_special() == 2
270
271
272 def test_update_special_phrase_modify(analyzer, word_table):
273     word_table.add_special('FOO', 'foo', 'amenity', 'prison', 'in')
274     word_table.add_special('BAR', 'bar', 'highway', 'road', None)
275
276     assert word_table.count_special() == 2
277
278     with analyzer() as anl:
279         anl.update_special_phrases([
280             ('prison', 'amenity', 'prison', 'in'),
281             ('bar', 'highway', 'road', '-'),
282             ('garden', 'leisure', 'garden', 'near')
283         ], True)
284
285     assert word_table.get_special() \
286                == {('PRISON', 'prison', 'amenity', 'prison', 'in'),
287                    ('BAR', 'bar', 'highway', 'road', None),
288                    ('GARDEN', 'garden', 'leisure', 'garden', 'near')}
289
290
291 def test_add_country_names_new(analyzer, word_table):
292     with analyzer() as anl:
293         anl.add_country_names('es', {'name': 'Espagña', 'name:en': 'Spain'})
294
295     assert word_table.get_country() == {('es', 'ESPAGÑA'), ('es', 'SPAIN')}
296
297
298 def test_add_country_names_extend(analyzer, word_table):
299     word_table.add_country('ch', 'SCHWEIZ')
300
301     with analyzer() as anl:
302         anl.add_country_names('ch', {'name': 'Schweiz', 'name:fr': 'Suisse'})
303
304     assert word_table.get_country() == {('ch', 'SCHWEIZ'), ('ch', 'SUISSE')}
305
306
307 class TestPlaceNames:
308
309     @pytest.fixture(autouse=True)
310     def setup(self, analyzer, sql_functions):
311         with analyzer() as anl:
312             self.analyzer = anl
313             yield anl
314
315
316     def expect_name_terms(self, info, *expected_terms):
317         tokens = self.analyzer.get_word_token_info(expected_terms)
318         print (tokens)
319         for token in tokens:
320             assert token[2] is not None, "No token for {0}".format(token)
321
322         assert eval(info['names']) == set((t[2] for t in tokens))
323
324
325     def test_simple_names(self):
326         info = self.analyzer.process_place({'name': {'name': 'Soft bAr', 'ref': '34'}})
327
328         self.expect_name_terms(info, '#Soft bAr', '#34', 'Soft', 'bAr', '34')
329
330
331     @pytest.mark.parametrize('sep', [',' , ';'])
332     def test_names_with_separator(self, sep):
333         info = self.analyzer.process_place({'name': {'name': sep.join(('New York', 'Big Apple'))}})
334
335         self.expect_name_terms(info, '#New York', '#Big Apple',
336                                      'new', 'york', 'big', 'apple')
337
338
339     def test_full_names_with_bracket(self):
340         info = self.analyzer.process_place({'name': {'name': 'Houseboat (left)'}})
341
342         self.expect_name_terms(info, '#Houseboat (left)', '#Houseboat',
343                                      'houseboat', 'left')
344
345
346     def test_country_name(self, word_table):
347         info = self.analyzer.process_place({'name': {'name': 'Norge'},
348                                            'country_feature': 'no'})
349
350         self.expect_name_terms(info, '#norge', 'norge')
351         assert word_table.get_country() == {('no', 'NORGE')}
352
353
354 class TestPlaceAddress:
355
356     @pytest.fixture(autouse=True)
357     def setup(self, analyzer, sql_functions):
358         with analyzer(trans=(":: upper()", "'🜵' > ' '")) as anl:
359             self.analyzer = anl
360             yield anl
361
362
363     def process_address(self, **kwargs):
364         return self.analyzer.process_place({'address': kwargs})
365
366
367     def name_token_set(self, *expected_terms):
368         tokens = self.analyzer.get_word_token_info(expected_terms)
369         for token in tokens:
370             assert token[2] is not None, "No token for {0}".format(token)
371
372         return set((t[2] for t in tokens))
373
374
375     @pytest.mark.parametrize('pcode', ['12345', 'AB 123', '34-345'])
376     def test_process_place_postcode(self, word_table, pcode):
377         self.process_address(postcode=pcode)
378
379         assert word_table.get_postcodes() == {pcode, }
380
381
382     @pytest.mark.parametrize('pcode', ['12:23', 'ab;cd;f', '123;836'])
383     def test_process_place_bad_postcode(self, word_table, pcode):
384         self.process_address(postcode=pcode)
385
386         assert not word_table.get_postcodes()
387
388
389     @pytest.mark.parametrize('hnr', ['123a', '1', '101'])
390     def test_process_place_housenumbers_simple(self, hnr, getorcreate_hnr_id):
391         info = self.process_address(housenumber=hnr)
392
393         assert info['hnr'] == hnr.upper()
394         assert info['hnr_tokens'] == "{-1}"
395
396
397     def test_process_place_housenumbers_lists(self, getorcreate_hnr_id):
398         info = self.process_address(conscriptionnumber='1; 2;3')
399
400         assert set(info['hnr'].split(';')) == set(('1', '2', '3'))
401         assert info['hnr_tokens'] == "{-1,-2,-3}"
402
403
404     def test_process_place_housenumbers_duplicates(self, getorcreate_hnr_id):
405         info = self.process_address(housenumber='134',
406                                     conscriptionnumber='134',
407                                     streetnumber='99a')
408
409         assert set(info['hnr'].split(';')) == set(('134', '99A'))
410         assert info['hnr_tokens'] == "{-1,-2}"
411
412
413     def test_process_place_housenumbers_cached(self, getorcreate_hnr_id):
414         info = self.process_address(housenumber="45")
415         assert info['hnr_tokens'] == "{-1}"
416
417         info = self.process_address(housenumber="46")
418         assert info['hnr_tokens'] == "{-2}"
419
420         info = self.process_address(housenumber="41;45")
421         assert eval(info['hnr_tokens']) == {-1, -3}
422
423         info = self.process_address(housenumber="41")
424         assert eval(info['hnr_tokens']) == {-3}
425
426
427     def test_process_place_street(self):
428         info = self.process_address(street='Grand Road')
429
430         assert eval(info['street']) == self.name_token_set('GRAND', 'ROAD')
431
432
433     def test_process_place_street_empty(self):
434         info = self.process_address(street='🜵')
435
436         assert 'street' not in info
437
438
439     def test_process_place_place(self):
440         info = self.process_address(place='Honu Lulu')
441
442         assert eval(info['place']) == self.name_token_set('HONU', 'LULU')
443
444
445     def test_process_place_place_empty(self):
446         info = self.process_address(place='🜵')
447
448         assert 'place' not in info
449
450
451     def test_process_place_address_terms(self):
452         info = self.process_address(country='de', city='Zwickau', state='Sachsen',
453                                     suburb='Zwickau', street='Hauptstr',
454                                     full='right behind the church')
455
456         city = self.name_token_set('ZWICKAU')
457         state = self.name_token_set('SACHSEN')
458
459         result = {k: eval(v) for k,v in info['addr'].items()}
460
461         assert result == {'city': city, 'suburb': city, 'state': state}
462
463
464     def test_process_place_address_terms_empty(self):
465         info = self.process_address(country='de', city=' ', street='Hauptstr',
466                                     full='right behind the church')
467
468         assert 'addr' not in info
469