refactor tests

This commit is contained in:
Jaremy Creechley 2023-09-27 18:20:46 -07:00
parent 439fd92d50
commit c215f9cb1a
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300
2 changed files with 102 additions and 95 deletions

View File

@ -68,6 +68,9 @@ proc has*(self: FSDatastore, key: KeyId): ?!bool =
let key = key.toKey()
return self.findPath(key).?fileExists()
proc contains*[K](self: FSDatastore, key: K): bool =
return self.has(key).get()
proc delete*(self: FSDatastore, key: KeyId): ?!void =
let key = key.toKey()
@ -243,6 +246,6 @@ proc new*(
return failure "directory does not exist: " & root
success T(
root: root,
root: DataBuffer.new root,
ignoreProtected: ignoreProtected,
depth: depth)

View File

@ -3,136 +3,140 @@ import std/sequtils
import std/os
from std/algorithm import sort, reversed
import pkg/asynctest
import pkg/unittest2
import pkg/chronos
import pkg/stew/results
import pkg/stew/byteutils
import pkg/datastore/fsds
import pkg/datastore/key
import pkg/datastore/backend
import ./dscommontests
import ./querycommontests
import ./backendCommonTests
suite "Test Basic FSDatastore":
let
path = currentSourcePath() # get this file's name
basePath = "tests_data"
basePathAbs = path.parentDir / basePath
key = Key.init("/a/b").tryGet()
bytes = "some bytes".toBytes
otherBytes = "some other bytes".toBytes
keyFull = Key.init("/a/b").tryGet()
key = KeyId.new keyFull.id()
bytes = DataBuffer.new "some bytes"
otherBytes = DataBuffer.new "some other bytes".toBytes
var batch: seq[tuple[key: KeyId, data: DataBuffer]]
for k in 0..<100:
let kk = Key.init($keyFull, $k).tryGet().id()
batch.add( (KeyId.new kk, DataBuffer.new @[k.byte]) )
removeDir(basePathAbs)
require(not dirExists(basePathAbs))
createDir(basePathAbs)
var
fsStore: FSDatastore
setupAll:
removeDir(basePathAbs)
require(not dirExists(basePathAbs))
createDir(basePathAbs)
fsStore = FSDatastore.new(root = basePathAbs, depth = 3).tryGet()
teardownAll:
removeDir(basePathAbs)
require(not dirExists(basePathAbs))
testBasicBackend(fsStore, key, bytes, otherBytes, batch)
basicStoreTests(fsStore, key, bytes, otherBytes)
removeDir(basePathAbs)
require(not dirExists(basePathAbs))
suite "Test Misc FSDatastore":
let
path = currentSourcePath() # get this file's name
basePath = "tests_data"
basePathAbs = path.parentDir / basePath
bytes = "some bytes".toBytes
# suite "Test Misc FSDatastore":
# let
# path = currentSourcePath() # get this file's name
# basePath = "tests_data"
# basePathAbs = path.parentDir / basePath
# bytes = "some bytes".toBytes
setup:
removeDir(basePathAbs)
require(not dirExists(basePathAbs))
createDir(basePathAbs)
# setup:
# removeDir(basePathAbs)
# require(not dirExists(basePathAbs))
# createDir(basePathAbs)
teardown:
removeDir(basePathAbs)
require(not dirExists(basePathAbs))
# teardown:
# removeDir(basePathAbs)
# require(not dirExists(basePathAbs))
test "Test validDepth()":
let
fs = FSDatastore.new(root = "/", depth = 3).tryGet()
invalid = Key.init("/a/b/c/d").tryGet()
valid = Key.init("/a/b/c").tryGet()
# test "Test validDepth()":
# let
# fs = FSDatastore.new(root = "/", depth = 3).tryGet()
# invalid = Key.init("/a/b/c/d").tryGet()
# valid = Key.init("/a/b/c").tryGet()
check:
not fs.validDepth(invalid)
fs.validDepth(valid)
# check:
# not fs.validDepth(invalid)
# fs.validDepth(valid)
test "Test invalid key (path) depth":
let
fs = FSDatastore.new(root = basePathAbs, depth = 3).tryGet()
key = Key.init("/a/b/c/d").tryGet()
# test "Test invalid key (path) depth":
# let
# fs = FSDatastore.new(root = basePathAbs, depth = 3).tryGet()
# key = Key.init("/a/b/c/d").tryGet()
check:
(await fs.put(key, bytes)).isErr
(await fs.get(key)).isErr
(await fs.delete(key)).isErr
(await fs.has(key)).isErr
# check:
# (await fs.put(key, bytes)).isErr
# (await fs.get(key)).isErr
# (await fs.delete(key)).isErr
# (await fs.has(key)).isErr
test "Test valid key (path) depth":
let
fs = FSDatastore.new(root = basePathAbs, depth = 3).tryGet()
key = Key.init("/a/b/c").tryGet()
# test "Test valid key (path) depth":
# let
# fs = FSDatastore.new(root = basePathAbs, depth = 3).tryGet()
# key = Key.init("/a/b/c").tryGet()
check:
(await fs.put(key, bytes)).isOk
(await fs.get(key)).isOk
(await fs.delete(key)).isOk
(await fs.has(key)).isOk
# check:
# (await fs.put(key, bytes)).isOk
# (await fs.get(key)).isOk
# (await fs.delete(key)).isOk
# (await fs.has(key)).isOk
test "Test key cannot write outside of root":
let
fs = FSDatastore.new(root = basePathAbs, depth = 3).tryGet()
key = Key.init("/a/../../c").tryGet()
# test "Test key cannot write outside of root":
# let
# fs = FSDatastore.new(root = basePathAbs, depth = 3).tryGet()
# key = Key.init("/a/../../c").tryGet()
check:
(await fs.put(key, bytes)).isErr
(await fs.get(key)).isErr
(await fs.delete(key)).isErr
(await fs.has(key)).isErr
# check:
# (await fs.put(key, bytes)).isErr
# (await fs.get(key)).isErr
# (await fs.delete(key)).isErr
# (await fs.has(key)).isErr
test "Test key cannot convert to invalid path":
let
fs = FSDatastore.new(root = basePathAbs).tryGet()
# test "Test key cannot convert to invalid path":
# let
# fs = FSDatastore.new(root = basePathAbs).tryGet()
for c in invalidFilenameChars:
if c == ':': continue
if c == '/': continue
# for c in invalidFilenameChars:
# if c == ':': continue
# if c == '/': continue
let
key = Key.init("/" & c).tryGet()
# let
# key = Key.init("/" & c).tryGet()
check:
(await fs.put(key, bytes)).isErr
(await fs.get(key)).isErr
(await fs.delete(key)).isErr
(await fs.has(key)).isErr
# check:
# (await fs.put(key, bytes)).isErr
# (await fs.get(key)).isErr
# (await fs.delete(key)).isErr
# (await fs.has(key)).isErr
suite "Test Query":
let
path = currentSourcePath() # get this file's name
basePath = "tests_data"
basePathAbs = path.parentDir / basePath
var
ds: FSDatastore
# suite "Test Query":
# let
# path = currentSourcePath() # get this file's name
# basePath = "tests_data"
# basePathAbs = path.parentDir / basePath
setup:
removeDir(basePathAbs)
require(not dirExists(basePathAbs))
createDir(basePathAbs)
# var
# ds: FSDatastore
ds = FSDatastore.new(root = basePathAbs, depth = 5).tryGet()
# setup:
# removeDir(basePathAbs)
# require(not dirExists(basePathAbs))
# createDir(basePathAbs)
teardown:
# ds = FSDatastore.new(root = basePathAbs, depth = 5).tryGet()
removeDir(basePathAbs)
require(not dirExists(basePathAbs))
# teardown:
queryTests(ds, false)
# removeDir(basePathAbs)
# require(not dirExists(basePathAbs))
# queryTests(ds, false)