2021-06-04 17:20:37 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018-2019 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
|
2021-07-06 13:14:45 +00:00
|
|
|
std/[algorithm, os, sequtils, strformat, strutils],
|
|
|
|
../nimbus/db/db_chain,
|
2021-07-21 13:31:52 +00:00
|
|
|
../nimbus/p2p/[chain, clique, clique/clique_snapshot],
|
2021-07-06 13:14:45 +00:00
|
|
|
./test_clique/[pool, undump],
|
|
|
|
eth/[common, keys],
|
2021-06-04 17:20:37 +00:00
|
|
|
stint,
|
|
|
|
unittest2
|
|
|
|
|
2021-07-06 13:14:45 +00:00
|
|
|
let
|
|
|
|
goerliCapture = "test_clique" / "goerli51840.txt.gz"
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Helpers
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
proc getBlockHeader(ap: TesterPool; number: BlockNumber): BlockHeader =
|
|
|
|
## Shortcut => db/db_chain.getBlockHeader()
|
|
|
|
doAssert ap.db.getBlockHeader(number, result)
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Test Runners
|
|
|
|
# ------------------------------------------------------------------------------
|
2021-06-16 15:12:51 +00:00
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
# clique/snapshot_test.go(99): func TestClique(t *testing.T) {
|
2021-07-21 13:31:52 +00:00
|
|
|
proc runCliqueSnapshot(noisy = true; postProcessOk = false;
|
|
|
|
testIds = {0 .. 999}; skipIds = {0}-{0}) =
|
2021-06-14 18:33:57 +00:00
|
|
|
## Clique PoA Snapshot
|
|
|
|
## ::
|
|
|
|
## Tests that Clique signer voting is evaluated correctly for various
|
|
|
|
## simple and complex scenarios, as well as that a few special corner
|
|
|
|
## cases fail correctly.
|
|
|
|
##
|
2021-07-21 13:31:52 +00:00
|
|
|
let postProcessInfo = if postProcessOk: ", Transaction Finaliser Applied"
|
|
|
|
else: ", Without Finaliser"
|
|
|
|
suite &"Clique PoA Snapshot{postProcessInfo}":
|
2021-06-11 17:26:08 +00:00
|
|
|
var
|
2021-07-14 15:13:27 +00:00
|
|
|
pool = newVoterPool()
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2021-07-14 15:13:27 +00:00
|
|
|
pool.debug = noisy
|
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
# clique/snapshot_test.go(379): for i, tt := range tests {
|
2021-07-21 13:31:52 +00:00
|
|
|
for tt in voterSamples.filterIt(it.id in testIds):
|
2021-06-15 16:34:22 +00:00
|
|
|
|
2021-06-16 08:07:18 +00:00
|
|
|
test &"Snapshots {tt.id:2}: {tt.info.substr(0,50)}...":
|
2021-06-15 16:34:22 +00:00
|
|
|
pool.say "\n"
|
2021-06-14 18:33:57 +00:00
|
|
|
|
2021-07-21 13:31:52 +00:00
|
|
|
# Noisily skip this test
|
|
|
|
if tt.id in skipIds:
|
2021-06-15 16:34:22 +00:00
|
|
|
skip()
|
2021-06-14 18:33:57 +00:00
|
|
|
|
|
|
|
else:
|
|
|
|
# Assemble a chain of headers from the cast votes
|
|
|
|
# see clique/snapshot_test.go(407): config := *params.TestChainConfig
|
2021-06-16 15:12:51 +00:00
|
|
|
pool
|
|
|
|
.resetVoterChain(tt.signers, tt.epoch)
|
|
|
|
# see clique/snapshot_test.go(425): for j, block := range blocks {
|
|
|
|
.appendVoter(tt.votes)
|
2021-07-21 13:31:52 +00:00
|
|
|
.commitVoterChain(postProcessOk)
|
2021-06-14 18:33:57 +00:00
|
|
|
|
|
|
|
# see clique/snapshot_test.go(477): if err != nil {
|
2021-07-21 13:31:52 +00:00
|
|
|
if tt.failure != cliqueNoError[0]:
|
2021-06-14 18:33:57 +00:00
|
|
|
# Note that clique/snapshot_test.go does not verify _here_ against
|
|
|
|
# the scheduled test error -- rather this voting error is supposed
|
|
|
|
# to happen earlier (processed at clique/snapshot_test.go(467)) when
|
|
|
|
# assembling the block chain (sounds counter intuitive to the author
|
|
|
|
# of this source file as the scheduled errors are _clique_ related).
|
2021-07-21 13:31:52 +00:00
|
|
|
check pool.failed[1][0] == tt.failure
|
2021-06-14 18:33:57 +00:00
|
|
|
else:
|
|
|
|
let
|
|
|
|
expected = tt.results.mapIt("@" & it).sorted
|
2021-07-14 15:13:27 +00:00
|
|
|
snapResult = pool.pp(pool.cliqueSigners).sorted
|
|
|
|
pool.say "*** snap state=", pool.snapshot.pp(16)
|
2021-06-14 18:33:57 +00:00
|
|
|
pool.say " result=[", snapResult.join(",") & "]"
|
|
|
|
pool.say " expected=[", expected.join(",") & "]"
|
|
|
|
|
|
|
|
# Verify the final list of signers against the expected ones
|
|
|
|
check snapResult == expected
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2021-07-21 13:31:52 +00:00
|
|
|
proc runCliqueSnapshot(noisy = true; postProcessOk = false; testId: int) =
|
|
|
|
noisy.runCliqueSnapshot(postProcessOk, testIds = {testId})
|
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2021-07-14 15:13:27 +00:00
|
|
|
proc runGoerliReplay(noisy = true; dir = "tests"; stopAfterBlock = 0u64) =
|
2021-07-06 13:14:45 +00:00
|
|
|
var
|
2021-07-14 15:13:27 +00:00
|
|
|
pool = newVoterPool()
|
2021-07-06 13:14:45 +00:00
|
|
|
cache: array[7,(seq[BlockHeader],seq[BlockBody])]
|
|
|
|
cInx = 0
|
|
|
|
stoppedOk = false
|
|
|
|
|
2021-07-14 15:13:27 +00:00
|
|
|
pool.debug = noisy
|
|
|
|
|
|
|
|
let stopThreshold = if stopAfterBlock == 0u64: uint64.high.u256
|
|
|
|
else: stopAfterBlock.u256
|
|
|
|
|
2021-07-06 13:14:45 +00:00
|
|
|
suite "Replay Goerli Chain":
|
|
|
|
|
|
|
|
for w in (dir / goerliCapture).undumpNextGroup:
|
|
|
|
|
|
|
|
if w[0][0].blockNumber == 0.u256:
|
|
|
|
# Verify Genesis
|
|
|
|
doAssert w[0][0] == pool.getBlockHeader(0.u256)
|
|
|
|
|
|
|
|
else:
|
|
|
|
# Condense in cache
|
|
|
|
cache[cInx] = w
|
|
|
|
cInx.inc
|
|
|
|
|
|
|
|
# Handy for partial tests
|
2021-07-14 15:13:27 +00:00
|
|
|
if stopThreshold < cache[cInx-1][0][0].blockNumber:
|
2021-07-06 13:14:45 +00:00
|
|
|
stoppedOk = true
|
|
|
|
break
|
|
|
|
|
|
|
|
# Run from cache if complete set
|
|
|
|
if cache.len <= cInx:
|
|
|
|
cInx = 0
|
|
|
|
let
|
|
|
|
first = cache[0][0][0].blockNumber
|
|
|
|
last = cache[^1][0][^1].blockNumber
|
|
|
|
test &"Goerli Blocks #{first}..#{last} ({cache.len} transactions)":
|
|
|
|
for (headers,bodies) in cache:
|
2021-07-14 15:13:27 +00:00
|
|
|
let addedPersistBlocks = pool.chain.persistBlocks(headers,bodies)
|
2021-07-06 13:14:45 +00:00
|
|
|
check addedPersistBlocks == ValidationResult.Ok
|
|
|
|
if addedPersistBlocks != ValidationResult.Ok: return
|
|
|
|
|
|
|
|
# Rest from cache
|
|
|
|
if 0 < cInx:
|
|
|
|
let
|
|
|
|
first = cache[0][0][0].blockNumber
|
|
|
|
last = cache[cInx-1][0][^1].blockNumber
|
|
|
|
test &"Goerli Blocks #{first}..#{last} ({cInx} transactions)":
|
|
|
|
for (headers,bodies) in cache:
|
2021-07-14 15:13:27 +00:00
|
|
|
let addedPersistBlocks = pool.chain.persistBlocks(headers,bodies)
|
2021-07-06 13:14:45 +00:00
|
|
|
check addedPersistBlocks == ValidationResult.Ok
|
|
|
|
if addedPersistBlocks != ValidationResult.Ok: return
|
|
|
|
|
|
|
|
if stoppedOk:
|
2021-07-14 15:13:27 +00:00
|
|
|
test &"Runner stopped after reaching #{stopThreshold}":
|
|
|
|
discard
|
|
|
|
|
|
|
|
|
2021-07-21 13:31:52 +00:00
|
|
|
proc runGoerliBaybySteps(noisy = true; dir = "tests"; stopAfterBlock = 0u64) =
|
2021-07-14 15:13:27 +00:00
|
|
|
var
|
|
|
|
pool = newVoterPool()
|
|
|
|
stoppedOk = false
|
|
|
|
|
|
|
|
pool.debug = noisy
|
|
|
|
|
2021-07-21 13:31:52 +00:00
|
|
|
let stopThreshold = if stopAfterBlock == 0u64: 20.u256
|
2021-07-14 15:13:27 +00:00
|
|
|
else: stopAfterBlock.u256
|
|
|
|
|
|
|
|
suite "Replay Goerli Chain Transactions Single Blockwise":
|
|
|
|
|
|
|
|
for w in (dir / goerliCapture).undumpNextGroup:
|
2021-07-21 13:31:52 +00:00
|
|
|
if stoppedOk:
|
|
|
|
break
|
2021-07-14 15:13:27 +00:00
|
|
|
if w[0][0].blockNumber == 0.u256:
|
|
|
|
# Verify Genesis
|
|
|
|
doAssert w[0][0] == pool.getBlockHeader(0.u256)
|
|
|
|
else:
|
|
|
|
for n in 0 ..< w[0].len:
|
|
|
|
let
|
|
|
|
header = w[0][n]
|
|
|
|
body = w[1][n]
|
2021-07-21 13:31:52 +00:00
|
|
|
var
|
2021-07-14 15:13:27 +00:00
|
|
|
parents = w[0][0 ..< n]
|
|
|
|
test &"Goerli Block #{header.blockNumber} + {parents.len} parents":
|
|
|
|
check pool.chain.clique.cliqueSnapshot(header,parents).isOk
|
|
|
|
let addedPersistBlocks = pool.chain.persistBlocks(@[header],@[body])
|
|
|
|
check addedPersistBlocks == ValidationResult.Ok
|
|
|
|
if addedPersistBlocks != ValidationResult.Ok: return
|
2021-07-21 13:31:52 +00:00
|
|
|
# Handy for partial tests
|
|
|
|
if stopThreshold <= header.blockNumber:
|
|
|
|
stoppedOk = true
|
|
|
|
break
|
2021-07-14 15:13:27 +00:00
|
|
|
|
|
|
|
if stoppedOk:
|
|
|
|
test &"Runner stopped after reaching #{stopThreshold}":
|
2021-07-06 13:14:45 +00:00
|
|
|
discard
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
# Main function(s)
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
2021-07-21 13:31:52 +00:00
|
|
|
let
|
|
|
|
skipIDs = {999}
|
|
|
|
|
2021-07-06 13:14:45 +00:00
|
|
|
proc cliqueMain*(noisy = defined(debug)) =
|
2021-07-21 13:31:52 +00:00
|
|
|
noisy.runCliqueSnapshot(true)
|
|
|
|
noisy.runCliqueSnapshot(false, skipIDs = skipIDs)
|
2021-07-14 15:13:27 +00:00
|
|
|
noisy.runGoerliBaybySteps
|
2021-07-06 13:14:45 +00:00
|
|
|
noisy.runGoerliReplay
|
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
when isMainModule:
|
2021-07-06 13:14:45 +00:00
|
|
|
let noisy = defined(debug)
|
2021-07-21 13:31:52 +00:00
|
|
|
noisy.runCliqueSnapshot(true)
|
|
|
|
noisy.runCliqueSnapshot(false)
|
2021-07-14 15:13:27 +00:00
|
|
|
noisy.runGoerliBaybySteps(dir = ".")
|
2021-07-21 13:31:52 +00:00
|
|
|
noisy.runGoerliReplay(dir = ".")
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2021-07-06 13:14:45 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
2021-06-04 17:20:37 +00:00
|
|
|
# End
|
2021-07-06 13:14:45 +00:00
|
|
|
# ------------------------------------------------------------------------------
|