mirror of
https://github.com/huashengdun/webssh.git
synced 2026-02-14 11:49:50 +00:00
Added test for check_encoding_setting
This commit is contained in:
@@ -11,7 +11,8 @@ from tests.utils import make_tests_data_path
|
||||
from webssh.policy import load_host_keys
|
||||
from webssh.settings import (
|
||||
get_host_keys_settings, get_policy_setting, base_dir, get_font_filename,
|
||||
get_ssl_context, get_trusted_downstream, get_origin_setting, print_version
|
||||
get_ssl_context, get_trusted_downstream, get_origin_setting, print_version,
|
||||
check_encoding_setting
|
||||
)
|
||||
from webssh.utils import UnicodeType
|
||||
from webssh._version import __version__
|
||||
@@ -178,3 +179,9 @@ class TestSettings(unittest.TestCase):
|
||||
font = 'wrong-name'
|
||||
with self.assertRaises(ValueError):
|
||||
get_font_filename(font, font_dir)
|
||||
|
||||
def test_check_encoding_setting(self):
|
||||
self.assertIsNone(check_encoding_setting(''))
|
||||
self.assertIsNone(check_encoding_setting('utf-8'))
|
||||
with self.assertRaises(ValueError):
|
||||
check_encoding_setting('unknown-encoding')
|
||||
|
||||
@@ -193,4 +193,3 @@ def get_font_filename(font, font_dir):
|
||||
def check_encoding_setting(encoding):
|
||||
if encoding and not is_valid_encoding(encoding):
|
||||
raise ValueError('Unknown character encoding.')
|
||||
return encoding
|
||||
|
||||
Reference in New Issue
Block a user