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-06-14 18:33:57 +00:00
|
|
|
std/[algorithm, sequtils, strformat, strutils],
|
|
|
|
../nimbus/p2p/[clique, clique/snapshot],
|
2021-06-04 17:20:37 +00:00
|
|
|
../nimbus/utils,
|
|
|
|
./test_clique/pool,
|
2021-06-14 18:33:57 +00:00
|
|
|
eth/keys,
|
2021-06-04 17:20:37 +00:00
|
|
|
stint,
|
|
|
|
unittest2
|
|
|
|
|
|
|
|
# clique/snapshot_test.go(99): func TestClique(t *testing.T) {
|
|
|
|
proc cliqueMain*(noisy = defined(debug)) =
|
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-06-11 17:26:08 +00:00
|
|
|
suite "Clique PoA Snapshot":
|
|
|
|
var
|
|
|
|
pool = newTesterPool()
|
2021-06-14 18:33:57 +00:00
|
|
|
skipSet = {20, 23, 24}
|
2021-06-11 17:26:08 +00:00
|
|
|
testSet = {0 .. 99}
|
2021-06-04 17:20:37 +00:00
|
|
|
|
2021-06-14 18:33:57 +00:00
|
|
|
pool.setDebug(noisy)
|
|
|
|
|
2021-06-04 17:20:37 +00:00
|
|
|
# clique/snapshot_test.go(379): for i, tt := range tests {
|
2021-06-14 18:33:57 +00:00
|
|
|
for tt in voterSamples.filterIt(it.id in testSet):
|
|
|
|
pool.say "\n"
|
|
|
|
test &"Snapshots {tt.id}: {tt.info.substr(0,50)}...":
|
|
|
|
|
|
|
|
if tt.id in skipSet:
|
|
|
|
echo &"Test {tt.id} skipped"
|
|
|
|
|
|
|
|
else:
|
|
|
|
# Assemble a chain of headers from the cast votes
|
|
|
|
# see clique/snapshot_test.go(407): config := *params.TestChainConfig
|
|
|
|
pool.resetVoterChain(tt.signers, tt.epoch)
|
|
|
|
|
|
|
|
# see clique/snapshot_test.go(425): for j, block := range blocks {
|
|
|
|
for voter in tt.votes:
|
|
|
|
pool.appendVoter(voter)
|
|
|
|
pool.commitVoterChain
|
|
|
|
|
|
|
|
# see clique/snapshot_test.go(476): snap, err := engine.snapshot( [..]
|
|
|
|
let topHeader = pool.topVoterHeader
|
|
|
|
var snap = pool.snapshot(topHeader.blockNumber, topHeader.hash, @[])
|
|
|
|
|
|
|
|
# see clique/snapshot_test.go(477): if err != nil {
|
2021-06-11 17:26:08 +00:00
|
|
|
if snap.isErr:
|
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-06-11 17:26:08 +00:00
|
|
|
check snap.error[0] == tt.failure
|
2021-06-14 18:33:57 +00:00
|
|
|
else:
|
|
|
|
let
|
|
|
|
expected = tt.results.mapIt("@" & it).sorted
|
|
|
|
snapResult = pool.pp(snap.value.signers).sorted
|
|
|
|
pool.say "*** snap state=", snap.pp(16)
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
when isMainModule:
|
|
|
|
cliqueMain()
|
|
|
|
|
|
|
|
# End
|