mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-13 22:04:52 +00:00
7d9e1d8607
* Code cosmetics * Aristo+Kvt: Fix api wrappers why: Api setup killed the backend descriptor when backend mapping was disabled. * Aristo: Implement masked profiling entries why: Database backend should be listed but not counted in tally * CoreDb: Simplify backend() methods why: DBMS backend access Was provided very early and over engineered. Now there are only two backend machines, one for `Kvt` and the other one for an `Mpt` available only via new API. * CoreDb: Code cleanup regarding descriptor types * CoreDb: Refactor/redefine `persistent()` methods why: There were `persistent()` methods for any type of caching storage facilities `Kvt`, `Mpt`, `Phk`, and `Acc`. Now there is only a single `persistent()` method storing all facilities in tandem (similar to how transactions work.) For non shared `Kvt` tables, there is now an extra storage method `saveOffSite()`. * CoreDb lingo update: `trie` becomes `column` why: Notion of a `trie` is pretty much hidden by the new `CoreDb` api. Revealed are sort of database columns for accounts an storage data, any of which have an internal state represented by a Keccack hash. So a `trie` or `MPT` becomes a `column` and a `rootHash` becomes a column state. * Aristo: rename backend filed `filters` => `journal` * Update full sync logging details: + Disable eth handler noise while syncing + Log journal depth (if available) * Fix copyright year * Fix cruft and unwanted imports
138 lines
4.5 KiB
Nim
138 lines
4.5 KiB
Nim
# Nimbus
|
|
# Copyright (c) 2018-2024 Status Research & Development GmbH
|
|
# Licensed under either of
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
|
|
# http://www.apache.org/licenses/LICENSE-2.0)
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or
|
|
# http://opensource.org/licenses/MIT)
|
|
# at your option. This file may not be copied, modified,
|
|
# or distributed except according to those terms.
|
|
|
|
import
|
|
std/[json, os, sets, tables, strutils],
|
|
chronicles,
|
|
unittest2,
|
|
stew/byteutils,
|
|
results,
|
|
./test_helpers,
|
|
../nimbus/sync/protocol/snap/snap_types,
|
|
../nimbus/db/aristo/aristo_merge,
|
|
../nimbus/db/kvt/kvt_utils,
|
|
../nimbus/db/aristo,
|
|
../nimbus/[tracer, vm_types],
|
|
../nimbus/common/common
|
|
|
|
proc setErrorLevel {.used.} =
|
|
when defined(chronicles_runtime_filtering) and loggingEnabled:
|
|
setLogLevel(LogLevel.ERROR)
|
|
|
|
|
|
proc preLoadLegaDb(cdb: CoreDbRef; jKvp: JsonNode) =
|
|
# Just a hack: MPT and KVT share the same base table
|
|
for k, v in jKvp:
|
|
let key = hexToSeqByte(k)
|
|
let value = hexToSeqByte(v.getStr())
|
|
cdb.kvt.put(key, value)
|
|
|
|
proc preLoadAristoDb(cdb: CoreDbRef; jKvp: JsonNode; num: BlockNumber) =
|
|
## Hack for `Aristo` pre-lading using the `snap` protocol proof-loader
|
|
var
|
|
proof: seq[SnapProof] # for pre-loading MPT
|
|
predRoot: Hash256 # from predecessor header
|
|
txRoot: Hash256 # header with block number `num`
|
|
rcptRoot: Hash256 # ditto
|
|
let
|
|
adb = cdb.ctx.getMpt(CtGeneric).backend.toAristo
|
|
kdb = cdb.newKvt.backend.toAristo
|
|
|
|
# Fill KVT and collect `proof` data
|
|
for (k,v) in jKvp.pairs:
|
|
let
|
|
key = hexToSeqByte(k)
|
|
val = hexToSeqByte(v.getStr())
|
|
if key.len == 32:
|
|
doAssert key == val.keccakHash.data
|
|
if val != @[0x80u8]: # Exclude empty item
|
|
proof.add SnapProof(val)
|
|
else:
|
|
if key[0] == 0:
|
|
try:
|
|
# Pull our particular header fields (if possible)
|
|
let header = rlp.decode(val, BlockHeader)
|
|
if header.blockNumber == num:
|
|
txRoot = header.txRoot
|
|
rcptRoot = header.receiptRoot
|
|
elif header.blockNumber == num-1:
|
|
predRoot = header.stateRoot
|
|
except RlpError:
|
|
discard
|
|
check kdb.put(key, val).isOk
|
|
|
|
# Install sub-trie roots onto production db
|
|
if txRoot.isValid:
|
|
doAssert adb.merge(txRoot, VertexID(CtTxs)).isOk
|
|
if rcptRoot.isValid:
|
|
doAssert adb.merge(rcptRoot, VertexID(CtReceipts)).isOk
|
|
doAssert adb.merge(predRoot, VertexID(CtAccounts)).isOk
|
|
|
|
# Set up production MPT
|
|
doAssert adb.merge(proof).isOk
|
|
|
|
# Remove locks so that hashify can re-assign changed nodes
|
|
adb.top.final.pPrf.clear
|
|
adb.top.final.fRpp.clear
|
|
|
|
|
|
# use tracerTestGen.nim to generate additional test data
|
|
proc testFixtureImpl(node: JsonNode, testStatusIMPL: var TestStatus, memoryDB: CoreDbRef) =
|
|
setErrorLevel()
|
|
|
|
var
|
|
blockNumber = UInt256.fromHex(node["blockNumber"].getStr())
|
|
com = CommonRef.new(memoryDB, chainConfigForNetwork(MainNet))
|
|
state = node["state"]
|
|
receipts = node["receipts"]
|
|
|
|
# disable POS/post Merge feature
|
|
com.setTTD none(DifficultyInt)
|
|
|
|
# Import raw data into database
|
|
if memoryDB.dbType in {LegacyDbMemory,LegacyDbPersistent}:
|
|
# Just a hack: MPT and KVT share the same base table
|
|
memoryDB.preLoadLegaDb state
|
|
else:
|
|
# Another hack for `Aristo` using the `snap` protocol proof-loader
|
|
memoryDB.preLoadAristoDb(state, blockNumber)
|
|
|
|
var header = com.db.getBlockHeader(blockNumber)
|
|
var headerHash = header.blockHash
|
|
var blockBody = com.db.getBlockBody(headerHash)
|
|
|
|
let txTraces = traceTransactions(com, header, blockBody)
|
|
let stateDump = dumpBlockState(com, header, blockBody)
|
|
let blockTrace = traceBlock(com, header, blockBody, {DisableState})
|
|
|
|
check node["txTraces"] == txTraces
|
|
check node["stateDump"] == stateDump
|
|
check node["blockTrace"] == blockTrace
|
|
for i in 0 ..< receipts.len:
|
|
let receipt = receipts[i]
|
|
let stateDiff = txTraces[i]["stateDiff"]
|
|
check receipt["root"].getStr().toLowerAscii() == stateDiff["afterRoot"].getStr().toLowerAscii()
|
|
|
|
|
|
proc testFixtureLega(node: JsonNode, testStatusIMPL: var TestStatus) =
|
|
node.testFixtureImpl(testStatusIMPL, newCoreDbRef LegacyDbMemory)
|
|
|
|
proc testFixtureAristo(node: JsonNode, testStatusIMPL: var TestStatus) =
|
|
node.testFixtureImpl(testStatusIMPL, newCoreDbRef AristoDbMemory)
|
|
|
|
proc tracerJsonMain*() =
|
|
suite "tracer json tests for legacy DB":
|
|
jsonTest("TracerTests", testFixtureLega)
|
|
suite "tracer json tests for Aristo DB":
|
|
jsonTest("TracerTests", testFixtureAristo)
|
|
|
|
when isMainModule:
|
|
tracerJsonMain()
|