import std/os import std/options import std/math import std/times import std/sequtils import std/importutils import pkg/chronos import pkg/stew/byteutils import pkg/datastore import pkg/questionable import pkg/questionable/results import pkg/stint import pkg/poseidon2 import pkg/poseidon2/io import pkg/nitro import pkg/codexdht/discv5/protocol as discv5 import pkg/codex/logutils import pkg/codex/stores import pkg/codex/clock import pkg/codex/contracts import pkg/codex/systemclock import pkg/codex/blockexchange import pkg/codex/chunker import pkg/codex/slots import pkg/codex/manifest import pkg/codex/discovery import pkg/codex/erasure import pkg/codex/merkletree import pkg/codex/blocktype as bt import pkg/codex/utils/asynciter import pkg/codex/node {.all.} import ../../asynctest import ../../examples import ../helpers import ../helpers/mockmarket import ../helpers/mockclock import ./helpers privateAccess(CodexNodeRef) # enable access to private fields asyncchecksuite "Test Node - Host contracts": setupAndTearDown() var sales: Sales purchasing: Purchasing manifest: Manifest manifestCidStr: string manifestCid: Cid market: MockMarket builder: SlotsBuilder verifiable: Manifest verifiableBlock: bt.Block protected: Manifest setup: # Setup Host Contracts and dependencies market = MockMarket.new() sales = Sales.new(market, clock, localStore) node.contracts = ( none ClientInteractions, some HostInteractions.new(clock, sales), none ValidatorInteractions) await node.start() # Populate manifest in local store manifest = await storeDataGetManifest(localStore, chunker) let manifestBlock = bt.Block.new( manifest.encode().tryGet(), codec = ManifestCodec).tryGet() manifestCid = manifestBlock.cid manifestCidStr = $(manifestCid) (await localStore.putBlock(manifestBlock)).tryGet() protected = (await erasure.encode(manifest, 3, 2)).tryGet() builder = SlotsBuilder.new(localStore, protected).tryGet() verifiable = (await builder.buildManifest()).tryGet() verifiableBlock = bt.Block.new( verifiable.encode().tryGet(), codec = ManifestCodec).tryGet() (await localStore.putBlock(verifiableBlock)).tryGet() test "onExpiryUpdate callback is set": check sales.onExpiryUpdate.isSome test "onExpiryUpdate callback": let # The blocks have set default TTL, so in order to update it we have to have larger TTL expectedExpiry: SecondsSince1970 = clock.now + DefaultBlockTtl.seconds + 11123 expiryUpdateCallback = !sales.onExpiryUpdate (await expiryUpdateCallback(manifestCidStr, expectedExpiry)).tryGet() for index in 0..