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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185
|
# sum.test - Copyright (C) 2002 Pat Thoyts <patthoyts@users.sourceforge.net>
#
# Tests for the Tcllib sum command
#
# -------------------------------------------------------------------------
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
# -------------------------------------------------------------------------
# RCS: @(#) $Id: sum.test,v 1.5 2004/01/15 06:36:12 andreas_kupries Exp $
# -------------------------------------------------------------------------
# Initialize the test package
#
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
namespace import ::tcltest::*
}
# -------------------------------------------------------------------------
# Ensure we test _this_ local copy and one installed somewhere else.
#
package forget sum
#catch {namespace delete ::csv}
if {[catch {source [file join [file dirname [info script]] sum.tcl]} msg]} {
puts "skipped [file tail [info script]]: $msg"
return
}
# -------------------------------------------------------------------------
# Setup any constraints
#
# -------------------------------------------------------------------------
# Now the package specific tests....
# -------------------------------------------------------------------------
if {[info command ::crc::SumBsd_c] == {}} {
puts "- sum [package present sum] (pure tcl)"
} else {
puts "- sum [package present sum] (critcl based)"
}
# -------------------------------------------------------------------------
test sum-1.0 {sum with no parameters } {
list [catch {::crc::sum} result] \
[string match "wrong \# args: *" $result]
} {1 1}
test sum-1.1 {sum with incorrect parameters } {
list [catch {::crc::sum -zxcv} result] \
[string match "bad option -zxcv: *" $result]
} {1 1}
# -------------------------------------------------------------------------
foreach {n msg expected} {
1 ""
"0"
2 "a"
"97"
3 "abc"
"16556"
4 "cba"
"49322"
5 "message digest"
"26423"
6 "abcdefghijklmnopqrstuvwxyz"
"53553"
7 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
"25587"
8 "12345678901234567890123456789012345678901234567890123456789012345678901234567890"
"21845"
9 "\uFFFE\u0000\u0001\u0002"
"16418"
} {
test sum-2.$n {sum using BSD algorithm and unsigned integer} {
::crc::sum -bsd $msg
} $expected
}
# -------------------------------------------------------------------------
foreach {n msg expected} {
1 ""
"0"
2 "a"
"97"
3 "abc"
"294"
4 "cba"
"294"
5 "message digest"
"1413"
6 "abcdefghijklmnopqrstuvwxyz"
"2847"
7 "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789"
"5387"
8 "12345678901234567890123456789012345678901234567890123456789012345678901234567890"
"4200"
9 "\uFFFE\u0000\u0001\u0002"
"257"
} {
test sum-3.$n {sum using SysV algorithm and unsigned integer} {
::crc::sum -sysv $msg
} $expected
}
# -------------------------------------------------------------------------
set crc::testfile [info script]
proc ::crc::loaddata {filename} {
set f [open $filename r]
fconfigure $f -translation binary
set data [read $f]
close $f
return $data
}
test sum-4.0 {sum file option (BSD)} {
set r1 [::crc::sum -bsd -file $::crc::testfile]
set r2 [::crc::sum -bsd [::crc::loaddata $::crc::testfile]]
if {$r1 != $r2} {
set r "differing results: $r1 != $r2"
} else {
set r ok
}
} {ok}
test sum-4.1 {sum file option (SysV)} {
set r1 [::crc::sum -sysv -file $::crc::testfile]
set r2 [::crc::sum -sysv [::crc::loaddata $crc::testfile]]
if {$r1 != $r2} {
set r "differing results: $r1 != $r2"
} else {
set r ok
}
} {ok}
test sum-4.2 {sum -channel option (BSD)} {
set r1 [::crc::sum -bsd [::crc::loaddata $::crc::testfile]]
set f [open $::crc::testfile r]
fconfigure $f -translation binary
set r2 [::crc::sum -bsd -channel $f]
close $f
if {$r1 != $r2} {
set r "differing results: $r1 != $r2"
} else {
set r ok
}
} {ok}
test sum-4.3 {sum -channel option (SysV)} {
set r1 [::crc::sum -sysv -file $::crc::testfile]
set f [open $::crc::testfile r]
fconfigure $f -translation binary
set r2 [::crc::sum -sysv -channel $f]
close $f
if {$r1 != $r2} {
set r "differing results: $r1 != $r2"
} else {
set r ok
}
} {ok}
# -------------------------------------------------------------------------
test sum-5.0 {sum format option (BSD)} {
::crc::sum -bsd -format 0x%X [string repeat x 200]
} {0xF8EE}
test sum-5.1 {sum format option (SysV)} {
::crc::sum -sysv -format 0x%X [string repeat x 200]
} {0x5DC0}
# -------------------------------------------------------------------------
catch {unset ::crc::testfile}
::tcltest::cleanupTests
# Local Variables:
# mode: tcl
# indent-tabs-mode: nil
# End:
|