]> git.openstreetmap.org Git - nominatim.git/blob - test/python/api/query_processing/test_split_japanese_phrases.py
Merge remote-tracking branch 'upstream/master'
[nominatim.git] / test / python / api / query_processing / test_split_japanese_phrases.py
1 # SPDX-License-Identifier: GPL-3.0-or-later
2 #
3 # This file is part of Nominatim. (https://nominatim.org)
4 #
5 # Copyright (C) 2025 by the Nominatim developer community.
6 # For a full list of authors see the git log.
7 """
8 Tests for japanese phrase splitting.
9 """
10 import pytest
11
12 import nominatim_api.search.query as qmod
13 from nominatim_api.query_preprocessing.config import QueryConfig
14 from nominatim_api.query_preprocessing import split_japanese_phrases
15
16
17 def run_preprocessor_on(query):
18     proc = split_japanese_phrases.create(QueryConfig().set_normalizer(None))
19
20     return proc(query)
21
22
23 @pytest.mark.parametrize('inp,outp', [('大阪府大阪市大阪', '大阪府:大阪市:大阪'),
24                                       ('大阪府大阪', '大阪府:大阪'),
25                                       ('大阪市大阪', '大阪市:大阪')])
26 def test_split_phrases(inp, outp):
27     query = [qmod.Phrase(qmod.PHRASE_ANY, inp)]
28
29     out = run_preprocessor_on(query)
30
31     assert out == [qmod.Phrase(qmod.PHRASE_ANY, outp)]