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