2014-09-02 20:26:59 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-02 15:10:42 -04:00
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
2018-04-24 13:07:59 -04:00
|
|
|
Copyright (C) 2014-2018 Micah Lee <micah@micahflee.com>
|
2014-09-02 15:10:42 -04:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
2017-07-08 13:31:25 -04:00
|
|
|
|
|
|
|
import types
|
|
|
|
|
|
|
|
import pytest
|
|
|
|
|
2018-03-13 05:22:26 -04:00
|
|
|
from onionshare import strings
|
2018-10-12 19:35:09 -04:00
|
|
|
from onionshare.settings import Settings
|
2017-07-08 13:31:25 -04:00
|
|
|
|
|
|
|
# # Stub get_resource_path so it finds the correct path while running tests
|
|
|
|
# def get_resource_path(filename):
|
|
|
|
# resources_dir = os.path.join(os.path.dirname(os.path.dirname(__file__)), 'share')
|
|
|
|
# path = os.path.join(resources_dir, filename)
|
|
|
|
# return path
|
|
|
|
# common.get_resource_path = get_resource_path
|
|
|
|
|
|
|
|
def test_underscore_is_function():
|
|
|
|
assert callable(strings._) and isinstance(strings._, types.FunctionType)
|
|
|
|
|
|
|
|
|
|
|
|
class TestLoadStrings:
|
|
|
|
def test_load_strings_defaults_to_english(
|
2018-03-13 05:22:26 -04:00
|
|
|
self, common_obj, locale_en, sys_onionshare_dev_mode):
|
2017-07-08 13:31:25 -04:00
|
|
|
""" load_strings() loads English by default """
|
2018-10-12 19:35:09 -04:00
|
|
|
common_obj.settings = Settings(common_obj)
|
2018-03-13 05:22:26 -04:00
|
|
|
strings.load_strings(common_obj)
|
2018-09-23 17:39:29 -04:00
|
|
|
assert strings._('preparing_files') == "Compressing files."
|
2017-07-08 13:31:25 -04:00
|
|
|
|
|
|
|
|
|
|
|
def test_load_strings_loads_other_languages(
|
2018-03-13 05:22:26 -04:00
|
|
|
self, common_obj, locale_fr, sys_onionshare_dev_mode):
|
2017-07-08 13:31:25 -04:00
|
|
|
""" load_strings() loads other languages in different locales """
|
2018-10-12 19:35:09 -04:00
|
|
|
common_obj.settings = Settings(common_obj)
|
2018-09-30 20:35:58 -04:00
|
|
|
common_obj.settings.set('locale', 'fr')
|
|
|
|
strings.load_strings(common_obj)
|
2018-09-21 16:38:01 -04:00
|
|
|
assert strings._('preparing_files') == "Préparation des fichiers à partager."
|
2014-11-18 12:29:32 -05:00
|
|
|
|
2017-07-08 13:31:25 -04:00
|
|
|
def test_load_invalid_locale(
|
2018-03-13 05:22:26 -04:00
|
|
|
self, common_obj, locale_invalid, sys_onionshare_dev_mode):
|
2017-07-08 13:31:25 -04:00
|
|
|
""" load_strings() raises a KeyError for an invalid locale """
|
|
|
|
with pytest.raises(KeyError):
|
2018-10-12 19:35:09 -04:00
|
|
|
common_obj.settings = Settings(common_obj)
|
2018-09-30 20:35:58 -04:00
|
|
|
common_obj.settings.set('locale', 'XX')
|
|
|
|
strings.load_strings(common_obj)
|