From 8579efc86c18b7b824ec080582f032674e2f8a5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sat, 23 Nov 2002 17:11:42 +0000 Subject: [PATCH] Add test cases for Hangul syllables. Update output. --- Lib/test/output/test_ucn | 3 ++- Lib/test/test_ucn.py | 24 ++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/Lib/test/output/test_ucn b/Lib/test/output/test_ucn index 0d3df5599c8..1006c07edde 100644 --- a/Lib/test/output/test_ucn +++ b/Lib/test/output/test_ucn @@ -1,7 +1,8 @@ test_ucn Testing General Unicode Character Name, and case insensitivity... done. Testing name to code mapping.... done. +Testing hangul syllable names.... done. Testing code to name mapping for all characters.... done. -Found 11556 characters in the unicode name database +Found 22728 characters in the unicode name database Testing misc. symbols for unicode character name expansion.... done. Testing unicode character name expansion strict error handling.... done. diff --git a/Lib/test/test_ucn.py b/Lib/test/test_ucn.py index 1c8ed99724b..6f2b022b9d0 100644 --- a/Lib/test/test_ucn.py +++ b/Lib/test/test_ucn.py @@ -56,6 +56,30 @@ verify(unicodedata.name(code) == name) print "done." +print "Testing hangul syllable names....", +exec r""" +verify(u"\N{HANGUL SYLLABLE GA}" == u"\uac00") +verify(u"\N{HANGUL SYLLABLE GGWEOSS}" == u"\uafe8") +verify(u"\N{HANGUL SYLLABLE DOLS}" == u"\ub3d0") +verify(u"\N{HANGUL SYLLABLE RYAN}" == u"\ub7b8") +verify(u"\N{HANGUL SYLLABLE MWIK}" == u"\ubba0") +verify(u"\N{HANGUL SYLLABLE BBWAEM}" == u"\ubf88") +verify(u"\N{HANGUL SYLLABLE SSEOL}" == u"\uc370") +verify(u"\N{HANGUL SYLLABLE YI}" == u"\uc758") +verify(u"\N{HANGUL SYLLABLE JJYOSS}" == u"\ucb40") +verify(u"\N{HANGUL SYLLABLE KYEOLS}" == u"\ucf28") +verify(u"\N{HANGUL SYLLABLE PAN}" == u"\ud310") +verify(u"\N{HANGUL SYLLABLE HWEOK}" == u"\ud6f8") +verify(u"\N{HANGUL SYLLABLE HIH}" == u"\ud7a3") +""" +try: + unicodedata.name(u"\ud7a4") +except ValueError: + pass +else: + raise AssertionError, "Found name for U+D7A4" +print "done." + print "Testing code to name mapping for all characters....", count = 0 for code in range(65536):