Improves test coverage
This commit is contained in:
parent
c78644584b
commit
3599b471c2
|
@ -55,11 +55,7 @@ method getBlock*(self: MemoryStore, cid: Cid): Future[?!Block] {.async.} =
|
||||||
if cid notin self.table:
|
if cid notin self.table:
|
||||||
return failure (ref BlockNotFoundError)(msg: "Block not in memory store")
|
return failure (ref BlockNotFoundError)(msg: "Block not in memory store")
|
||||||
|
|
||||||
try:
|
return success self.table[cid].value.val
|
||||||
return success self.table[cid].value.val
|
|
||||||
except CatchableError as exc:
|
|
||||||
trace "Error getting block from memory store", cid, error = exc.msg
|
|
||||||
return failure exc
|
|
||||||
|
|
||||||
method hasBlock*(self: MemoryStore, cid: Cid): Future[?!bool] {.async.} =
|
method hasBlock*(self: MemoryStore, cid: Cid): Future[?!bool] {.async.} =
|
||||||
trace "Checking MemoryStore for block presence", cid
|
trace "Checking MemoryStore for block presence", cid
|
||||||
|
@ -76,6 +72,21 @@ func cids(self: MemoryStore): (iterator: Cid {.gcsafe.}) =
|
||||||
yield it.value.key
|
yield it.value.key
|
||||||
it = it.next
|
it = it.next
|
||||||
|
|
||||||
|
proc isOfBlockType(cid: Cid, blockType: BlockType): ?!bool =
|
||||||
|
without isManifest =? cid.isManifest, err:
|
||||||
|
trace "Error checking if cid is a manifest", err = err.msg
|
||||||
|
return failure("Unable to determine if CID is a manifest")
|
||||||
|
|
||||||
|
case blockType:
|
||||||
|
of BlockType.Manifest:
|
||||||
|
return success(isManifest)
|
||||||
|
of BlockType.Block:
|
||||||
|
return success(not isManifest)
|
||||||
|
of BlockType.Both:
|
||||||
|
return success(true)
|
||||||
|
|
||||||
|
return failure("Unknown block type: " & $blockType)
|
||||||
|
|
||||||
method listBlocks*(self: MemoryStore, blockType = BlockType.Manifest): Future[?!BlocksIter] {.async.} =
|
method listBlocks*(self: MemoryStore, blockType = BlockType.Manifest): Future[?!BlocksIter] {.async.} =
|
||||||
var
|
var
|
||||||
iter = BlocksIter()
|
iter = BlocksIter()
|
||||||
|
@ -97,27 +108,15 @@ method listBlocks*(self: MemoryStore, blockType = BlockType.Manifest): Future[?!
|
||||||
iter.finished = true
|
iter.finished = true
|
||||||
return Cid.none
|
return Cid.none
|
||||||
|
|
||||||
without isManifest =? cid.isManifest, err:
|
without isCorrectBlockType =? isOfBlockType(cid, blockType), err:
|
||||||
trace "Error checking if cid is a manifest", err = err.msg
|
warn "Error checking if cid of blocktype", err = err.msg
|
||||||
return Cid.none
|
return Cid.none
|
||||||
|
|
||||||
case blockType:
|
if not isCorrectBlockType:
|
||||||
of BlockType.Manifest:
|
trace "Cid does not match blocktype, skipping", cid, blockType
|
||||||
if not isManifest:
|
continue
|
||||||
trace "Cid is not manifest, skipping", cid
|
|
||||||
continue
|
|
||||||
|
|
||||||
break
|
return cid.some
|
||||||
of BlockType.Block:
|
|
||||||
if isManifest:
|
|
||||||
trace "Cid is a manifest, skipping", cid
|
|
||||||
continue
|
|
||||||
|
|
||||||
break
|
|
||||||
of BlockType.Both:
|
|
||||||
break
|
|
||||||
|
|
||||||
return cid.some
|
|
||||||
|
|
||||||
iter.next = next
|
iter.next = next
|
||||||
|
|
||||||
|
@ -156,7 +155,7 @@ method delBlock*(self: MemoryStore, cid: Cid): Future[?!void] {.async.} =
|
||||||
return success()
|
return success()
|
||||||
|
|
||||||
if cid notin self.table:
|
if cid notin self.table:
|
||||||
return failure (ref BlockNotFoundError)(msg: "Block not in memory store")
|
return success()
|
||||||
|
|
||||||
let nodeToRemove = self.table[cid]
|
let nodeToRemove = self.table[cid]
|
||||||
|
|
||||||
|
|
|
@ -79,6 +79,11 @@ proc commonBlockStoreTests*(
|
||||||
|
|
||||||
check not (await store.hasBlock(newBlock1.cid)).tryGet()
|
check not (await store.hasBlock(newBlock1.cid)).tryGet()
|
||||||
|
|
||||||
|
test "delBlock silently ignores missing block":
|
||||||
|
check:
|
||||||
|
not (await store.hasBlock(newBlock1.cid)).tryGet()
|
||||||
|
not (await store.delBlock(newBlock1.cid)).isErr
|
||||||
|
|
||||||
test "listBlocks Blocks":
|
test "listBlocks Blocks":
|
||||||
let
|
let
|
||||||
blocks = @[newBlock1, newBlock2, newBlock3]
|
blocks = @[newBlock1, newBlock2, newBlock3]
|
||||||
|
|
|
@ -39,6 +39,15 @@ suite "Cache Store":
|
||||||
newBlock == received2
|
newBlock == received2
|
||||||
backingStore.numberOfGetCalls == 1
|
backingStore.numberOfGetCalls == 1
|
||||||
|
|
||||||
|
test "getBlock should return empty block immediately":
|
||||||
|
let expectedEmptyBlock = newBlock.cid.emptyBlock
|
||||||
|
|
||||||
|
let received = (await store.getBlock(expectedEmptyBlock.cid)).tryGet()
|
||||||
|
|
||||||
|
check:
|
||||||
|
expectedEmptyBlock == received
|
||||||
|
backingStore.numberOfGetCalls == 0
|
||||||
|
|
||||||
commonBlockStoreTests(
|
commonBlockStoreTests(
|
||||||
"Cache", proc: BlockStore =
|
"Cache", proc: BlockStore =
|
||||||
BlockStore(CacheStore.new(MemoryStore.new())))
|
BlockStore(CacheStore.new(MemoryStore.new())))
|
||||||
|
|
|
@ -13,16 +13,89 @@ import ../helpers
|
||||||
import ./commonstoretests
|
import ./commonstoretests
|
||||||
|
|
||||||
suite "MemoryStore":
|
suite "MemoryStore":
|
||||||
test "Should store initial blocks":
|
let
|
||||||
let
|
capacity = 100
|
||||||
capacity = 100
|
blk = createTestBlock(10)
|
||||||
blk = createTestBlock(10)
|
emptyBlk = blk.cid.emptyBlock
|
||||||
|
|
||||||
|
test "Should store initial blocks":
|
||||||
let store = MemoryStore.new([blk], capacity)
|
let store = MemoryStore.new([blk], capacity)
|
||||||
|
|
||||||
let receivedBlk = await store.getBlock(blk.cid)
|
let receivedBlk = (await store.getBlock(blk.cid)).tryGet()
|
||||||
|
|
||||||
check receivedBlk.tryGet() == blk
|
check receivedBlk == blk
|
||||||
|
|
||||||
|
test "getBlock should return empty block":
|
||||||
|
let store = MemoryStore.new([], capacity)
|
||||||
|
|
||||||
|
let received = (await store.getBlock(emptyBlk.cid)).tryGet()
|
||||||
|
|
||||||
|
check:
|
||||||
|
emptyBlk == received
|
||||||
|
|
||||||
|
test "hasBlock should return true for empty block":
|
||||||
|
let store = MemoryStore.new([], capacity)
|
||||||
|
|
||||||
|
let hasBlock = (await store.hasBlock(emptyBlk.cid)).tryGet()
|
||||||
|
|
||||||
|
check hasBlock
|
||||||
|
|
||||||
|
test "getBlock should return failure when getting an unknown block":
|
||||||
|
let
|
||||||
|
store = MemoryStore.new([blk], capacity)
|
||||||
|
unknownBlock = createTestBlock(11)
|
||||||
|
|
||||||
|
let received = (await store.getBlock(unknownBlock.cid))
|
||||||
|
|
||||||
|
check received.isErr
|
||||||
|
|
||||||
|
test "putBlock should increase bytes used":
|
||||||
|
let store = MemoryStore.new([], capacity)
|
||||||
|
|
||||||
|
check:
|
||||||
|
store.capacity == capacity
|
||||||
|
store.bytesUsed == 0
|
||||||
|
|
||||||
|
(await store.putBlock(blk)).tryGet()
|
||||||
|
|
||||||
|
check:
|
||||||
|
store.capacity == capacity
|
||||||
|
store.bytesUsed == blk.data.len
|
||||||
|
|
||||||
|
test "putBlock should fail when memorystore is full":
|
||||||
|
let
|
||||||
|
largeBlk = createTestBlock(capacity)
|
||||||
|
store = MemoryStore.new([largeBlk], capacity)
|
||||||
|
|
||||||
|
check:
|
||||||
|
store.capacity == capacity
|
||||||
|
store.bytesUsed == capacity
|
||||||
|
|
||||||
|
let response = await store.putBlock(blk)
|
||||||
|
|
||||||
|
check response.isErr
|
||||||
|
|
||||||
|
test "putBlock should ignore empty blocks":
|
||||||
|
let store = MemoryStore.new([], capacity)
|
||||||
|
|
||||||
|
(await store.putBlock(emptyBlk)).tryGet()
|
||||||
|
(await store.putBlock(emptyBlk)).tryGet()
|
||||||
|
(await store.putBlock(emptyBlk)).tryGet()
|
||||||
|
|
||||||
|
check:
|
||||||
|
store.capacity == capacity
|
||||||
|
store.bytesUsed == 0
|
||||||
|
|
||||||
|
test "delBlock should ignore empty blocks":
|
||||||
|
let store = MemoryStore.new([], capacity)
|
||||||
|
|
||||||
|
(await store.delBlock(emptyBlk.cid)).tryGet()
|
||||||
|
(await store.delBlock(emptyBlk.cid)).tryGet()
|
||||||
|
(await store.delBlock(emptyBlk.cid)).tryGet()
|
||||||
|
|
||||||
|
check:
|
||||||
|
store.capacity == capacity
|
||||||
|
store.bytesUsed == 0
|
||||||
|
|
||||||
commonBlockStoreTests(
|
commonBlockStoreTests(
|
||||||
"MemoryStore", proc: BlockStore =
|
"MemoryStore", proc: BlockStore =
|
||||||
|
|
|
@ -2,5 +2,6 @@ import ./stores/testcachestore
|
||||||
import ./stores/testrepostore
|
import ./stores/testrepostore
|
||||||
import ./stores/testmaintenance
|
import ./stores/testmaintenance
|
||||||
import ./stores/testmemorystore
|
import ./stores/testmemorystore
|
||||||
|
import ./stores/testkeyutils
|
||||||
|
|
||||||
{.warning[UnusedImport]: off.}
|
{.warning[UnusedImport]: off.}
|
||||||
|
|
Loading…
Reference in New Issue