1 Star 0 Fork 0

liangkangnan/jimtcl

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
try.test 2.48 KB
一键复制 编辑 原始数据 按行查看 历史
Steve Bennett 提交于 2021-08-01 13:15 +08:00 . try: add support for trap
source [file dirname [info script]]/testing.tcl
needs cmd try tclcompat
test try-1.1 "Simple case" {
try {
set x 0
} finally {
incr x
}
} 0
test try-1.2 "Error in body" {
list [catch {
try {
set x 0
error message
} finally {
incr x
}
} msg] $msg $x
} {1 message 1}
test try-1.3 "Error in finally" {
list [catch {
try {
set x 0
} finally {
incr x
error finally
}
} msg] $msg $x
} {1 finally 1}
test try-1.4 "Error in both" {
list [catch {
try {
set x 0
error message
} finally {
incr x
error finally
}
} msg] $msg $x
} {1 finally 1}
test try-1.5 "break in body" {
list [catch {
try {
set x 0
break
} finally {
incr x
}
} msg] $msg $x
} {3 {} 1}
test try-1.6 "break in finally" {
list [catch {
try {
set x 0
} finally {
incr x
break
}
} msg] $msg $x
} {3 {} 1}
test try-1.7 "return value from try, not finally" {
list [catch {
try {
set x 0
} finally {
incr x
}
} msg] $msg $x
} {0 0 1}
test try-1.8 "return from within try" {
proc a {} {
try {
return 1
}
# notreached
return 2
}
a
} {1}
test try-1.9 "return -code from within try" {
proc a {} {
try {
return -code break text
}
# notreached
return 2
}
list [catch a msg] $msg
} {3 text}
test try-2.1 "try ... trap" -body {
proc a {} {
return -code error -errorcode {CUSTOM RESULT} "custom errorcode"
}
try {
a
} trap CUSTOM {msg opts} {
list $msg $opts(-code) $opts(-errorcode)
}
} -result {{custom errorcode} 1 {CUSTOM RESULT}}
test try-2.2 "trap single match" {
try {
apply {{} {return -code error -errorcode {FOO BAR} failed}}
} trap FOO {msg opts} {
list trapped
}
} trapped
test try-2.3 "trap two matches" {
try {
apply {{} {return -code error -errorcode {FOO BAR} failed}}
} trap {FOO BAR} {msg opts} {
list trapped
}
} trapped
test try-2.4 "trap no match" -body {
try {
apply {{} {return -code error -errorcode {FOO BAR} failed}}
} trap BAZ {msg opts} {
list trapped
}
} -returnCodes error -result failed
test try-2.5 "trap match first but not second" -body {
try {
apply {{} {return -code error -errorcode {FOO BAR} failed}}
} trap {FOO BAZ} {msg opts} {
list trapped
}
} -returnCodes error -result failed
proc c {} {
try {
error here
} on error {msg opts} {
# jim can do simply:
if {[catch {incr opts(-level)}]} {
# Must be Tcl
dict incr opts -level
}
return {*}$opts $msg
}
}
test try-3.1 "rethrow error in try/on handler" {
list [catch c msg] $msg
} {1 here}
testreport
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/liangkangnan/jimtcl.git
git@gitee.com:liangkangnan/jimtcl.git
liangkangnan
jimtcl
jimtcl
master

搜索帮助