2021-02-26 00:23:22 +00:00
|
|
|
import std/sequtils
|
2021-05-10 11:47:15 +00:00
|
|
|
import std/random
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
import pkg/stew/byteutils
|
|
|
|
import pkg/asynctest
|
|
|
|
import pkg/chronos
|
|
|
|
import pkg/libp2p
|
|
|
|
import pkg/libp2p/errors
|
|
|
|
|
2021-08-30 19:25:20 +00:00
|
|
|
import pkg/dagger/rng
|
|
|
|
import pkg/dagger/blockexchange
|
|
|
|
import pkg/dagger/stores
|
2021-02-26 00:23:22 +00:00
|
|
|
import pkg/dagger/chunker
|
|
|
|
import pkg/dagger/blocktype as bt
|
2021-08-30 19:25:20 +00:00
|
|
|
import pkg/dagger/utils/asyncheapqueue
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
import ../helpers
|
2021-04-08 12:27:49 +00:00
|
|
|
import ../examples
|
2021-02-26 00:23:22 +00:00
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
suite "NetworkStore engine basic":
|
2021-02-26 00:23:22 +00:00
|
|
|
let
|
|
|
|
rng = Rng.instance()
|
|
|
|
seckey = PrivateKey.random(rng[]).tryGet()
|
2021-10-29 19:30:52 +00:00
|
|
|
peerId = PeerID.init(seckey.getPublicKey().tryGet()).tryGet()
|
2022-01-10 15:32:56 +00:00
|
|
|
chunker = RandomChunker.new(Rng.instance(), size = 1024, chunkSize = 256)
|
2021-04-19 14:37:38 +00:00
|
|
|
wallet = WalletRef.example
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
var
|
2022-01-10 15:32:56 +00:00
|
|
|
blocks: seq[bt.Block]
|
2021-02-26 00:23:22 +00:00
|
|
|
done: Future[void]
|
|
|
|
|
|
|
|
setup:
|
2022-01-10 15:32:56 +00:00
|
|
|
while true:
|
|
|
|
let chunk = await chunker.getBytes()
|
|
|
|
if chunk.len <= 0:
|
|
|
|
break
|
|
|
|
|
|
|
|
blocks.add(bt.Block.init(chunk))
|
|
|
|
|
2021-02-26 00:23:22 +00:00
|
|
|
done = newFuture[void]()
|
|
|
|
|
|
|
|
test "should send want list to new peers":
|
|
|
|
proc sendWantList(
|
|
|
|
id: PeerID,
|
|
|
|
cids: seq[Cid],
|
|
|
|
priority: int32 = 0,
|
|
|
|
cancel: bool = false,
|
|
|
|
wantType: WantType = WantType.wantHave,
|
|
|
|
full: bool = false,
|
|
|
|
sendDontHave: bool = false) {.gcsafe.} =
|
|
|
|
check cids == blocks.mapIt( it.cid )
|
|
|
|
|
|
|
|
done.complete()
|
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
let
|
|
|
|
network = BlockExcNetwork(request: BlockExcRequest(
|
|
|
|
sendWantList: sendWantList,
|
|
|
|
))
|
2021-02-26 00:23:22 +00:00
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
engine = BlockExcEngine.new(
|
|
|
|
MemoryStore.new(blocks.mapIt( it )),
|
|
|
|
wallet,
|
|
|
|
network)
|
2021-02-26 00:23:22 +00:00
|
|
|
engine.wantList = blocks.mapIt( it.cid )
|
|
|
|
engine.setupPeer(peerId)
|
|
|
|
|
|
|
|
await done
|
|
|
|
|
2021-05-10 14:21:47 +00:00
|
|
|
test "sends account to new peers":
|
2021-04-08 12:27:49 +00:00
|
|
|
let pricing = Pricing.example
|
|
|
|
|
2021-05-10 14:21:47 +00:00
|
|
|
proc sendAccount(peer: PeerID, account: Account) =
|
|
|
|
check account.address == pricing.address
|
2021-04-08 12:27:49 +00:00
|
|
|
done.complete()
|
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
let
|
|
|
|
network = BlockExcNetwork(request: BlockExcRequest(
|
|
|
|
sendAccount: sendAccount,
|
|
|
|
))
|
|
|
|
|
|
|
|
engine = BlockExcEngine.new(MemoryStore.new, wallet, network)
|
2021-04-08 12:27:49 +00:00
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
engine.pricing = pricing.some
|
2021-04-08 12:27:49 +00:00
|
|
|
engine.setupPeer(peerId)
|
|
|
|
await done.wait(100.millis)
|
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
suite "NetworkStore engine handlers":
|
2021-02-26 00:23:22 +00:00
|
|
|
let
|
|
|
|
rng = Rng.instance()
|
|
|
|
seckey = PrivateKey.random(rng[]).tryGet()
|
2021-10-29 19:30:52 +00:00
|
|
|
peerId = PeerID.init(seckey.getPublicKey().tryGet()).tryGet()
|
2022-01-10 15:32:56 +00:00
|
|
|
chunker = RandomChunker.new(Rng.instance(), size = 1024, chunkSize = 256)
|
2021-04-19 14:37:38 +00:00
|
|
|
wallet = WalletRef.example
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
var
|
2021-08-30 19:25:20 +00:00
|
|
|
engine: BlockExcEngine
|
|
|
|
peerCtx: BlockExcPeerCtx
|
2021-02-26 00:23:22 +00:00
|
|
|
done: Future[void]
|
2022-01-10 15:32:56 +00:00
|
|
|
blocks: seq[bt.Block]
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
setup:
|
2022-01-10 15:32:56 +00:00
|
|
|
while true:
|
|
|
|
let chunk = await chunker.getBytes()
|
|
|
|
if chunk.len <= 0:
|
|
|
|
break
|
|
|
|
|
|
|
|
blocks.add(bt.Block.init(chunk))
|
|
|
|
|
2021-02-26 00:23:22 +00:00
|
|
|
done = newFuture[void]()
|
2022-01-10 15:32:56 +00:00
|
|
|
engine = BlockExcEngine.new(MemoryStore.new(), wallet, BlockExcNetwork())
|
2021-08-30 19:25:20 +00:00
|
|
|
peerCtx = BlockExcPeerCtx(
|
2021-02-26 00:23:22 +00:00
|
|
|
id: peerId
|
|
|
|
)
|
|
|
|
engine.peers.add(peerCtx)
|
|
|
|
|
|
|
|
test "should handle want list":
|
|
|
|
let wantList = makeWantList(blocks.mapIt( it.cid ))
|
2022-01-10 15:32:56 +00:00
|
|
|
proc handler() {.async.} =
|
|
|
|
let ctx = await engine.taskQueue.pop()
|
2021-02-26 00:23:22 +00:00
|
|
|
check ctx.id == peerId
|
|
|
|
check ctx.peerWants.mapIt( it.cid ) == blocks.mapIt( it.cid )
|
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
let done = handler()
|
|
|
|
await engine.wantListHandler(peerId, wantList)
|
2021-02-26 00:23:22 +00:00
|
|
|
await done
|
|
|
|
|
|
|
|
test "should handle want list - `dont-have`":
|
|
|
|
let wantList = makeWantList(blocks.mapIt( it.cid ), sendDontHave = true)
|
|
|
|
proc sendPresence(peerId: PeerID, presence: seq[BlockPresence]) =
|
|
|
|
check presence.mapIt( it.cid ) == wantList.entries.mapIt( it.`block` )
|
|
|
|
for p in presence:
|
|
|
|
check:
|
|
|
|
p.`type` == BlockPresenceType.presenceDontHave
|
|
|
|
|
|
|
|
done.complete()
|
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
engine.network = BlockExcNetwork(request: BlockExcRequest(
|
|
|
|
sendPresence: sendPresence
|
|
|
|
))
|
2021-02-26 00:23:22 +00:00
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
await engine.wantListHandler(peerId, wantList)
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
await done
|
|
|
|
|
|
|
|
test "should handle want list - `dont-have` some blocks":
|
|
|
|
let wantList = makeWantList(blocks.mapIt( it.cid ), sendDontHave = true)
|
|
|
|
proc sendPresence(peerId: PeerID, presence: seq[BlockPresence]) =
|
|
|
|
check presence.mapIt( it.cid ) == blocks[2..blocks.high].mapIt( it.cid.data.buffer )
|
|
|
|
for p in presence:
|
|
|
|
check:
|
|
|
|
p.`type` == BlockPresenceType.presenceDontHave
|
|
|
|
|
|
|
|
done.complete()
|
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
engine.network = BlockExcNetwork(request: BlockExcRequest(
|
|
|
|
sendPresence: sendPresence
|
|
|
|
))
|
|
|
|
|
|
|
|
check await engine.localStore.putBlock(blocks[0])
|
|
|
|
check await engine.localStore.putBlock(blocks[1])
|
|
|
|
await engine.wantListHandler(peerId, wantList)
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
await done
|
|
|
|
|
2021-04-14 14:19:45 +00:00
|
|
|
test "stores blocks in local store":
|
2021-02-26 00:23:22 +00:00
|
|
|
let pending = blocks.mapIt(
|
|
|
|
engine.pendingBlocks.addOrAwait( it.cid )
|
|
|
|
)
|
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
await engine.blocksHandler(peerId, blocks)
|
2021-02-26 00:23:22 +00:00
|
|
|
let resolved = await allFinished(pending)
|
|
|
|
check resolved.mapIt( it.read ) == blocks
|
|
|
|
for b in blocks:
|
|
|
|
check engine.localStore.hasBlock(b.cid)
|
|
|
|
|
2021-04-14 14:19:45 +00:00
|
|
|
test "sends payments for received blocks":
|
2021-05-10 14:21:47 +00:00
|
|
|
let account = Account(address: EthAddress.example)
|
2021-05-10 11:47:15 +00:00
|
|
|
let peerContext = engine.getPeerCtx(peerId)
|
2021-05-10 14:21:47 +00:00
|
|
|
peerContext.account = account.some
|
2021-05-10 11:47:15 +00:00
|
|
|
peerContext.peerPrices = blocks.mapIt((it.cid, rand(uint16).u256)).toTable
|
2021-04-14 14:19:45 +00:00
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
engine.network = BlockExcNetwork(request: BlockExcRequest(
|
|
|
|
sendPayment: proc(receiver: PeerID, payment: SignedState) =
|
|
|
|
let amount = blocks.mapIt(peerContext.peerPrices[it.cid]).foldl(a+b)
|
|
|
|
let balances = !payment.state.outcome.balances(Asset)
|
|
|
|
check receiver == peerId
|
|
|
|
check balances[account.address.toDestination] == amount
|
|
|
|
done.complete()
|
|
|
|
))
|
2021-04-14 14:19:45 +00:00
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
await engine.blocksHandler(peerId, blocks)
|
2021-04-14 14:19:45 +00:00
|
|
|
|
|
|
|
await done.wait(100.millis)
|
|
|
|
|
2021-02-26 00:23:22 +00:00
|
|
|
test "should handle block presence":
|
2021-04-26 15:11:11 +00:00
|
|
|
let price = UInt256.example
|
2022-01-10 15:32:56 +00:00
|
|
|
await engine.blockPresenceHandler(
|
2021-02-26 00:23:22 +00:00
|
|
|
peerId,
|
|
|
|
blocks.mapIt(
|
2021-04-26 15:11:11 +00:00
|
|
|
PresenceMessage.init(
|
|
|
|
Presence(
|
|
|
|
cid: it.cid,
|
|
|
|
have: true,
|
|
|
|
price: price
|
|
|
|
))))
|
|
|
|
|
|
|
|
for cid in blocks.mapIt(it.cid):
|
|
|
|
check peerCtx.peerHave.contains(cid)
|
|
|
|
check peerCtx.peerPrices[cid] == price
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
suite "Task Handler":
|
|
|
|
|
|
|
|
let
|
|
|
|
rng = Rng.instance()
|
2022-01-10 15:32:56 +00:00
|
|
|
chunker = RandomChunker.new(Rng.instance(), size = 2048, chunkSize = 256)
|
2021-04-19 14:37:38 +00:00
|
|
|
wallet = WalletRef.example
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
var
|
2021-08-30 19:25:20 +00:00
|
|
|
engine: BlockExcEngine
|
|
|
|
peersCtx: seq[BlockExcPeerCtx]
|
2021-02-26 00:23:22 +00:00
|
|
|
peers: seq[PeerID]
|
|
|
|
done: Future[void]
|
2022-01-10 15:32:56 +00:00
|
|
|
blocks: seq[bt.Block]
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
setup:
|
2022-01-10 15:32:56 +00:00
|
|
|
while true:
|
|
|
|
let chunk = await chunker.getBytes()
|
|
|
|
if chunk.len <= 0:
|
|
|
|
break
|
|
|
|
|
|
|
|
blocks.add(bt.Block.init(chunk))
|
|
|
|
|
2021-02-26 00:23:22 +00:00
|
|
|
done = newFuture[void]()
|
2022-01-10 15:32:56 +00:00
|
|
|
engine = BlockExcEngine.new(MemoryStore.new(), wallet, BlockExcNetwork())
|
2021-02-26 00:23:22 +00:00
|
|
|
peersCtx = @[]
|
|
|
|
|
|
|
|
for i in 0..3:
|
|
|
|
let seckey = PrivateKey.random(rng[]).tryGet()
|
2021-10-29 19:30:52 +00:00
|
|
|
peers.add(PeerID.init(seckey.getPublicKey().tryGet()).tryGet())
|
2021-02-26 00:23:22 +00:00
|
|
|
|
2021-08-30 19:25:20 +00:00
|
|
|
peersCtx.add(BlockExcPeerCtx(
|
2021-02-26 00:23:22 +00:00
|
|
|
id: peers[i]
|
|
|
|
))
|
|
|
|
|
|
|
|
engine.peers = peersCtx
|
2021-05-10 10:47:45 +00:00
|
|
|
engine.pricing = Pricing.example.some
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
test "Should send want-blocks in priority order":
|
|
|
|
proc sendBlocks(
|
|
|
|
id: PeerID,
|
|
|
|
blks: seq[bt.Block]) {.gcsafe.} =
|
|
|
|
check blks.len == 2
|
|
|
|
check:
|
|
|
|
blks[1].cid == blocks[0].cid
|
|
|
|
blks[0].cid == blocks[1].cid
|
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
for blk in blocks:
|
|
|
|
check await engine.localStore.putBlock(blk)
|
|
|
|
engine.network.request.sendBlocks = sendBlocks
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
# second block to send by priority
|
|
|
|
peersCtx[0].peerWants.add(
|
|
|
|
Entry(
|
|
|
|
`block`: blocks[0].cid.data.buffer,
|
|
|
|
priority: 49,
|
|
|
|
cancel: false,
|
|
|
|
wantType: WantType.wantBlock,
|
|
|
|
sendDontHave: false)
|
|
|
|
)
|
|
|
|
|
|
|
|
# first block to send by priority
|
|
|
|
peersCtx[0].peerWants.add(
|
|
|
|
Entry(
|
|
|
|
`block`: blocks[1].cid.data.buffer,
|
|
|
|
priority: 50,
|
|
|
|
cancel: false,
|
|
|
|
wantType: WantType.wantBlock,
|
|
|
|
sendDontHave: false)
|
|
|
|
)
|
|
|
|
|
|
|
|
await engine.taskHandler(peersCtx[0])
|
|
|
|
|
|
|
|
test "Should send presence":
|
2021-05-10 09:20:37 +00:00
|
|
|
let present = blocks
|
2022-01-10 15:32:56 +00:00
|
|
|
let missing = @[bt.Block.init("missing".toBytes)]
|
2021-05-10 10:47:45 +00:00
|
|
|
let price = (!engine.pricing).price
|
2021-02-26 00:23:22 +00:00
|
|
|
|
2021-05-10 09:20:37 +00:00
|
|
|
proc sendPresence(id: PeerID, presence: seq[BlockPresence]) =
|
|
|
|
check presence.mapIt(!Presence.init(it)) == @[
|
2021-05-10 10:47:45 +00:00
|
|
|
Presence(cid: present[0].cid, have: true, price: price),
|
|
|
|
Presence(cid: present[1].cid, have: true, price: price),
|
2021-05-10 09:20:37 +00:00
|
|
|
Presence(cid: missing[0].cid, have: false)
|
|
|
|
]
|
2021-02-26 00:23:22 +00:00
|
|
|
|
2022-01-10 15:32:56 +00:00
|
|
|
for blk in blocks:
|
|
|
|
check await engine.localStore.putBlock(blk)
|
|
|
|
engine.network.request.sendPresence = sendPresence
|
2021-02-26 00:23:22 +00:00
|
|
|
|
|
|
|
# have block
|
|
|
|
peersCtx[0].peerWants.add(
|
|
|
|
Entry(
|
2021-05-10 09:20:37 +00:00
|
|
|
`block`: present[0].cid.data.buffer,
|
2021-02-26 00:23:22 +00:00
|
|
|
priority: 1,
|
|
|
|
cancel: false,
|
|
|
|
wantType: WantType.wantHave,
|
|
|
|
sendDontHave: false)
|
|
|
|
)
|
|
|
|
|
|
|
|
# have block
|
|
|
|
peersCtx[0].peerWants.add(
|
|
|
|
Entry(
|
2021-05-10 09:20:37 +00:00
|
|
|
`block`: present[1].cid.data.buffer,
|
2021-02-26 00:23:22 +00:00
|
|
|
priority: 1,
|
|
|
|
cancel: false,
|
|
|
|
wantType: WantType.wantHave,
|
|
|
|
sendDontHave: false)
|
|
|
|
)
|
|
|
|
|
|
|
|
# don't have block
|
|
|
|
peersCtx[0].peerWants.add(
|
|
|
|
Entry(
|
2021-05-10 09:20:37 +00:00
|
|
|
`block`: missing[0].cid.data.buffer,
|
2021-02-26 00:23:22 +00:00
|
|
|
priority: 1,
|
|
|
|
cancel: false,
|
|
|
|
wantType: WantType.wantHave,
|
|
|
|
sendDontHave: false)
|
|
|
|
)
|
|
|
|
|
|
|
|
await engine.taskHandler(peersCtx[0])
|