mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-15 10:57:58 +00:00
switch details cli command to new Python implementation
This commit is contained in:
53
test/python/api/test_localization.py
Normal file
53
test/python/api/test_localization.py
Normal file
@@ -0,0 +1,53 @@
|
||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||
#
|
||||
# This file is part of Nominatim. (https://nominatim.org)
|
||||
#
|
||||
# Copyright (C) 2023 by the Nominatim developer community.
|
||||
# For a full list of authors see the git log.
|
||||
"""
|
||||
Test functions for adapting results to the user's locale.
|
||||
"""
|
||||
import pytest
|
||||
|
||||
from nominatim.api import Locales
|
||||
|
||||
def test_display_name_empty_names():
|
||||
l = Locales(['en', 'de'])
|
||||
|
||||
assert l.display_name(None) == ''
|
||||
assert l.display_name({}) == ''
|
||||
|
||||
def test_display_name_none_localized():
|
||||
l = Locales()
|
||||
|
||||
assert l.display_name({}) == ''
|
||||
assert l.display_name({'name:de': 'DE', 'name': 'ALL'}) == 'ALL'
|
||||
assert l.display_name({'ref': '34', 'name:de': 'DE'}) == '34'
|
||||
|
||||
|
||||
def test_display_name_localized():
|
||||
l = Locales(['en', 'de'])
|
||||
|
||||
assert l.display_name({}) == ''
|
||||
assert l.display_name({'name:de': 'DE', 'name': 'ALL'}) == 'DE'
|
||||
assert l.display_name({'ref': '34', 'name:de': 'DE'}) == 'DE'
|
||||
|
||||
|
||||
def test_display_name_preference():
|
||||
l = Locales(['en', 'de'])
|
||||
|
||||
assert l.display_name({}) == ''
|
||||
assert l.display_name({'name:de': 'DE', 'name:en': 'EN'}) == 'EN'
|
||||
assert l.display_name({'official_name:en': 'EN', 'name:de': 'DE'}) == 'DE'
|
||||
|
||||
|
||||
@pytest.mark.parametrize('langstr,langlist',
|
||||
[('fr', ['fr']),
|
||||
('fr-FR', ['fr-FR', 'fr']),
|
||||
('de,fr-FR', ['de', 'fr-FR', 'fr']),
|
||||
('fr,de,fr-FR', ['fr', 'de', 'fr-FR']),
|
||||
('en;q=0.5,fr', ['fr', 'en']),
|
||||
('en;q=0.5,fr,en-US', ['fr', 'en-US', 'en']),
|
||||
('en,fr;garbage,de', ['en', 'de'])])
|
||||
def test_from_language_preferences(langstr, langlist):
|
||||
assert Locales.from_accept_languages(langstr).languages == langlist
|
||||
@@ -32,17 +32,17 @@ def test_status_unsupported():
|
||||
|
||||
|
||||
def test_status_format_text():
|
||||
assert api_impl.format_result(StatusResult(0, 'message here'), 'text') == 'OK'
|
||||
assert api_impl.format_result(StatusResult(0, 'message here'), 'text', {}) == 'OK'
|
||||
|
||||
|
||||
def test_status_format_text():
|
||||
assert api_impl.format_result(StatusResult(500, 'message here'), 'text') == 'ERROR: message here'
|
||||
assert api_impl.format_result(StatusResult(500, 'message here'), 'text', {}) == 'ERROR: message here'
|
||||
|
||||
|
||||
def test_status_format_json_minimal():
|
||||
status = StatusResult(700, 'Bad format.')
|
||||
|
||||
result = api_impl.format_result(status, 'json')
|
||||
result = api_impl.format_result(status, 'json', {})
|
||||
|
||||
assert result == '{"status":700,"message":"Bad format.","software_version":"%s"}' % (NOMINATIM_VERSION, )
|
||||
|
||||
@@ -52,6 +52,6 @@ def test_status_format_json_full():
|
||||
status.data_updated = dt.datetime(2010, 2, 7, 20, 20, 3, 0, tzinfo=dt.timezone.utc)
|
||||
status.database_version = '5.6'
|
||||
|
||||
result = api_impl.format_result(status, 'json')
|
||||
result = api_impl.format_result(status, 'json', {})
|
||||
|
||||
assert result == '{"status":0,"message":"OK","data_updated":"2010-02-07T20:20:03+00:00","software_version":"%s","database_version":"5.6"}' % (NOMINATIM_VERSION, )
|
||||
|
||||
Reference in New Issue
Block a user