]> git.openstreetmap.org Git - nominatim.git/blob - test/python/tokenizer/token_analysis/test_generic_mutation.py
Merge pull request #2585 from lonvia/name-mutations
[nominatim.git] / test / python / tokenizer / token_analysis / test_generic_mutation.py
1 # SPDX-License-Identifier: GPL-2.0-only
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2022 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Tests for generic token analysis, mutation part.
9 """
10 import pytest
11
12 from icu import Transliterator
13
14 import nominatim.tokenizer.token_analysis.generic as module
15 from nominatim.errors import UsageError
16
17 DEFAULT_NORMALIZATION = """ '🜳' > ' ';
18                             [[:Nonspacing Mark:] [:Cf:]] >;
19                             :: lower ();
20                             [[:Punctuation:][:Space:]]+ > ' '
21                         """
22
23 DEFAULT_TRANSLITERATION = """ ::  Latin ();
24                               'đŸœ”' > ' ';
25                           """
26
27 class TestMutationNoVariants:
28
29     def make_analyser(self, *mutations):
30         rules = { 'analyzer': 'generic',
31                   'mutations': [ {'pattern': m[0], 'replacements': m[1]}
32                                  for m in mutations]
33                 }
34         config = module.configure(rules, DEFAULT_NORMALIZATION)
35         trans = Transliterator.createFromRules("test_trans", DEFAULT_TRANSLITERATION)
36
37         self.analysis = module.create(trans, config)
38
39
40     def variants(self, name):
41         norm = Transliterator.createFromRules("test_norm", DEFAULT_NORMALIZATION)
42         return set(self.analysis.get_variants_ascii(norm.transliterate(name).strip()))
43
44
45     @pytest.mark.parametrize('pattern', ('(capture)', ['a list']))
46     def test_bad_pattern(self, pattern):
47         with pytest.raises(UsageError):
48             self.make_analyser((pattern, ['b']))
49
50
51     @pytest.mark.parametrize('replacements', (None, 'a string'))
52     def test_bad_replacement(self, replacements):
53         with pytest.raises(UsageError):
54             self.make_analyser(('a', replacements))
55
56
57     def test_simple_replacement(self):
58         self.make_analyser(('a', ['b']))
59
60         assert self.variants('none') == {'none'}
61         assert self.variants('abba') == {'bbbb'}
62         assert self.variants('2 aar') == {'2 bbr'}
63
64
65     def test_multichar_replacement(self):
66         self.make_analyser(('1 1', ['1 1 1']))
67
68         assert self.variants('1 1456') == {'1 1 1456'}
69         assert self.variants('1 1 1') == {'1 1 1 1'}
70
71
72     def test_removement_replacement(self):
73         self.make_analyser((' ', [' ', '']))
74
75         assert self.variants('A 345') == {'a 345', 'a345'}
76         assert self.variants('a g b') == {'a g b', 'ag b', 'a gb', 'agb'}
77
78
79     def test_regex_pattern(self):
80         self.make_analyser(('[^a-z]+', ['XXX', ' ']))
81
82         assert self.variants('a-34n12') == {'aXXXnXXX', 'aXXXn', 'a nXXX', 'a n'}
83
84
85     def test_multiple_mutations(self):
86         self.make_analyser(('Ă€', ['Ă€', 'ae']), ('ö', ['ö', 'oe']))
87
88         assert self.variants('LĂ€ngenöhr') == {'lĂ€ngenöhr', 'laengenöhr',
89                                               'lĂ€ngenoehr', 'laengenoehr'}