mirror of
https://github.com/onionshare/onionshare.git
synced 2024-10-01 01:35:40 -04:00
47 lines
1.7 KiB
Python
47 lines
1.7 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
OnionShare | https://onionshare.org/
|
|
|
|
Copyright (C) 2017 Micah Lee <micah@micahflee.com>
|
|
|
|
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/>.
|
|
"""
|
|
import locale, os
|
|
from onionshare import helpers, strings
|
|
|
|
# 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
|
|
helpers.get_resource_path = get_resource_path
|
|
|
|
def test_starts_with_empty_strings():
|
|
"""creates an empty strings dict by default"""
|
|
assert strings.strings == {}
|
|
|
|
|
|
def test_load_strings_defaults_to_english():
|
|
"""load_strings() loads English by default"""
|
|
locale.getdefaultlocale = lambda: ('en_US', 'UTF-8')
|
|
strings.load_strings(helpers)
|
|
assert strings._('wait_for_hs') == "Waiting for HS to be ready:"
|
|
|
|
|
|
def test_load_strings_loads_other_languages():
|
|
"""load_strings() loads other languages in different locales"""
|
|
locale.getdefaultlocale = lambda: ('fr_FR', 'UTF-8')
|
|
strings.load_strings(helpers, "fr")
|
|
assert strings._('wait_for_hs') == "En attente du HS:"
|