2021-07-07 09:04:18 +00:00
|
|
|
# Nimbus
|
2024-06-17 07:56:39 +00:00
|
|
|
# Copyright (c) 2018-2024 Status Research & Development GmbH
|
2021-07-07 09:04:18 +00:00
|
|
|
# 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.
|
|
|
|
|
2023-10-19 03:52:24 +00:00
|
|
|
import
|
2024-06-21 07:44:10 +00:00
|
|
|
std/[times, macros, strutils, os, osproc],
|
2023-10-19 03:52:24 +00:00
|
|
|
unittest2,
|
2024-06-17 07:56:39 +00:00
|
|
|
../nimbus/compile_info,
|
2023-10-19 03:52:24 +00:00
|
|
|
../nimbus/utils/utils
|
2021-07-07 09:04:18 +00:00
|
|
|
|
2024-06-21 07:44:10 +00:00
|
|
|
export strutils, os, unittest2, osproc
|
2021-07-07 09:04:18 +00:00
|
|
|
|
|
|
|
proc executeMyself(numModules: int, names: openArray[string]): int =
|
|
|
|
let appName = getAppFilename()
|
2022-07-28 19:34:38 +00:00
|
|
|
var elpdList = newSeq[Duration](numModules)
|
2021-07-07 09:04:18 +00:00
|
|
|
for i in 0..<numModules:
|
2022-07-28 19:34:38 +00:00
|
|
|
let start = getTime()
|
2021-07-07 09:04:18 +00:00
|
|
|
let execResult = execCmd(appName & " " & $i)
|
2022-07-28 19:34:38 +00:00
|
|
|
let elpd = getTime() - start
|
|
|
|
elpdList[i] = elpd
|
2021-07-07 09:04:18 +00:00
|
|
|
if execResult != 0:
|
|
|
|
stderr.writeLine("subtest no: " & $i & " failed: " & names[i])
|
|
|
|
result = result or execResult
|
|
|
|
|
2022-07-28 19:34:38 +00:00
|
|
|
var f = open("all_test.md", fmWrite)
|
|
|
|
for i in 0..<numModules:
|
|
|
|
f.write("* " & names[i])
|
2023-10-19 03:52:24 +00:00
|
|
|
f.write(" - " & elpdList[i].short)
|
2022-07-28 19:34:38 +00:00
|
|
|
f.write("\n")
|
|
|
|
f.close()
|
|
|
|
|
2021-07-07 09:04:18 +00:00
|
|
|
proc getImportStmt(stmtList: NimNode): NimNode =
|
|
|
|
result = stmtList[0]
|
|
|
|
result.expectKind nnkImportStmt
|
|
|
|
|
|
|
|
proc ofStmt(idx: int, singleModule: NimNode): NimNode =
|
|
|
|
# remove the "test_" prefix
|
|
|
|
let moduleName = normalize(singleModule.toStrLit.strVal).substr(4)
|
|
|
|
let moduleMain = newIdentNode(moduleName & "Main")
|
|
|
|
|
|
|
|
# construct `of` branch
|
|
|
|
# of idx: moduleMain()
|
|
|
|
result = nnkOfBranch.newTree(
|
|
|
|
newLit(idx),
|
|
|
|
newCall(moduleMain)
|
|
|
|
)
|
|
|
|
|
|
|
|
proc toModuleNames(importStmt: NimNode): NimNode =
|
|
|
|
result = nnkBracket.newTree
|
|
|
|
for singleModule in importStmt:
|
|
|
|
let x = normalize(singleModule.toStrLit.strVal)
|
|
|
|
result.add newLit(x)
|
|
|
|
|
|
|
|
macro cliBuilder*(stmtList: typed): untyped =
|
|
|
|
let importStmt = stmtList.getImportStmt
|
|
|
|
let moduleCount = importStmt.len
|
|
|
|
let moduleNames = importStmt.toModuleNames
|
|
|
|
|
|
|
|
# case paramStr(1).parseInt
|
|
|
|
var caseStmt = nnkCaseStmt.newTree(
|
|
|
|
quote do: paramStr(1).parseInt
|
|
|
|
)
|
|
|
|
|
|
|
|
# of 0: codeStreamMain()
|
|
|
|
# of 1: gasMeterMain()
|
|
|
|
# of 2: memoryMain()
|
|
|
|
# ...
|
|
|
|
for idx, singleModule in importStmt:
|
|
|
|
caseStmt.add ofStmt(idx, singleModule)
|
|
|
|
|
|
|
|
# else:
|
|
|
|
# echo "invalid argument"
|
|
|
|
caseStmt.add nnkElse.newTree(
|
|
|
|
quote do: echo "invalid argument"
|
|
|
|
)
|
|
|
|
|
|
|
|
result = quote do:
|
|
|
|
if paramCount() == 0:
|
|
|
|
const names = `moduleNames`
|
|
|
|
quit(executeMyself(`moduleCount`, names))
|
|
|
|
else:
|
|
|
|
`caseStmt`
|
|
|
|
|
|
|
|
# if you want to add new test module(s)
|
2023-12-04 02:55:31 +00:00
|
|
|
# make sure you define an entry point
|
2021-07-07 09:04:18 +00:00
|
|
|
# e.g.
|
|
|
|
# proc mytestMain*() =
|
|
|
|
# # put anything you want here
|
|
|
|
# and then give it a name `test_mytest.nim`
|
|
|
|
# the `mytest` part should match between
|
|
|
|
# the proc name and the module name
|
|
|
|
|
|
|
|
# if this executable called without any params
|
|
|
|
# it will execute each of the test by executing itself
|
|
|
|
# repeatedly until all sub-tests are executed.
|
|
|
|
# you can execute the sub-test by a number start from zero.
|