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 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466
|
#!/usr/bin/ruby
$LOAD_PATH.unshift *%w{tests}
require 'bdb'
require 'runit_'
$VERBOSE = nil
module BDB
class HashRuby < Hash
def bdb_h_hash a
a.hash
end
end
class AZ < Hash
def bdb_store_key(a)
"xx_" + a
end
def bdb_fetch_key(a)
a.sub(/^xx_/, '')
end
def bdb_store_value(a)
"yy_" + a
end
def bdb_fetch_value(a)
a.sub(/^yy_/, '')
end
end
end
def clean
Dir.foreach('tmp') do |x|
if FileTest.file?("tmp/#{x}")
File.unlink("tmp/#{x}")
end
end
end
$bdb, $env = nil, nil
clean
print "\nVERSION of BDB is #{BDB::VERSION}\n"
Inh = defined?(RUNIT) ? RUNIT : Test::Unit
class TestHash < Inh::TestCase
def test_00_error
assert_raises(BDB::Fatal, "invalid name") do
BDB::Hash.new(".", nil, "a")
end
assert_raises(BDB::Fatal, "invalid Env") do
BDB::Hash.open("tmp/aa", nil, "env" => 1)
end
assert_raises(BDB::Fatal) { BDB::Hash.open("tmp/aa", nil, "set_h_hash" => "a") }
assert_raises(TypeError) { BDB::Hash.open("tmp/aa", nil, "set_h_ffactor" => "a") }
assert_raises(TypeError) { BDB::Hash.open("tmp/aa", nil, "set_h_nelem" => "a") }
end
def test_01_init
assert_kind_of(BDB::Hash, $bdb = BDB::Hash.new("tmp/aa", nil, "a"), "<open>")
end
def test_02_get_set
assert_equal("alpha", $bdb["alpha"] = "alpha", "<set value>")
assert_equal("alpha", $bdb["alpha"], "<retrieve value>")
assert_equal(nil, $bdb["gamma"] = nil, "<set nil>")
assert_equal(nil, $bdb["gamma"], "<retrieve nil>")
assert($bdb.key?("alpha"), "<has key>")
assert_equal(false, $bdb.key?("unknown"), "<has unknown key>")
assert($bdb.value?("alpha"), "<has value>")
assert_equal(false, $bdb.value?("unknown"), "<has unknown value>")
assert_equal(false, $bdb.put("alpha", "gamma", BDB::NOOVERWRITE), "<nooverwrite>")
assert_equal("beta", $bdb.fetch("xxx", "beta"), "<fetch nil>")
assert_equal("xxx", $bdb.fetch("xxx") {|x| x}, "<fetch nil>")
assert_raises(IndexError) { $bdb.fetch("xxx") }
assert_raises(ArgumentError) { $bdb.fetch("xxx", "beta") {} }
assert_equal("alpha", $bdb["alpha"], "<must not be changed>")
assert($bdb.both?("alpha", "alpha"), "<has both>")
assert_equal(["alpha", "alpha"],
$bdb.get("alpha", "alpha", BDB::GET_BOTH),
"<get both>")
assert(! $bdb.both?("alpha", "beta"), "<don't has both>")
assert(! $bdb.get("alpha", "beta", BDB::GET_BOTH), "<don't has both>")
assert(! $bdb.both?("unknown", "alpha"), "<don't has both>")
assert_equal([1, 2, 3], $bdb["array"] = [1, 2, 3], "<array>")
assert_equal([1, 2, 3].to_s, $bdb["array"], "<retrieve array>")
assert_equal({"a" => "b"}, $bdb["hash"] = {"a" => "b"}, "<hash>")
assert_equal({"a" => "b"}.to_s, $bdb["hash"], "<retrieve hash>")
assert($bdb.sync, "<sync>")
end
def test_03_delete
size = $bdb.size
i = 0
$bdb.each do |key, value|
assert_equal($bdb, $bdb.delete(key), "<delete value>")
i += 1
end
assert(size == i, "<delete count>")
assert_equal(0, $bdb.size, "<empty>")
$hash = {}
(33 .. 126).each do |i|
key = i.to_s * 5
$bdb[key] = i.to_s * 7
$hash[key] = i.to_s * 7
assert_equal($bdb[key], $hash[key], "<set #{key}>")
end
assert_equal($bdb.size, $hash.size, "<size after load>")
assert_raises(ArgumentError) { $bdb.select("xxx") {}}
assert_equal([], $bdb.select { false }, "<select none>")
assert_equal($hash.sort, $bdb.select { true }.sort, "<select all>")
arr0 = []
$bdb.each_key {|key| arr0 << key }
assert_equal($hash.keys.sort, arr0.sort, "<each key>")
arr1 = []
$bdb.reverse_each_key {|key| arr1 << key }
assert_equal($hash.keys.sort, arr1.sort, "<reverse each key>")
assert_equal(arr0, arr1.reverse, "<reverse>")
assert_equal($hash.invert, $bdb.invert, "<invert>")
$bdb.each do |key, value|
if rand < 0.5
assert_equal($bdb, $bdb.delete(key), "<delete value>")
$hash.delete(key)
end
end
assert_equal($bdb.size, $hash.size, "<size after load>")
$bdb.each do |key, value|
assert_equal($hash[key], value, "<after delete>")
end
$bdb.each do |key, value|
assert($hash.key?(key), "<key after delete>")
assert_equal($bdb, $bdb.delete(key), "<delete value>")
end
end
def test_04_cursor
array = ["a", "b", "c", "d", "e", "f", "g", "h", "i"]
array.each do |x|
assert_equal(x, $bdb[x] = x, "<set value>")
end
assert(array.size == $bdb.size, "<set count>")
arr = []
$bdb.each_value do |x|
arr << x
end
assert_equal(array, arr.sort, "<order>")
arr = []
$bdb.reverse_each_value do |x|
arr << x
end
assert_equal(array, arr.sort, "<reverse order>")
arr = $bdb.reject {|k, v| k == "e" || v == "i" }
has = array.reject {|k, v| k == "e" || k == "i" }
assert_equal(has, arr.keys.sort, "<reject>")
$bdb.reject! {|k, v| k == "e" || v == "i" }
array.reject! {|k, v| k == "e" || k == "i" }
assert_equal(array, $bdb.keys.sort, "<keys after reject>")
assert_equal(array, $bdb.values.sort, "<values after reject>")
end
def test_05_reopen
assert_equal(nil, $bdb.close, "<close>")
assert_kind_of(BDB::Hash, $bdb = BDB::Hash.open("tmp/aa", nil, "w",
"set_flags" => BDB::DUP,
"set_dup_compare" => lambda {|a, b| a <=> b}),
"<reopen with DB_DUP>")
assert_equal(0, $bdb.size, "<must be 0 after reopen>")
end
def test_06_dup
assert_equal("a", $bdb["0"] = "a", "<set dup>")
assert_equal("b", $bdb["0"] = "b", "<set dup>")
assert_equal("c", $bdb["0"] = "c", "<set dup>")
assert_equal("d", $bdb["0"] = "d", "<set dup>")
assert_equal("aa", $bdb["1"] = "aa", "<set dup>")
assert_equal("bb", $bdb["1"] = "bb", "<set dup>")
assert_equal("cc", $bdb["1"] = "cc", "<set dup>")
assert_equal("aaa", $bdb["2"] = "aaa", "<set dup>")
assert_equal("bbb", $bdb["2"] = "bbb", "<set dup>")
assert_equal("aaaa", $bdb["3"] = "aaaa", "<set dup>")
if BDB::VERSION_MAJOR > 2 || (BDB::VERSION_MAJOR == 2 && BDB::VERSION_MINOR >= 6)
assert_equal(4, $bdb.count("0"), "<count dup 0>")
assert_equal(3, $bdb.count("1"), "<count dup 1>")
assert_equal(2, $bdb.count("2"), "<count dup 2>")
assert_equal(1, $bdb.count("3"), "<count dup 3>")
assert_equal(0, $bdb.count("4"), "<count dup 4>")
assert_equal(["a", "b", "c", "d"], $bdb.get_dup("0").sort, "<get dup 0>")
assert_equal(["aa", "bb", "cc"], $bdb.get_dup("1").sort, "<get dup 1>")
assert_equal(["aaa", "bbb"], $bdb.get_dup("2").sort, "<get dup 2>")
assert_equal(["aaaa"], $bdb.get_dup("3"), "<get dup 3>")
assert_equal([], $bdb.get_dup("4"), "<get dup 4>")
end
end
def test_07_in_memory
assert_equal(nil, $bdb.close, "<close>")
assert_kind_of(BDB::Hash, $bdb = BDB::Hash.open(nil, nil), "<open in memory>")
assert_equal(0, $bdb.size, "<must be 0 after reopen>")
end
def test_08_in_memory_get_set
assert_equal("aa", $bdb["bb"] = "aa", "<set in memory>")
assert_equal("cc", $bdb["bb"] = "cc", "<set in memory>")
assert_equal("cc", $bdb["bb"], "<get in memory>")
assert_equal(nil, $bdb.close, "<close>")
end
def test_09_partial_get
assert_kind_of(BDB::Hash, $bdb = BDB::Hash.open("tmp/aa", nil, "w"), "<reopen>")
{
"red" => "boat",
"green"=> "house",
"blue" => "sea",
}.each do |x, y|
assert_equal(y, $bdb[x] = y, "<set>")
end
pon, off, len = $bdb.set_partial(0, 2)
assert_equal(false, pon, "<pon>")
assert_equal(0, off, "<off>")
assert_equal(0, len, "<len>")
assert_equal("bo", $bdb["red"], "<partial (0, 2) get red>")
assert_equal("ho", $bdb["green"], "<partial (0, 2) get green>")
assert_equal("se", $bdb["blue"], "<partial (0, 2) get blue>")
pon, off, len = $bdb.set_partial(3, 2)
assert(pon, "<pon>")
assert_equal(0, off, "<off>")
assert_equal(2, len, "<len>")
assert_equal("t", $bdb["red"], "<partial (3, 2) get red>")
assert_equal("se", $bdb["green"], "<partial (3, 2) get green>")
assert_equal(nil, $bdb["blue"], "<partial (3, 2) get blue>")
pon, off, len = $bdb.partial_clear
assert(pon, "<pon>")
assert_equal(3, off, "<off>")
assert_equal(2, len, "<len>")
assert_equal("boat", $bdb["red"], "<partial clear get red>")
assert_equal("house", $bdb["green"], "<partial clear get green>")
assert_equal("sea", $bdb["blue"], "<partial clear get blue>")
end
def test_10_partial_set
$bdb.set_partial(0, 2)
assert_equal("", $bdb["red"] = "", "<partial set>")
assert_equal("AB", $bdb["green"] = "AB", "<partial set>")
assert_equal("XYZ", $bdb["blue"] = "XYZ", "<partial set>")
assert_equal("KLM", $bdb["yellow"] = "KLM", "<partial set>")
pon, off, len = $bdb.clear_partial
assert(pon, "<pon>")
assert_equal(0, off, "<off>")
assert_equal(2, len, "<len>")
assert_equal("at", $bdb["red"], "<partial get>")
assert_equal("ABuse", $bdb["green"], "<partial get>")
assert_equal("XYZa", $bdb["blue"], "<partial get>")
assert_equal("KLM", $bdb["yellow"], "<partial get>")
pon, off, len = $bdb.set_partial(3, 2)
assert(!pon, "<pon>")
assert_equal(0, off, "<off>")
assert_equal(0, len, "<len>")
assert_equal("PPP", $bdb["red"] = "PPP", "<partial set>")
assert_equal("Q", $bdb["green"] = "Q", "<partial set>")
assert_equal("XYZ", $bdb["blue"] = "XYZ", "<partial set>")
assert_equal("TU", $bdb["yellow"] = "TU", "<partial set>")
pon, off, len = $bdb.clear_partial
assert(pon, "<pon>")
assert_equal(3, off, "<off>")
assert_equal(2, len, "<len>")
assert_equal("at\0PPP", $bdb["red"], "<partial get>")
assert_equal("ABuQ", $bdb["green"], "<partial get>")
assert_equal("XYZXYZ", $bdb["blue"], "<partial get>")
assert_equal("KLMTU", $bdb["yellow"], "<partial get>")
end
def test_11_unknown
$bdb.close
$bdb = nil
assert_kind_of(BDB::Hash, unknown = BDB::Unknown.open("tmp/aa", nil, "r"), "<unknown>")
unknown.close
end
def test_12_env
clean
assert_kind_of(BDB::Env, $env = BDB::Env.open("tmp", BDB::CREATE|BDB::INIT_TRANSACTION))
assert_kind_of(BDB::Hash, $bdb = BDB::Hash.open("aa", nil, "a", "env" => $env), "<open>")
end
def test_13_txn_commit
assert_kind_of(BDB::Txn, txn = $env.begin, "<transaction>")
assert_kind_of(BDB::Hash, db = txn.assoc($bdb), "<assoc>")
assert_equal(true, db.txn?, "<has transaction>")
assert_equal(txn, db.txn, "<transaction>")
assert_equal(true, db.env?, "<has environment>")
assert_equal($env, db.env, "<environment>")
assert_equal("aa", db["aa"] = "aa", "<set>")
assert_equal("bb", db["bb"] = "bb", "<set>")
assert_equal("cc", db["cc"] = "cc", "<set>")
assert_equal(3, db.size, "<size in txn>")
assert(txn.commit, "<commit>")
assert_equal(3, $bdb.size, "<size after commit>")
end
def test_14_txn_abort
assert_kind_of(BDB::Txn, txn = $env.begin, "<transaction>")
assert_kind_of(BDB::Hash, db = txn.assoc($bdb), "<assoc>")
assert_equal("aa", db["aa1"] = "aa", "<set>")
assert_equal("bb", db["bb1"] = "bb", "<set>")
assert_equal("cc", db["cc1"] = "cc", "<set>")
assert_equal(6, db.size, "<size in txn>")
assert(txn.abort, "<abort>")
assert_equal(3, $bdb.size, "<size after abort>")
end
def test_15_txn_abort2
if BDB::VERSION_MAJOR == 2 && BDB::VERSION_MINOR < 7
$stderr.print "skipping test for this version"
return "pass"
end
$env.begin($bdb) do |txn, db|
db["aa1"] = "aa"
db["bb1"] = "bb"
assert_equal(5, db.size, "<size in txn>")
txn.begin(db) do |txn1, db1|
db1["cc1"] = "cc"
assert_equal(6, db1.size, "<size in txn>")
txn.abort
assert_fail("<after an abort>")
end
assert_fail("<after an abort>")
end
assert_equal(3, $bdb.size, "<size after abort>")
end
def test_16_txn_commit2
if BDB::VERSION_MAJOR == 2 && BDB::VERSION_MINOR < 7
$stderr.print "skipping test for this version"
return "pass"
end
$env.begin($bdb) do |txn, db|
db["aa1"] = "aa"
db["bb1"] = "bb"
assert_equal(5, db.size, "<size in txn>")
txn.begin(db) do |txn1, db1|
db1["cc1"] = "cc"
assert_equal(6, db1.size, "<size in txn>")
txn.commit
assert_fail("<after an commit>")
end
assert_fail("<after an commit>")
end
assert_equal(6, $bdb.size, "<size after commit>")
end
def intern_hash_delete
$hash = {}
File.foreach("examples/wordtest") do |line|
line.chomp!
$hash[line] = line.reverse
$bdb[line] = line.reverse
end
$bdb.each do |k, v|
assert_equal($hash[k], v, "<value>")
end
$bdb.delete_if {|k, v| k[0] == ?a}
$hash.delete_if {|k, v| k[0] == ?a}
assert_equal($bdb.size, $hash.size, "<size after delete_if>")
$bdb.each do |k, v|
assert_equal($hash[k], v, "<value>")
end
end
def test_17_hash_delete
assert_equal(true, $bdb.env?, "<has env>")
assert_equal($env, $bdb.env, "<env>")
assert_equal(nil, $bdb.close, "<close>")
$env.close
clean
assert_kind_of(BDB::HashRuby,
$bdb = BDB::HashRuby.open("tmp/aa", nil, "w",
"set_pagesize" => 1024,
"set_cachesize" => [0, 32 * 1024, 0]),
"<open>")
assert_equal(false, $bdb.env?, "<has env>")
assert_equal(nil, $bdb.env, "<env>")
intern_hash_delete
$bdb.close
end
def test_18_hash_delete
assert_kind_of(BDB::Hash,
$bdb = BDB::Hash.open("tmp/aa", nil, "w",
"set_h_hash" => proc {|a| a.hash },
"set_pagesize" => 1024,
"set_cachesize" => [0, 32 * 1024, 0]))
intern_hash_delete
end
def test_18_index
lines = $hash.keys
array = []
10.times do
h = lines[rand(lines.size - 1)]
array.push h
assert_equal($hash.index(h.reverse), $bdb.index(h.reverse), "<index>")
end
assert_equal($hash.indexes(*array), $bdb.indexes(*array), "<indexes>")
array.each do |k|
assert($bdb.has_both?(k, k.reverse), "<has both>")
end
end
def test_19_convert
h = $bdb.to_hash
h.each do |k, v|
assert_equal(v, $hash[k], "<to_hash>")
end
$hash.each do |k, v|
assert_equal(v, h[k], "<to_hash>")
end
h1 = $hash.to_a
h2 = $bdb.to_a
assert_equal(h1.size, h2.size, "<equal>")
h1.each do |k|
assert(h2.include?(k), "<include>")
end
end
if BDB::VERSION_MAJOR > 3 || (BDB::VERSION_MAJOR == 3 && BDB::VERSION_MINOR >= 3)
def test_20_blurb
$bdb.each(nil, 10) do |k, v|
assert_equal($hash[k], v, "<value>")
end
$bdb.each_key(nil, 10) do |k|
assert($hash.key?(k), "<key>")
end
$hash.each_key do |k|
assert(!!$bdb.key?(k), "<key>")
end
end
end
def test_21_sh
val = 'a' .. 'zz'
assert_equal(nil, $bdb.close, "<close>")
File::unlink('tmp/aa') if FileTest.file?('tmp/aa')
assert_kind_of(BDB::Hash, $bdb = BDB::AZ.open("tmp/aa", nil, "w"), "<sh>")
val.each do |l|
assert_equal(l, $bdb[l] = l, "<store>")
end
$bdb.each do |k, v|
assert_equal(k, v, "<fetch>")
end
assert_equal(nil, $bdb.close, "<close>")
assert_kind_of(BDB::Hash, $bdb = BDB::Hash.open("tmp/aa"), "<sh>")
val.each do |l|
assert_equal("yy_#{l}", $bdb["xx_#{l}"], "<fetch value>")
end
$bdb.each do |k, v|
assert_equal("xx_", k[0, 3], "<fetch key>")
assert_equal("yy_", v[0, 3], "<fetch key>")
end
assert_equal(nil, $bdb.close, "<close>")
clean
end
end
if defined?(RUNIT)
RUNIT::CUI::TestRunner.run(TestHash.suite)
end
|