2022-01-10 15:32:56 +00:00
|
|
|
import std/os
|
|
|
|
|
|
|
|
import pkg/questionable
|
|
|
|
import pkg/questionable/results
|
|
|
|
|
|
|
|
import pkg/chronos
|
|
|
|
import pkg/asynctest
|
|
|
|
import pkg/libp2p
|
|
|
|
import pkg/stew/byteutils
|
|
|
|
|
2022-03-02 16:30:42 +00:00
|
|
|
import pkg/dagger/stores/cachestore
|
2022-01-10 15:32:56 +00:00
|
|
|
import pkg/dagger/chunker
|
|
|
|
import pkg/dagger/stores
|
|
|
|
|
|
|
|
import ../helpers
|
|
|
|
|
|
|
|
suite "FS Store":
|
|
|
|
let
|
|
|
|
(path, _, _) = instantiationInfo(-2, fullPaths = true) # get this file's name
|
|
|
|
|
|
|
|
var
|
|
|
|
store: FSStore
|
|
|
|
repoDir: string
|
2022-03-18 19:50:53 +00:00
|
|
|
newBlock = Block.new("New Block".toBytes()).tryGet()
|
2022-01-10 15:32:56 +00:00
|
|
|
|
|
|
|
setup:
|
|
|
|
repoDir = path.parentDir / "repo"
|
|
|
|
createDir(repoDir)
|
|
|
|
store = FSStore.new(repoDir)
|
|
|
|
|
|
|
|
teardown:
|
|
|
|
removeDir(repoDir)
|
|
|
|
|
|
|
|
test "putBlock":
|
|
|
|
check await store.putBlock(newBlock)
|
|
|
|
check fileExists(store.blockPath(newBlock.cid))
|
|
|
|
check newBlock.cid in store
|
|
|
|
|
|
|
|
test "getBlock":
|
|
|
|
createDir(store.blockPath(newBlock.cid).parentDir)
|
|
|
|
writeFile(store.blockPath(newBlock.cid), newBlock.data)
|
|
|
|
let blk = await store.getBlock(newBlock.cid)
|
|
|
|
check blk.option == newBlock.some
|
|
|
|
|
|
|
|
test "fail getBlock":
|
|
|
|
let blk = await store.getBlock(newBlock.cid)
|
|
|
|
check blk.isErr
|
|
|
|
|
|
|
|
test "hasBlock":
|
|
|
|
createDir(store.blockPath(newBlock.cid).parentDir)
|
|
|
|
writeFile(store.blockPath(newBlock.cid), newBlock.data)
|
|
|
|
|
|
|
|
check store.hasBlock(newBlock.cid)
|
|
|
|
|
2022-04-20 12:28:11 +00:00
|
|
|
test "blockList":
|
2022-04-13 16:32:35 +00:00
|
|
|
createDir(store.blockPath(newBlock.cid).parentDir)
|
|
|
|
writeFile(store.blockPath(newBlock.cid), newBlock.data)
|
|
|
|
|
2022-04-20 12:28:11 +00:00
|
|
|
check (await store.blockList()) == @[newBlock.cid]
|
2022-04-13 16:32:35 +00:00
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
test "fail hasBlock":
|
|
|
|
check not store.hasBlock(newBlock.cid)
|
|
|
|
|
|
|
|
test "delBlock":
|
|
|
|
createDir(store.blockPath(newBlock.cid).parentDir)
|
|
|
|
writeFile(store.blockPath(newBlock.cid), newBlock.data)
|
|
|
|
|
|
|
|
check await store.delBlock(newBlock.cid)
|
|
|
|
check not fileExists(store.blockPath(newBlock.cid))
|