mirror of
https://github.com/logos-storage/logos-storage-nim.git
synced 2026-01-02 13:33:10 +00:00
* cleanup imports and logs * add BlockHandle type * revert deps * refactor: async error handling and future tracking improvements - Update async procedures to use explicit raises annotation - Modify TrackedFutures to handle futures with no raised exceptions - Replace `asyncSpawn` with explicit future tracking - Update test suites to use `unittest2` - Standardize error handling across network and async components - Remove deprecated error handling patterns This commit introduces a more robust approach to async error handling and future management, improving type safety and reducing potential runtime errors. * bump nim-serde * remove asyncSpawn * rework background downloads and prefetch * imporove logging * refactor: enhance async procedures with error handling and raise annotations * misc cleanup * misc * refactor: implement allFinishedFailed to aggregate future results with success and failure tracking * refactor: update error handling in reader procedures to raise ChunkerError and CancelledError * refactor: improve error handling in wantListHandler and accountHandler procedures * refactor: simplify LPStreamReadError creation by consolidating parameters * refactor: enhance error handling in AsyncStreamWrapper to catch unexpected errors * refactor: enhance error handling in advertiser and discovery loops to improve resilience * misc * refactor: improve code structure and readability * remove cancellation from addSlotToQueue * refactor: add assertion for unexpected errors in local store checks * refactor: prevent tracking of finished futures and improve test assertions * refactor: improve error handling in local store checks * remove usage of msgDetail * feat: add initial implementation of discovery engine and related components * refactor: improve task scheduling logic by removing unnecessary break statement * break after scheduling a task * make taskHandler cancelable * refactor: update async handlers to raise CancelledError * refactor(advertiser): streamline error handling and improve task flow in advertise loops * fix: correct spelling of "divisible" in error messages and comments * refactor(discovery): simplify discovery task loop and improve error handling * refactor(engine): filter peers before processing in cancelBlocks procedure
184 lines
5.4 KiB
Nim
184 lines
5.4 KiB
Nim
## Nim-Codex
|
|
## Copyright (c) 2023 Status Research & Development GmbH
|
|
## Licensed under either of
|
|
## * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE))
|
|
## * MIT license ([LICENSE-MIT](LICENSE-MIT))
|
|
## at your option.
|
|
## This file may not be copied, modified, or distributed except according to
|
|
## those terms.
|
|
|
|
import pkg/chronos
|
|
import pkg/codex/blocktype as bt
|
|
import pkg/codex/stores/repostore
|
|
import pkg/codex/clock
|
|
|
|
import ../../asynctest
|
|
import ../helpers
|
|
import ../helpers/mocktimer
|
|
import ../helpers/mockrepostore
|
|
import ../helpers/mockclock
|
|
import ../examples
|
|
|
|
import codex/stores/maintenance
|
|
|
|
suite "BlockMaintainer":
|
|
var mockRepoStore: MockRepoStore
|
|
var interval: Duration
|
|
var mockTimer: MockTimer
|
|
var mockClock: MockClock
|
|
|
|
var blockMaintainer: BlockMaintainer
|
|
|
|
var testBe1: BlockExpiration
|
|
var testBe2: BlockExpiration
|
|
var testBe3: BlockExpiration
|
|
|
|
proc createTestExpiration(expiry: SecondsSince1970): BlockExpiration =
|
|
BlockExpiration(cid: bt.Block.example.cid, expiry: expiry)
|
|
|
|
setup:
|
|
mockClock = MockClock.new()
|
|
mockClock.set(100)
|
|
|
|
testBe1 = createTestExpiration(200)
|
|
testBe2 = createTestExpiration(300)
|
|
testBe3 = createTestExpiration(400)
|
|
|
|
mockRepoStore = MockRepoStore.new()
|
|
mockRepoStore.testBlockExpirations.add(testBe1)
|
|
mockRepoStore.testBlockExpirations.add(testBe2)
|
|
mockRepoStore.testBlockExpirations.add(testBe3)
|
|
|
|
interval = 1.days
|
|
mockTimer = MockTimer.new()
|
|
|
|
blockMaintainer = BlockMaintainer.new(
|
|
mockRepoStore, interval, numberOfBlocksPerInterval = 2, mockTimer, mockClock
|
|
)
|
|
|
|
test "Start should start timer at provided interval":
|
|
blockMaintainer.start()
|
|
check mockTimer.startCalled == 1
|
|
check mockTimer.mockInterval == interval
|
|
|
|
test "Stop should stop timer":
|
|
await blockMaintainer.stop()
|
|
check mockTimer.stopCalled == 1
|
|
|
|
test "Timer callback should call getBlockExpirations on RepoStore":
|
|
blockMaintainer.start()
|
|
await mockTimer.invokeCallback()
|
|
|
|
check:
|
|
mockRepoStore.getBeMaxNumber == 2
|
|
mockRepoStore.getBeOffset == 0
|
|
|
|
test "Timer callback should handle Catachable errors":
|
|
mockRepoStore.getBlockExpirationsThrows = true
|
|
blockMaintainer.start()
|
|
await mockTimer.invokeCallback()
|
|
|
|
test "Subsequent timer callback should call getBlockExpirations on RepoStore with offset":
|
|
blockMaintainer.start()
|
|
await mockTimer.invokeCallback()
|
|
await mockTimer.invokeCallback()
|
|
|
|
check:
|
|
mockRepoStore.getBeMaxNumber == 2
|
|
mockRepoStore.getBeOffset == 2
|
|
|
|
test "Timer callback should delete no blocks if none are expired":
|
|
blockMaintainer.start()
|
|
await mockTimer.invokeCallback()
|
|
|
|
check:
|
|
mockRepoStore.delBlockCids.len == 0
|
|
|
|
test "Timer callback should delete one block if it is expired":
|
|
mockClock.set(250)
|
|
blockMaintainer.start()
|
|
await mockTimer.invokeCallback()
|
|
|
|
check:
|
|
mockRepoStore.delBlockCids == [testBe1.cid]
|
|
|
|
test "Timer callback should delete multiple blocks if they are expired":
|
|
mockClock.set(500)
|
|
blockMaintainer.start()
|
|
await mockTimer.invokeCallback()
|
|
|
|
check:
|
|
mockRepoStore.delBlockCids == [testBe1.cid, testBe2.cid]
|
|
|
|
test "After deleting a block, subsequent timer callback should decrease offset by the number of deleted blocks":
|
|
mockClock.set(250)
|
|
blockMaintainer.start()
|
|
await mockTimer.invokeCallback()
|
|
|
|
check mockRepoStore.delBlockCids == [testBe1.cid]
|
|
|
|
# Because one block was deleted, the offset used in the next call should be 2 minus 1.
|
|
await mockTimer.invokeCallback()
|
|
|
|
check:
|
|
mockRepoStore.getBeMaxNumber == 2
|
|
mockRepoStore.getBeOffset == 1
|
|
|
|
test "Should delete all blocks if expired, in two timer callbacks":
|
|
mockClock.set(500)
|
|
blockMaintainer.start()
|
|
await mockTimer.invokeCallback()
|
|
await mockTimer.invokeCallback()
|
|
|
|
check mockRepoStore.delBlockCids == [testBe1.cid, testBe2.cid, testBe3.cid]
|
|
|
|
test "Iteration offset should loop":
|
|
blockMaintainer.start()
|
|
await mockTimer.invokeCallback()
|
|
check mockRepoStore.getBeOffset == 0
|
|
|
|
await mockTimer.invokeCallback()
|
|
check mockRepoStore.getBeOffset == 2
|
|
|
|
await mockTimer.invokeCallback()
|
|
check mockRepoStore.getBeOffset == 0
|
|
|
|
test "Should handle new blocks":
|
|
proc invokeTimerManyTimes(): Future[void] {.async.} =
|
|
for i in countup(0, 10):
|
|
await mockTimer.invokeCallback()
|
|
|
|
blockMaintainer.start()
|
|
await invokeTimerManyTimes()
|
|
|
|
# no blocks have expired
|
|
check mockRepoStore.delBlockCids == []
|
|
|
|
mockClock.set(250)
|
|
await invokeTimerManyTimes()
|
|
# one block has expired
|
|
check mockRepoStore.delBlockCids == [testBe1.cid]
|
|
|
|
# new blocks are added
|
|
let testBe4 = createTestExpiration(600)
|
|
let testBe5 = createTestExpiration(700)
|
|
mockRepoStore.testBlockExpirations.add(testBe4)
|
|
mockRepoStore.testBlockExpirations.add(testBe5)
|
|
|
|
mockClock.set(500)
|
|
await invokeTimerManyTimes()
|
|
# All blocks have expired
|
|
check mockRepoStore.delBlockCids == [testBe1.cid, testBe2.cid, testBe3.cid]
|
|
|
|
mockClock.set(650)
|
|
await invokeTimerManyTimes()
|
|
# First new block has expired
|
|
check mockRepoStore.delBlockCids ==
|
|
[testBe1.cid, testBe2.cid, testBe3.cid, testBe4.cid]
|
|
|
|
mockClock.set(750)
|
|
await invokeTimerManyTimes()
|
|
# Second new block has expired
|
|
check mockRepoStore.delBlockCids ==
|
|
[testBe1.cid, testBe2.cid, testBe3.cid, testBe4.cid, testBe5.cid]
|