2021-04-24 04:01:56 +00:00
|
|
|
# nim-graphql
|
|
|
|
# Copyright (c) 2021 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
|
2021-06-21 09:54:55 +00:00
|
|
|
std/[os, json],
|
|
|
|
stew/byteutils, unittest2,
|
2021-09-11 14:58:01 +00:00
|
|
|
eth/[p2p, common, trie/db, rlp],
|
2021-04-24 04:01:56 +00:00
|
|
|
graphql, ../nimbus/graphql/ethapi, graphql/test_common,
|
2022-03-21 17:12:07 +00:00
|
|
|
../nimbus/sync/protocol_ethxx,
|
2021-09-07 13:45:01 +00:00
|
|
|
../nimbus/[genesis, config, chain_config, context],
|
2021-09-11 14:58:01 +00:00
|
|
|
../nimbus/db/[db_chain],
|
2022-01-23 11:39:43 +00:00
|
|
|
../nimbus/p2p/chain, ./test_helpers,
|
|
|
|
../nimbus/utils/tx_pool
|
2021-04-24 04:01:56 +00:00
|
|
|
|
|
|
|
type
|
|
|
|
EthBlock = object
|
|
|
|
header: BlockHeader
|
|
|
|
transactions: seq[Transaction]
|
|
|
|
uncles: seq[BlockHeader]
|
|
|
|
|
|
|
|
const
|
2022-03-21 17:12:07 +00:00
|
|
|
caseFolder = "tests" / "graphql" / "eth" & $ethVersion
|
2021-04-24 04:01:56 +00:00
|
|
|
dataFolder = "tests" / "fixtures" / "eth_tests" / "BlockchainTests" / "ValidBlocks" / "bcUncleTest"
|
|
|
|
|
|
|
|
proc toBlock(n: JsonNode, key: string): EthBlock =
|
|
|
|
let rlpBlob = hexToSeqByte(n[key].str)
|
|
|
|
rlp.decode(rlpBlob, EthBlock)
|
|
|
|
|
2021-09-08 13:28:17 +00:00
|
|
|
proc setupChain(): BaseChainDB =
|
|
|
|
let config = ChainConfig(
|
|
|
|
chainId : MainNet.ChainId,
|
|
|
|
byzantiumBlock : 0.toBlockNumber,
|
|
|
|
constantinopleBlock : 0.toBlockNumber,
|
|
|
|
petersburgBlock : 0.toBlockNumber,
|
|
|
|
istanbulBlock : 0.toBlockNumber,
|
|
|
|
muirGlacierBlock : 0.toBlockNumber,
|
|
|
|
berlinBlock : 10.toBlockNumber,
|
2021-12-10 13:12:19 +00:00
|
|
|
londonBlock : high(BlockNumber),
|
|
|
|
arrowGlacierBlock : high(BlockNumber)
|
2021-09-08 13:28:17 +00:00
|
|
|
)
|
|
|
|
|
2021-04-24 04:01:56 +00:00
|
|
|
var jn = json.parseFile(dataFolder / "oneUncle.json")
|
|
|
|
for k, v in jn:
|
|
|
|
if v["network"].str == "Istanbul":
|
|
|
|
jn = v
|
|
|
|
break
|
|
|
|
|
2021-09-08 13:28:17 +00:00
|
|
|
let gen = jn.toBlock("genesisRLP")
|
|
|
|
var genesis = Genesis(
|
|
|
|
nonce : gen.header.nonce,
|
|
|
|
extraData : gen.header.extraData,
|
|
|
|
gasLimit : gen.header.gasLimit,
|
|
|
|
difficulty: gen.header.difficulty,
|
|
|
|
mixHash : gen.header.mixDigest,
|
|
|
|
coinBase : gen.header.coinbase,
|
|
|
|
timestamp : gen.header.timestamp,
|
|
|
|
baseFeePerGas: gen.header.fee
|
|
|
|
)
|
|
|
|
if not parseGenesisAlloc($(jn["pre"]), genesis.alloc):
|
2021-05-13 09:01:58 +00:00
|
|
|
quit(QuitFailure)
|
2021-05-20 06:01:57 +00:00
|
|
|
|
2021-09-16 15:59:46 +00:00
|
|
|
let customNetwork = NetworkParams(
|
2021-09-08 13:28:17 +00:00
|
|
|
config: config,
|
|
|
|
genesis: genesis
|
|
|
|
)
|
|
|
|
|
|
|
|
let chainDB = newBaseChainDB(
|
|
|
|
newMemoryDb(),
|
|
|
|
pruneTrie = false,
|
|
|
|
CustomNet,
|
|
|
|
customNetwork
|
|
|
|
)
|
|
|
|
chainDB.initializeEmptyDb()
|
2021-04-24 04:01:56 +00:00
|
|
|
|
|
|
|
let blocks = jn["blocks"]
|
|
|
|
var headers: seq[BlockHeader]
|
|
|
|
var bodies: seq[BlockBody]
|
|
|
|
for n in blocks:
|
|
|
|
let ethBlock = n.toBlock("rlp")
|
|
|
|
headers.add ethBlock.header
|
|
|
|
bodies.add BlockBody(
|
|
|
|
transactions: ethBlock.transactions,
|
|
|
|
uncles: ethBlock.uncles
|
|
|
|
)
|
|
|
|
|
|
|
|
let chain = newChain(chainDB)
|
|
|
|
let res = chain.persistBlocks(headers, bodies)
|
|
|
|
assert(res == ValidationResult.OK)
|
|
|
|
|
2021-09-08 13:28:17 +00:00
|
|
|
chainDB
|
2021-04-24 04:01:56 +00:00
|
|
|
|
2021-09-08 13:28:17 +00:00
|
|
|
proc graphqlMain*() =
|
2021-04-24 04:01:56 +00:00
|
|
|
let
|
2021-09-16 15:59:46 +00:00
|
|
|
conf = makeTestConfig()
|
2021-09-07 13:45:01 +00:00
|
|
|
ethCtx = newEthContext()
|
|
|
|
ethNode = setupEthNode(conf, ethCtx, eth)
|
2021-09-08 13:28:17 +00:00
|
|
|
chainDB = setupChain()
|
2022-01-23 11:39:43 +00:00
|
|
|
txPool = TxPoolRef.new(chainDB, conf.engineSigner)
|
2021-04-24 04:01:56 +00:00
|
|
|
|
2022-01-23 11:39:43 +00:00
|
|
|
let ctx = setupGraphqlContext(chainDB, ethNode, txPool)
|
2021-04-24 04:01:56 +00:00
|
|
|
when isMainModule:
|
|
|
|
ctx.main(caseFolder, purgeSchema = false)
|
|
|
|
else:
|
2021-05-03 09:06:19 +00:00
|
|
|
disableParamFiltering()
|
2021-04-24 04:01:56 +00:00
|
|
|
ctx.executeCases(caseFolder, purgeSchema = false)
|
|
|
|
|
|
|
|
when isMainModule:
|
|
|
|
graphqlMain()
|