2021-05-17 11:35:16 +00:00
|
|
|
# Nimbus
|
2024-03-20 07:35:38 +00:00
|
|
|
# Copyright (c) 2021-2024 Status Research & Development GmbH
|
2021-05-17 11:35:16 +00:00
|
|
|
# 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.
|
|
|
|
|
2021-05-12 12:28:04 +00:00
|
|
|
import
|
2022-04-20 07:57:50 +00:00
|
|
|
std/[os, json, times],
|
2022-12-02 04:39:12 +00:00
|
|
|
eth/p2p,
|
2022-05-13 16:30:10 +00:00
|
|
|
../../../nimbus/sync/protocol,
|
2022-12-02 04:39:12 +00:00
|
|
|
../../../nimbus/config,
|
|
|
|
../../../nimbus/graphql/ethapi,
|
|
|
|
../../../tests/test_helpers,
|
|
|
|
../../../nimbus/core/[tx_pool, block_import],
|
|
|
|
../../../nimbus/common,
|
2021-05-17 11:35:16 +00:00
|
|
|
graphql, ../sim_utils
|
2021-05-12 12:28:04 +00:00
|
|
|
|
|
|
|
const
|
|
|
|
baseFolder = "hive_integration" / "nodocker" / "graphql"
|
|
|
|
blocksFile = baseFolder / "init" / "blocks.rlp"
|
|
|
|
genesisFile = baseFolder / "init" / "genesis.json"
|
|
|
|
caseFolder = baseFolder / "testcases"
|
|
|
|
|
2022-04-20 07:57:50 +00:00
|
|
|
template testCond(expr: untyped) =
|
|
|
|
if not (expr):
|
|
|
|
result = TestStatus.Failed
|
2022-12-02 04:39:12 +00:00
|
|
|
|
2022-04-20 07:57:50 +00:00
|
|
|
proc processNode(ctx: GraphqlRef, node: JsonNode, fileName: string): TestStatus =
|
2021-05-12 12:28:04 +00:00
|
|
|
let request = node["request"]
|
|
|
|
let responses = node["responses"]
|
|
|
|
let statusCode = node["statusCode"].getInt()
|
|
|
|
|
|
|
|
let savePoint = ctx.getNameCounter()
|
|
|
|
let res = ctx.parseQuery(request.getStr())
|
|
|
|
|
2022-04-20 07:57:50 +00:00
|
|
|
result = TestStatus.OK
|
2021-05-12 12:28:04 +00:00
|
|
|
block:
|
|
|
|
if res.isErr:
|
|
|
|
if statusCode == 200:
|
|
|
|
debugEcho res.error
|
2022-04-20 07:57:50 +00:00
|
|
|
testCond statusCode != 200
|
2021-05-12 12:28:04 +00:00
|
|
|
break
|
|
|
|
|
|
|
|
let resp = JsonRespStream.new()
|
|
|
|
let r = ctx.executeRequest(respStream(resp))
|
|
|
|
if r.isErr:
|
|
|
|
if statusCode == 200:
|
|
|
|
debugEcho r.error
|
2022-04-20 07:57:50 +00:00
|
|
|
testCond statusCode != 200
|
2021-05-12 12:28:04 +00:00
|
|
|
break
|
|
|
|
|
2022-04-20 07:57:50 +00:00
|
|
|
testCond statusCode == 200
|
|
|
|
testCond r.isOk
|
2021-05-12 12:28:04 +00:00
|
|
|
|
|
|
|
let nimbus = resp.getString()
|
|
|
|
var resultOK = false
|
|
|
|
for x in responses:
|
|
|
|
let hive = $(x["data"])
|
|
|
|
if nimbus == hive:
|
|
|
|
resultOK = true
|
|
|
|
break
|
|
|
|
|
2022-04-20 07:57:50 +00:00
|
|
|
testCond resultOK
|
2021-05-12 12:28:04 +00:00
|
|
|
if not resultOK:
|
|
|
|
debugEcho "NIMBUS RESULT: ", nimbus
|
|
|
|
for x in responses:
|
|
|
|
let hive = $(x["data"])
|
|
|
|
debugEcho "HIVE RESULT: ", hive
|
|
|
|
|
|
|
|
ctx.purgeQueries()
|
|
|
|
ctx.purgeNames(savePoint)
|
|
|
|
|
|
|
|
proc main() =
|
|
|
|
let
|
2022-12-02 04:39:12 +00:00
|
|
|
conf = makeConfig(@["--custom-network:" & genesisFile])
|
|
|
|
ethCtx = newEthContext()
|
2021-09-07 15:00:21 +00:00
|
|
|
ethNode = setupEthNode(conf, ethCtx, eth)
|
2024-05-20 10:17:51 +00:00
|
|
|
com = CommonRef.new(newCoreDbRef DefaultDbMemory,
|
2021-09-16 15:59:46 +00:00
|
|
|
conf.networkId,
|
|
|
|
conf.networkParams
|
2021-05-12 12:28:04 +00:00
|
|
|
)
|
|
|
|
|
2022-12-02 04:39:12 +00:00
|
|
|
com.initializeEmptyDb()
|
2024-05-25 14:12:14 +00:00
|
|
|
let txPool = TxPoolRef.new(com, ZERO_ADDRESS)
|
2022-12-02 04:39:12 +00:00
|
|
|
discard importRlpBlock(blocksFile, com)
|
|
|
|
let ctx = setupGraphqlContext(com, ethNode, txPool)
|
2021-05-12 12:28:04 +00:00
|
|
|
|
2022-04-20 07:57:50 +00:00
|
|
|
var stat: SimStat
|
|
|
|
let start = getTime()
|
2023-07-28 10:32:49 +00:00
|
|
|
|
2023-08-04 03:59:12 +00:00
|
|
|
# txPool must be informed of active head
|
|
|
|
# so it can know the latest account state
|
|
|
|
# e.g. "sendRawTransaction Nonce too low" case
|
|
|
|
let head = com.db.getCanonicalHead()
|
|
|
|
doAssert txPool.smartHead(head)
|
2023-07-28 10:32:49 +00:00
|
|
|
|
|
|
|
for fileName in walkDirRec(
|
2022-04-20 07:57:50 +00:00
|
|
|
caseFolder, yieldFilter = {pcFile,pcLinkToFile}):
|
|
|
|
if not fileName.endsWith(".json"):
|
|
|
|
continue
|
|
|
|
|
2024-03-20 07:35:38 +00:00
|
|
|
let (_, name) = fileName.splitPath()
|
2021-05-17 11:35:16 +00:00
|
|
|
let node = parseFile(fileName)
|
2022-04-20 07:57:50 +00:00
|
|
|
let status = ctx.processNode(node, fileName)
|
|
|
|
stat.inc(name, status)
|
|
|
|
|
2023-07-28 10:32:49 +00:00
|
|
|
# simulate the real simulator
|
|
|
|
txPool.disposeAll()
|
|
|
|
|
2022-04-20 07:57:50 +00:00
|
|
|
let elpd = getTime() - start
|
|
|
|
print(stat, elpd, "graphql")
|
2021-05-12 12:28:04 +00:00
|
|
|
|
|
|
|
main()
|