Source code for tests.tools_chars_tests
#!/usr/bin/env python3
"""Test tools.chars package."""
#
# (C) Pywikibot team, 2015-2023
#
# Distributed under the terms of the MIT license.
import unicodedata
import unittest
from contextlib import suppress
from pywikibot.tools import chars
from tests.aspects import TestCase
[docs]
class CharsTestCase(TestCase):
"""General test case testing the module."""
net = False
[docs]
def test_replace(self):
"""Test replace_invisible."""
self.assertEqual(
chars.replace_invisible('Hello world!'), 'Hello world!')
self.assertEqual(
chars.replace_invisible('\u200eRTL\u200f'), '<200e>RTL<200f>')
[docs]
def test_contains(self):
"""Test contains_invisible."""
self.assertFalse(chars.contains_invisible('Hello world!'))
self.assertTrue(chars.contains_invisible('\u200eRTL\u200f'))
[docs]
def test_category_cf(self):
"""Test that all characters in _category_cf are actually in Cf."""
invalid = {}
# Cn are undefined characters (and were defined later in Unicode)
for char in chars._category_cf:
cat = unicodedata.category(char)
if cat not in ('Cf', 'Cn'):
invalid[char] = cat # pragma: no cover
self.assertIsEmpty(invalid.items())
if __name__ == '__main__': # pragma: no cover
with suppress(SystemExit):
unittest.main()