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 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
|
# -*- tcl -*-
# rcs.test: Tests for the RCS utilities.
#
# Copyright (c) 2005 by Colin McCormack <coldstore@users.sourceforge.net>
# Copyright (c) 2005 by Andreas Kupries <andreas_kupries@users.sourceforge.net>
# All rights reserved.
#
# RCS: @(#) $Id: rcs.test,v 1.7 2006/10/09 21:41:41 andreas_kupries Exp $
# -------------------------------------------------------------------------
source [file join \
[file dirname [file dirname [file join [pwd] [info script]]]] \
devtools testutilities.tcl]
testsNeedTcl 8.4
testsNeedTcltest 1.0
testing {
useLocal rcs.tcl rcs
}
# -------------------------------------------------------------------------
# Standard data for the tests (2 texts, and one patch for transforming
# one into the other).
set lao [string map {\t ""} {The Way that can be told of is not the eternal Way;
The name that can be named is not the eternal name.
The Nameless is the origin of Heaven and Earth;
The Named is the mother of all things.
Therefore let there always be non-being,
so we may see their subtlety,
And let there always be being,
so we may see their outcome.
The two are the same,
But after they are produced,
they have different names.
}]
set laodict [list \
1 {The Way that can be told of is not the eternal Way;} \
2 {The name that can be named is not the eternal name.} \
3 {The Nameless is the origin of Heaven and Earth;} \
4 {The Named is the mother of all things.} \
5 {Therefore let there always be non-being,} \
6 {so we may see their subtlety,} \
7 {And let there always be being,} \
8 {so we may see their outcome.} \
9 {The two are the same,} \
10 {But after they are produced,} \
11 {they have different names.} \
12 {}]
set tzu [string map {\t ""} {The Nameless is the origin of Heaven and Earth;
The named is the mother of all things.
Therefore let there always be non-being,
so we may see their subtlety,
And let there always be being,
so we may see their outcome.
The two are the same,
But after they are produced,
they have different names.
They both may be called deep and profound.
Deeper and more profound,
The door of all subtleties!
}]
set tzudict [list \
1 {The Nameless is the origin of Heaven and Earth;} \
2 {The named is the mother of all things.} \
3 {} \
4 {Therefore let there always be non-being,} \
5 {so we may see their subtlety,} \
6 {And let there always be being,} \
7 {so we may see their outcome.} \
8 {The two are the same,} \
9 {But after they are produced,} \
10 {they have different names.} \
11 {They both may be called deep and profound.} \
12 {Deeper and more profound,} \
13 {The door of all subtleties!} \
14 {}]
set laotzu [string map {\t ""} {d1 2
d4 1
a4 2
The named is the mother of all things.
a11 3
They both may be called deep and profound.
Deeper and more profound,
The door of all subtleties!
}]
set laotzuseq [list \
{d 1 2} \
{d 4 1} \
{a 4 {The named is the mother of all things.
}} \
{a 11 {They both may be called deep and profound.
Deeper and more profound,
The door of all subtleties!}}]
# -------------------------------------------------------------------------
# Takes a dictionary, returns a list containing the same dictionary,
# however the keys are sorted alphabetically. This allows for a true
# comparison of dictionary results.
proc dictsortint {dict} {
array set a $dict
set out [list]
foreach key [lsort -integer [array names a]] {
lappend out $key $a($key)
}
return $out
}
proc wFile {data fname} {
set path [makeFile {} $fname]
set c [open $path w]
puts -nonewline $c $data
close $c
return $path
}
proc rFile {name} {
::tcltest::FillFilesExisted
if {[llength [info level 0]] == 2} {
set directory [::tcltest::temporaryDirectory]
}
set fullName [file join $directory $name]
set f [open $fullName]
set data [read $f]
close $f
return $data
}
# -------------------------------------------------------------------------
test rcs-1.0 {text2dict conversion} {
catch {::rcs::text2dict} msg
set msg
} [tcltest::wrongNumArgs {::rcs::text2dict} {text} 0]
test rcs-1.1 {text2dict conversion} {
catch {::rcs::text2dict {} {}} msg
set msg
} [tcltest::tooManyArgs {::rcs::text2dict} {text}]
test rcs-1.2 {text2dict conversion} {
::rcs::text2dict {}
} {}
test rcs-1.3 {text2dict conversion} {
dictsortint [::rcs::text2dict $lao]
} $laodict
test rcs-1.4 {text2dict conversion} {
dictsortint [::rcs::text2dict $tzu]
} $tzudict
# -------------------------------------------------------------------------
test rcs-2.0 {dict2text conversion} {
catch {::rcs::dict2text} msg
set msg
} [tcltest::wrongNumArgs {::rcs::dict2text} {dict} 0]
test rcs-2.1 {dict2text conversion} {
catch {::rcs::dict2text {} {}} msg
set msg
} [tcltest::tooManyArgs {::rcs::dict2text} {dict}]
test rcs-2.2 {dict2text conversion} {
::rcs::dict2text {}
} {}
test rcs-2.3 {dict2text conversion} {
::rcs::dict2text $laodict
} $lao
test rcs-2.4 {dict2text conversion} {
::rcs::dict2text $tzudict
} $tzu
# -------------------------------------------------------------------------
test rcs-3.0 {file2dict conversion} {
catch {::rcs::file2dict} msg
set msg
} [tcltest::wrongNumArgs {::rcs::file2dict} {filename} 0]
test rcs-3.1 {file2dict conversion} {
catch {::rcs::file2dict {} {}} msg
set msg
} [tcltest::tooManyArgs {::rcs::file2dict} {filename}]
test rcs-3.2 {file2dict conversion} {
set res [::rcs::file2dict [wFile {} empty]]
removeFile empty
set res
} {}
test rcs-3.3 {file2dict conversion} {
set res [dictsortint [::rcs::file2dict [wFile $lao lao]]]
removeFile lao
set res
} $laodict
test rcs-3.4 {file2dict conversion} {
set res [dictsortint [::rcs::file2dict [wFile $tzu tzu]]]
removeFile tzu
set res
} $tzudict
# -------------------------------------------------------------------------
test rcs-4.0 {dict2file conversion} {
catch {::rcs::dict2file} msg
set msg
} [tcltest::wrongNumArgs {::rcs::dict2file} {filename dict} 0]
test rcs-4.1 {dict2file conversion} {
catch {::rcs::dict2file {}} msg
set msg
} [tcltest::wrongNumArgs {::rcs::dict2file} {filename dict} 1]
test rcs-4.2 {dict2file conversion} {
catch {::rcs::dict2file {} {} {}} msg
set msg
} [tcltest::tooManyArgs {::rcs::dict2file} {filename dict}]
test rcs-4.3 {dict2file conversion} {
::rcs::dict2file [wFile {xx} empty.w] {}
set res [rFile empty.w]
removeFile empty.w
set res
} {}
test rcs-4.4 {dict2file conversion} {
::rcs::dict2file [wFile {xx} lao.w] $laodict
set res [rFile lao.w]
removeFile lao.w
set res
} $lao
test rcs-4.5 {dict2file conversion} {
::rcs::dict2file [wFile {xx} tzu.w] $tzudict
set res [rFile tzu.w]
removeFile tzu.w
set res
} $tzu
# -------------------------------------------------------------------------
test rcs-5.0 {decodeRcsPatch conversion} {
catch {::rcs::decodeRcsPatch} msg
set msg
} [tcltest::wrongNumArgs {::rcs::decodeRcsPatch} {patch} 0]
test rcs-5.1 {decodeRcsPatch conversion} {
catch {::rcs::decodeRcsPatch {} {}} msg
set msg
} [tcltest::tooManyArgs {::rcs::decodeRcsPatch} {patch}]
test rcs-5.2 {decodeRcsPatch conversion} {
::rcs::decodeRcsPatch $laotzu
} $laotzuseq
# -------------------------------------------------------------------------
test rcs-6.0 {encodeRcsPatch conversion} {
catch {::rcs::encodeRcsPatch} msg
set msg
} [tcltest::wrongNumArgs {::rcs::encodeRcsPatch} {patch} 0]
test rcs-6.1 {encodeRcsPatch conversion} {
catch {::rcs::encodeRcsPatch {} {}} msg
set msg
} [tcltest::tooManyArgs {::rcs::encodeRcsPatch} {patch}]
test rcs-6.2 {encodeRcsPatch conversion} {
::rcs::encodeRcsPatch $laotzuseq
} $laotzu
# -------------------------------------------------------------------------
test rcs-7.0 {applyRcsPatch} {
catch {::rcs::applyRcsPatch} msg
set msg
} [tcltest::wrongNumArgs {::rcs::applyRcsPatch} {text patch} 0]
test rcs-7.1 {applyRcsPatch} {
catch {::rcs::applyRcsPatch {}} msg
set msg
} [tcltest::wrongNumArgs {::rcs::applyRcsPatch} {text patch} 1]
test rcs-7.2 {applyRcsPatch} {
catch {::rcs::applyRcsPatch {} {} {}} msg
set msg
} [tcltest::tooManyArgs {::rcs::applyRcsPatch} {text patch}]
test rcs-7.3 {applyRcsPatch} {
# dictsortint is not suitable, the resulting dict has gaps. It is
# not textually identical to tzudict, just semantically. The
# textual identity appears only again after converting to a
# regular text.
::rcs::dict2text [::rcs::applyRcsPatch $laodict $laotzuseq]
} $tzu
# -------------------------------------------------------------------------
testsuiteCleanup
|