2019-05-20 13:38:06 +03:00
|
|
|
#!/usr/bin/env python3
|
2018-04-24 05:15:20 +03:00
|
|
|
# vim:fileencoding=utf-8
|
|
|
|
# License: GPL v3 Copyright: 2018, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
|
|
|
|
|
|
|
|
from . import BaseTest
|
|
|
|
|
|
|
|
|
|
|
|
class TestUnicodeInput(BaseTest):
|
|
|
|
|
|
|
|
def test_word_trie(self):
|
|
|
|
from kittens.unicode_input.unicode_names import codepoints_for_word
|
|
|
|
|
|
|
|
def matches(a, *words):
|
|
|
|
ans = codepoints_for_word(a)
|
|
|
|
for w in words:
|
|
|
|
ans &= codepoints_for_word(w)
|
|
|
|
return set(ans)
|
|
|
|
|
|
|
|
self.ae(matches('horiz', 'ell'), {0x2026, 0x22ef, 0x2b2c, 0x2b2d, 0xfe19})
|
|
|
|
self.ae(matches('horizontal', 'ell'), {0x2026, 0x22ef, 0x2b2c, 0x2b2d, 0xfe19})
|
|
|
|
self.assertFalse(matches('sfgsfgsfgfgsdg'))
|
2018-11-13 13:16:33 +03:00
|
|
|
self.assertIn(0x1f41d, matches('bee'))
|