2021-05-17 11:35:16 +00:00
|
|
|
# Nimbus
|
|
|
|
# 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.
|
|
|
|
|
2021-05-12 12:28:04 +00:00
|
|
|
import
|
2021-05-17 11:35:16 +00:00
|
|
|
std/[os, parseopt, json],
|
2021-05-12 12:28:04 +00:00
|
|
|
eth/[p2p, trie/db], ../../../nimbus/db/db_chain,
|
2021-07-21 20:01:12 +00:00
|
|
|
../../../nimbus/sync/protocol_eth65,
|
2021-05-12 12:28:04 +00:00
|
|
|
../../../nimbus/[genesis, config, conf_utils],
|
|
|
|
../../../nimbus/graphql/ethapi, ../../../tests/test_helpers,
|
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"
|
|
|
|
|
|
|
|
proc processNode(ctx: GraphqlRef, node: JsonNode, fileName: string, testStatusIMPL: var TestStatus) =
|
|
|
|
let request = node["request"]
|
|
|
|
let responses = node["responses"]
|
|
|
|
let statusCode = node["statusCode"].getInt()
|
|
|
|
|
|
|
|
let savePoint = ctx.getNameCounter()
|
|
|
|
let res = ctx.parseQuery(request.getStr())
|
|
|
|
|
|
|
|
block:
|
|
|
|
if res.isErr:
|
|
|
|
if statusCode == 200:
|
|
|
|
debugEcho res.error
|
|
|
|
check statusCode != 200
|
|
|
|
break
|
|
|
|
|
|
|
|
let resp = JsonRespStream.new()
|
|
|
|
let r = ctx.executeRequest(respStream(resp))
|
|
|
|
if r.isErr:
|
|
|
|
if statusCode == 200:
|
|
|
|
debugEcho r.error
|
|
|
|
check statusCode != 200
|
|
|
|
break
|
|
|
|
|
|
|
|
check statusCode == 200
|
|
|
|
check r.isOk
|
|
|
|
|
|
|
|
let nimbus = resp.getString()
|
|
|
|
var resultOK = false
|
|
|
|
for x in responses:
|
|
|
|
let hive = $(x["data"])
|
|
|
|
if nimbus == hive:
|
|
|
|
resultOK = true
|
|
|
|
break
|
|
|
|
|
|
|
|
check resultOK
|
|
|
|
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() =
|
|
|
|
var msg: string
|
|
|
|
var opt = initOptParser("--customnetwork:" & genesisFile)
|
|
|
|
let res = processArguments(msg, opt)
|
|
|
|
if res != Success:
|
|
|
|
echo msg
|
|
|
|
quit(QuitFailure)
|
|
|
|
|
|
|
|
let
|
|
|
|
conf = getConfiguration()
|
|
|
|
ethNode = setupEthNode(eth)
|
|
|
|
chainDB = newBaseChainDB(newMemoryDb(),
|
|
|
|
pruneTrie = false,
|
2021-05-20 06:01:57 +00:00
|
|
|
conf.net.networkId
|
2021-05-12 12:28:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
initializeEmptyDb(chainDB)
|
2021-05-20 06:01:57 +00:00
|
|
|
discard importRlpBlock(blocksFile, chainDB)
|
2021-05-12 12:28:04 +00:00
|
|
|
let ctx = setupGraphqlContext(chainDB, ethNode)
|
|
|
|
|
2021-05-17 11:35:16 +00:00
|
|
|
runTest("GraphQL", caseFolder):
|
|
|
|
let node = parseFile(fileName)
|
|
|
|
ctx.processNode(node, fileName, testStatusIMPL)
|
2021-05-12 12:28:04 +00:00
|
|
|
|
|
|
|
main()
|