2014-09-02 20:26:59 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-09-02 15:10:42 -04:00
|
|
|
"""
|
|
|
|
OnionShare | https://onionshare.org/
|
|
|
|
|
2016-02-16 01:37:28 -05:00
|
|
|
Copyright (C) 2016 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/>.
|
|
|
|
"""
|
2014-08-26 21:38:46 -04:00
|
|
|
import locale
|
|
|
|
from onionshare import strings
|
|
|
|
from nose import with_setup
|
|
|
|
|
2014-11-18 12:29:32 -05:00
|
|
|
|
2014-08-26 21:38:46 -04:00
|
|
|
def test_starts_with_empty_strings():
|
2014-11-18 11:39:04 -05:00
|
|
|
"""creates an empty strings dict by default"""
|
2014-08-26 21:38:46 -04:00
|
|
|
assert strings.strings == {}
|
|
|
|
|
2014-11-18 12:29:32 -05:00
|
|
|
|
2014-08-26 21:38:46 -04:00
|
|
|
def test_load_strings_defaults_to_english():
|
2014-11-18 11:39:04 -05:00
|
|
|
"""load_strings() loads English by default"""
|
2014-08-26 21:38:46 -04:00
|
|
|
locale.getdefaultlocale = lambda: ('en_US', 'UTF-8')
|
|
|
|
strings.load_strings()
|
2014-09-17 20:26:22 -04:00
|
|
|
assert strings._('wait_for_hs') == "Waiting for HS to be ready:"
|
2014-08-26 21:38:46 -04:00
|
|
|
|
2014-11-18 12:29:32 -05:00
|
|
|
|
2014-08-26 21:38:46 -04:00
|
|
|
def test_load_strings_loads_other_languages():
|
2014-11-18 11:39:04 -05:00
|
|
|
"""load_strings() loads other languages in different locales"""
|
2014-08-26 21:38:46 -04:00
|
|
|
locale.getdefaultlocale = lambda: ('fr_FR', 'UTF-8')
|
|
|
|
strings.load_strings("fr")
|
2014-09-17 20:26:22 -04:00
|
|
|
assert strings._('wait_for_hs') == "En attente du HS:"
|