mirror of
https://github.com/status-im/nim-dagger.git
synced 2025-01-27 23:17:33 +00:00
6c92b3dc25
* moving protobuf into bitswap * adding block type * reworking bitswap * adding chunker * adding license header * use 1.2.6 * adding fixed size chunker * add blockstore * add iterator to chunker * more bitswap changes * rename ipfs to dagger * rename to dagger * blockstore inherits from BlockProvider * wip - add core block handling logic * smal changes * use proper block store methods * adding asynq heapqueue * wip prepare for bitswap task runner * adding `$` * adding memory store and tests * fixed chunking * extracted desicion engine from bitswap * added helper random funcs * adding testing helpers * only handle seqs * add peer events * cleanup pending blocks on blockstore event * allow nil handlers * move protobuf type helpers * allow initializing block from Cid * testing and fixes * small fixes * expose `<` * spelling * default value * spelling * pending blocks manager * adding stores manager * more tests a wip around bitswap * small changes * merge bitswap and engine for now * for now run only the new poc's tests * add a more complete ci setup * use template in map * remove p2pd * remove go * dont use asyncCheck * few small changes * adding ability to update items * adding multiple task runners * handle cancelation properly * use Result instead of throwing * wip bitswap tests * moving things around * split out engine again * add request and handlers interface * fix tests * wip - engine tests * remove unused imports * fix tests * cleanup block requesting logic * add block request tests * more block requests * add support for max heap * don't use result * use max heap & send block presence in task handler * add task handler tests * rename store to localStore * cleanup & logging * cancel task on stop * don't depend on local store for events * dont use heap queue for wants * add chronicles * fix issue with peer wants * add test for delayed block sends * remove obsolete tests * wip chunker * run all tests * add todo * misc * remove irrelevant files * removing more files * adding helpers for bitswap tests * moved bitswap file * misc * make blocks timeout longer * adjust block timeout * speedup test * compile with threads * import missing crypto * misc * disable threads for now * fix 32 bit platforms * re-enable threads support in tests
222 lines
5.9 KiB
Nim
222 lines
5.9 KiB
Nim
import pkg/chronos
|
|
import pkg/asynctest
|
|
import pkg/stew/results
|
|
|
|
import pkg/dagger/utils/asyncheapqueue
|
|
import pkg/dagger/p2p/rng
|
|
|
|
type
|
|
Task* = tuple[name: string, priority: int]
|
|
|
|
proc `<`*(a, b: Task): bool =
|
|
a.priority < b.priority
|
|
|
|
proc `==`*(a, b: Task): bool =
|
|
a.name == b.name
|
|
|
|
proc toSortedSeq[T](h: AsyncHeapQueue[T], queueType = QueueType.Min): seq[T] =
|
|
var tmp = newAsyncHeapQueue[T](queueType = queueType)
|
|
for d in h:
|
|
check tmp.pushNoWait(d).isOk
|
|
while tmp.len > 0:
|
|
result.add(popNoWait(tmp).get())
|
|
|
|
suite "synchronous tests":
|
|
test "test pushNoWait - Min":
|
|
var heap = newAsyncHeapQueue[int]()
|
|
let data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
|
|
for item in data:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
check heap[0] == 0
|
|
check heap.toSortedSeq == @[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
|
|
test "test pushNoWait - Max":
|
|
var heap = newAsyncHeapQueue[int](queueType = QueueType.Max)
|
|
let data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
|
|
for item in data:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
check heap[0] == 9
|
|
check heap.toSortedSeq(QueueType.Max) == @[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
|
|
|
|
test "test popNoWait":
|
|
var heap = newAsyncHeapQueue[int]()
|
|
let data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
|
|
for item in data:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
var res: seq[int]
|
|
while heap.len > 0:
|
|
let r = heap.popNoWait()
|
|
if r.isOk:
|
|
res.add(r.get)
|
|
|
|
check res == @[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
|
|
test "test popNoWait - Max":
|
|
var heap = newAsyncHeapQueue[int](queueType = QueueType.Max)
|
|
let data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
|
|
for item in data:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
var res: seq[int]
|
|
while heap.len > 0:
|
|
let r = heap.popNoWait()
|
|
if r.isOk:
|
|
res.add(r.get)
|
|
|
|
check res == @[9, 8, 7, 6, 5, 4, 3, 2, 1, 0]
|
|
|
|
test "test del": # Test del
|
|
var heap = newAsyncHeapQueue[int]()
|
|
let data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
|
|
for item in data:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
heap.del(0)
|
|
doAssert(heap[0] == 1)
|
|
|
|
heap.del(heap.find(7))
|
|
check heap.toSortedSeq == @[1, 2, 3, 4, 5, 6, 8, 9]
|
|
|
|
heap.del(heap.find(5))
|
|
check heap.toSortedSeq == @[1, 2, 3, 4, 6, 8, 9]
|
|
|
|
heap.del(heap.find(6))
|
|
check heap.toSortedSeq == @[1, 2, 3, 4, 8, 9]
|
|
|
|
heap.del(heap.find(2))
|
|
check heap.toSortedSeq == @[1, 3, 4, 8, 9]
|
|
|
|
test "del last": # Test del last
|
|
var heap = newAsyncHeapQueue[int]()
|
|
let data = [1, 2, 3]
|
|
for item in data:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
heap.del(2)
|
|
check heap.toSortedSeq == @[1, 2]
|
|
|
|
heap.del(1)
|
|
check heap.toSortedSeq == @[1]
|
|
|
|
heap.del(0)
|
|
check heap.toSortedSeq == newSeq[int]() # empty seq has no type
|
|
|
|
test "should throw popping from an empty queue":
|
|
var heap = newAsyncHeapQueue[int]()
|
|
let err = heap.popNoWait()
|
|
check err.isErr
|
|
check err.error == AsyncHQErrors.Empty
|
|
|
|
test "should throw pushing to an full queue":
|
|
var heap = newAsyncHeapQueue[int](1)
|
|
check heap.pushNoWait(1).isOk
|
|
let err = heap.pushNoWait(2)
|
|
check err.isErr
|
|
check err.error == AsyncHQErrors.Full
|
|
|
|
test "test clear":
|
|
var heap = newAsyncHeapQueue[int]()
|
|
let data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
|
|
for item in data:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
check heap.len == 10
|
|
heap.clear()
|
|
check heap.len == 0
|
|
|
|
suite "asynchronous tests":
|
|
|
|
test "test push":
|
|
var heap = newAsyncHeapQueue[int]()
|
|
let data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
|
|
for item in data:
|
|
await push(heap, item)
|
|
check heap[0] == 0
|
|
check heap.toSortedSeq == @[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
|
|
test "test push and pop with maxSize":
|
|
var heap = newAsyncHeapQueue[int](5)
|
|
let data = [1, 9, 5, 3, 7, 4, 2]
|
|
|
|
proc pushTask() {.async.} =
|
|
for item in data:
|
|
await push(heap, item)
|
|
|
|
asyncCheck pushTask()
|
|
|
|
check heap.len == 5
|
|
check heap[0] == 1 # because we haven't pushed 0 yet
|
|
|
|
check (await heap.pop) == 1
|
|
check (await heap.pop) == 3
|
|
check (await heap.pop) == 5
|
|
check (await heap.pop) == 7
|
|
check (await heap.pop) == 9
|
|
|
|
await sleepAsync(1.milliseconds) # allow poll to run once more
|
|
check (await heap.pop) == 2
|
|
check (await heap.pop) == 4
|
|
|
|
test "test update":
|
|
var heap = newAsyncHeapQueue[Task](5)
|
|
|
|
for item in [("a", 4), ("b", 3), ("c", 2)]:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
check heap[0] == (name: "c", priority: 2)
|
|
check heap.update((name: "a", priority: 1))
|
|
check heap[0] == (name: "a", priority: 1)
|
|
|
|
test "test pushOrUpdate - update":
|
|
var heap = newAsyncHeapQueue[Task](3)
|
|
|
|
for item in [("a", 4), ("b", 3), ("c", 2)]:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
check heap[0] == (name: "c", priority: 2)
|
|
await heap.pushOrUpdate((name: "a", priority: 1))
|
|
check heap[0] == (name: "a", priority: 1)
|
|
|
|
test "test pushOrUpdate - push":
|
|
var heap = newAsyncHeapQueue[Task](2)
|
|
|
|
for item in [("a", 4), ("b", 3)]:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
check heap[0] == ("b", 3) # sanity check for order
|
|
|
|
let fut = heap.pushOrUpdate(("c", 2)) # attempt to push a non existen item but block
|
|
check heap.popNoWait().get() == ("b", 3) # pop one off
|
|
await fut # wait for push to complete
|
|
|
|
check heap[0] == (name: "c", priority: 2) # check order again
|
|
|
|
test "test pop":
|
|
var heap = newAsyncHeapQueue[int]()
|
|
let data = [1, 3, 5, 7, 9, 2, 4, 6, 8, 0]
|
|
for item in data:
|
|
check heap.pushNoWait(item).isOk
|
|
|
|
var res: seq[int]
|
|
while heap.len > 0:
|
|
res.add((await heap.pop()))
|
|
|
|
check res == @[0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
|
|
|
|
test "test delete":
|
|
var heap = newAsyncHeapQueue[Task]()
|
|
let data = ["d", "b", "c", "a", "h", "e", "f", "g"]
|
|
|
|
for item in data:
|
|
check heap.pushNoWait((
|
|
name: item,
|
|
priority: Rng.instance().rand(data.len)
|
|
)).isOk
|
|
|
|
let del = heap[3]
|
|
heap.delete(del)
|
|
check heap.find(del) < 0
|