diff options
author | dgp <dgp@users.sourceforge.net> | 2012-11-15 20:25:01 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2012-11-15 20:25:01 (GMT) |
commit | c8318a69ffb04cb042048cc53e57342e17d1553b (patch) | |
tree | cca4af85b2d854ae2dba1db0fbab961dc4b28bb6 /tests | |
parent | 4c439c45ea99dde38ee8343424d765ff7a0d351e (diff) | |
download | tcl-c8318a69ffb04cb042048cc53e57342e17d1553b.zip tcl-c8318a69ffb04cb042048cc53e57342e17d1553b.tar.gz tcl-c8318a69ffb04cb042048cc53e57342e17d1553b.tar.bz2 |
Contributed patch from Andy Goth.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/binary.test | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/binary.test b/tests/binary.test index 6c00508..ccd0f29 100644 --- a/tests/binary.test +++ b/tests/binary.test @@ -2642,6 +2642,27 @@ test binary-73.23 {binary decode base64} -body { test binary-73.24 {binary decode base64} -body { string length [binary decode base64 " "] } -result 0 +test binary-73.25 {binary decode base64} -body { + list [string length [set r [binary decode base64 WA==\n]]] $r +} -result {1 X} +test binary-73.26 {binary decode base64} -body { + list [string length [set r [binary decode base64 WFk=\n]]] $r +} -result {2 XY} +test binary-73.27 {binary decode base64} -body { + list [string length [set r [binary decode base64 WFla\n]]] $r +} -result {3 XYZ} +test binary-73.28 {binary decode base64} -body { + list [string length [set r [binary decode base64 -strict WA==\n]]] $r +} -returnCodes error -match glob -result {invalid base64 character *} +test binary-73.29 {binary decode base64} -body { + list [string length [set r [binary decode base64 -strict WFk=\n]]] $r +} -returnCodes error -match glob -result {invalid base64 character *} +test binary-73.30 {binary decode base64} -body { + list [string length [set r [binary decode base64 -strict WFla\n]]] $r +} -returnCodes error -match glob -result {invalid base64 character *} +test binary-73.31 {binary decode base64} -body { + list [string length [set r [binary decode base64 WA==WFla]]] $r +} -returnCodes error -match glob -result {invalid base64 character *} test binary-74.1 {binary encode uuencode} -body { binary encode uuencode |