1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
# -*- tcl -*-
# wcswidth.test: tests for the wcswidth commands of the textutil package.
# -------------------------------------------------------------------------
source [file join \
[file dirname [file dirname [file join [pwd] [info script]]]] \
devtools testutilities.tcl]
testsNeedTcl 8.5
testsNeedTcltest 2.0
testing {
useLocal wcswidth.tcl textutil::wcswidth
}
# -------------------------------------------------------------------------
test wcswidth-1.0 {wcswidth, wrong # args} -body {
textutil::wcswidth
} -returnCodes error -result {wrong # args: should be "textutil::wcswidth string"}
test wcswidth-1.1 {wcswidth, wrong # args} -body {
textutil::wcswidth a b
} -returnCodes error -result {wrong # args: should be "textutil::wcswidth string"}
test wcswidth-2.0 {wcswidth, ASCII} -body {
textutil::wcswidth hello
} -result 5
test wcswidth-2.1 {wcswidth, wide characters} -body {
textutil::wcswidth {hello 橡萩原 world}
} -result 18
# -------------------------------------------------------------------------
test wcswidth_char-1.0 {wcswidth_char, wrong # args} -body {
textutil::wcswidth_char
} -returnCodes error -result {wrong # args: should be "textutil::wcswidth_char c"}
test wcswidth_char-1.1 {wcswidth_char, wrong # args} -body {
textutil::wcswidth_char a b
} -returnCodes error -result {wrong # args: should be "textutil::wcswidth_char c"}
test wcswidth_char-2.0 {wcswidth_char, ASCII} -setup {
scan h %c char
} -body {
textutil::wcswidth_char $char
} -cleanup {
unset char
} -result 1
test wcswidth_char-2.1 {wcswidth_char, ASCII} -setup {
scan 橡 %c char
} -body {
textutil::wcswidth_char $char
} -cleanup {
unset char
} -result 2
# -------------------------------------------------------------------------
test wcswidth_type-1.0 {wcswidth_type, wrong # args} -body {
textutil::wcswidth_type
} -returnCodes error -result {wrong # args: should be "textutil::wcswidth_type c"}
test wcswidth_type-1.1 {wcswidth_type, wrong # args} -body {
textutil::wcswidth_type a b
} -returnCodes error -result {wrong # args: should be "textutil::wcswidth_type c"}
test wcswidth_type-2.0 {wcswidth_type, ASCII} -setup {
scan h %c char
} -body {
textutil::wcswidth_type $char
} -cleanup {
unset char
} -result N
test wcswidth_type-2.1 {wcswidth_type, ASCII} -setup {
scan 橡 %c char
} -body {
textutil::wcswidth_type $char
} -cleanup {
unset char
} -result W
# -------------------------------------------------------------------------
return
|