2021-05-28 23:06:13 +03:00
|
|
|
"""
|
|
|
|
Tests for import name normalisation and variant generation.
|
|
|
|
"""
|
|
|
|
from textwrap import dedent
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
|
|
|
from nominatim.tokenizer.icu_rule_loader import ICURuleLoader
|
|
|
|
from nominatim.tokenizer.icu_name_processor import ICUNameProcessor, ICUNameProcessorRules
|
|
|
|
|
|
|
|
from nominatim.errors import UsageError
|
|
|
|
|
|
|
|
@pytest.fixture
|
|
|
|
def cfgfile(tmp_path, suffix='.yaml'):
|
|
|
|
def _create_config(suffixes, abbr):
|
|
|
|
content = dedent("""\
|
|
|
|
normalization:
|
|
|
|
- ":: NFD ()"
|
2021-06-10 18:18:23 +03:00
|
|
|
- "'🜳' > ' '"
|
2021-05-28 23:06:13 +03:00
|
|
|
- "[[:Nonspacing Mark:] [:Cf:]] >"
|
|
|
|
- ":: lower ()"
|
|
|
|
- "[[:Punctuation:][:Space:]]+ > ' '"
|
|
|
|
- ":: NFC ()"
|
|
|
|
transliteration:
|
|
|
|
- ":: Latin ()"
|
2021-06-10 18:18:23 +03:00
|
|
|
- "'🜵' > ' '"
|
2021-05-28 23:06:13 +03:00
|
|
|
""")
|
|
|
|
content += "compound_suffixes:\n"
|
|
|
|
content += '\n'.join((" - " + s for s in suffixes)) + '\n'
|
|
|
|
content += "abbreviations:\n"
|
|
|
|
content += '\n'.join((" - " + s for s in abbr)) + '\n'
|
|
|
|
fpath = tmp_path / ('test_config' + suffix)
|
|
|
|
fpath.write_text(dedent(content))
|
|
|
|
return fpath
|
|
|
|
|
|
|
|
return _create_config
|
|
|
|
|
|
|
|
|
2021-06-06 12:00:44 +03:00
|
|
|
def get_normalized_variants(proc, name):
|
|
|
|
return proc.get_variants_ascii(proc.get_normalized(name))
|
|
|
|
|
2021-05-28 23:06:13 +03:00
|
|
|
def test_simple_variants(cfgfile):
|
|
|
|
fpath = cfgfile(['strasse', 'straße', 'weg'],
|
|
|
|
['strasse,straße => str',
|
|
|
|
'prospekt => pr'])
|
|
|
|
|
|
|
|
rules = ICUNameProcessorRules(loader=ICURuleLoader(fpath))
|
|
|
|
proc = ICUNameProcessor(rules)
|
|
|
|
|
2021-06-06 12:00:44 +03:00
|
|
|
assert set(get_normalized_variants(proc, "Bauwegstraße")) \
|
2021-06-11 11:03:31 +03:00
|
|
|
== {'bauweg straße', 'bauweg str', 'bauwegstraße', 'bauwegstr'}
|
|
|
|
assert get_normalized_variants(proc, "Bauwegstr") == ['bauwegstr']
|
|
|
|
assert set(get_normalized_variants(proc, "holzweg")) \
|
|
|
|
== {'holz weg', 'holzweg'}
|
2021-06-15 09:59:03 +03:00
|
|
|
assert set(get_normalized_variants(proc, "Meier Weg")) \
|
|
|
|
== {'meier weg', 'meierweg'}
|
2021-06-06 12:00:44 +03:00
|
|
|
assert get_normalized_variants(proc, "hallo") == ['hallo']
|
2021-05-28 23:06:13 +03:00
|
|
|
|
|
|
|
|
2021-06-10 18:18:23 +03:00
|
|
|
def test_variants_empty(cfgfile):
|
|
|
|
fpath = cfgfile([], ['saint => 🜵', 'street => st'])
|
|
|
|
|
|
|
|
rules = ICUNameProcessorRules(loader=ICURuleLoader(fpath))
|
|
|
|
proc = ICUNameProcessor(rules)
|
|
|
|
|
|
|
|
assert get_normalized_variants(proc, '🜵') == []
|
|
|
|
assert get_normalized_variants(proc, '🜳') == []
|
|
|
|
assert get_normalized_variants(proc, 'saint') == ['saint']
|
|
|
|
|
|
|
|
|
2021-05-28 23:06:13 +03:00
|
|
|
def test_multiple_replacements(cfgfile):
|
|
|
|
fpath = cfgfile([], ['saint => s,st', 'street => st'])
|
|
|
|
|
|
|
|
rules = ICUNameProcessorRules(loader=ICURuleLoader(fpath))
|
|
|
|
proc = ICUNameProcessor(rules)
|
|
|
|
|
2021-06-06 12:00:44 +03:00
|
|
|
assert set(get_normalized_variants(proc, "Saint Johns Street")) == \
|
2021-05-28 23:06:13 +03:00
|
|
|
{'saint johns street', 's johns street', 'st johns street',
|
|
|
|
'saint johns st', 's johns st', 'st johns st'}
|
2021-06-06 12:00:44 +03:00
|
|
|
|
|
|
|
|
|
|
|
def test_search_normalized(cfgfile):
|
|
|
|
fpath = cfgfile(['street'], ['street => s,st', 'master => mstr'])
|
|
|
|
|
|
|
|
rules = ICUNameProcessorRules(loader=ICURuleLoader(fpath))
|
|
|
|
proc = ICUNameProcessor(rules)
|
|
|
|
|
2021-06-11 11:03:31 +03:00
|
|
|
assert proc.get_search_normalized('Master Street') == 'master street'
|
|
|
|
assert proc.get_search_normalized('Earnes St') == 'earnes st'
|
|
|
|
assert proc.get_search_normalized('Nostreet') == 'nostreet'
|