2024-02-12 03:26:05 +00:00
|
|
|
# confutils
|
|
|
|
# Copyright (c) 2018-2024 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.
|
|
|
|
|
2022-01-04 16:21:15 +00:00
|
|
|
import os, strutils
|
2018-11-21 13:25:53 +00:00
|
|
|
mode = ScriptMode.Verbose
|
|
|
|
|
|
|
|
packageName = "confutils"
|
|
|
|
version = "0.1.0"
|
|
|
|
author = "Status Research & Development GmbH"
|
|
|
|
description = "Simplified handling of command line options and config files"
|
|
|
|
license = "Apache License 2.0"
|
|
|
|
skipDirs = @["tests"]
|
|
|
|
|
2023-05-31 15:37:01 +00:00
|
|
|
requires "nim >= 1.6.0",
|
2022-11-23 18:30:59 +00:00
|
|
|
"stew",
|
|
|
|
"serialization"
|
2018-11-21 13:25:53 +00:00
|
|
|
|
2022-11-23 16:30:29 +00:00
|
|
|
let nimc = getEnv("NIMC", "nim") # Which nim compiler to use
|
|
|
|
let lang = getEnv("NIMLANG", "c") # Which backend (c/cpp/js)
|
|
|
|
let flags = getEnv("NIMFLAGS", "") # Extra flags for the compiler
|
|
|
|
let verbose = getEnv("V", "") notin ["", "0"]
|
|
|
|
|
|
|
|
let cfg =
|
2023-05-31 15:37:01 +00:00
|
|
|
" --styleCheck:usages --styleCheck:error" &
|
2022-11-23 16:30:29 +00:00
|
|
|
(if verbose: "" else: " --verbosity:0 --hints:off") &
|
|
|
|
" --skipParentCfg --skipUserCfg --outdir:build --nimcache:build/nimcache -f"
|
|
|
|
|
|
|
|
proc build(args, path: string) =
|
|
|
|
exec nimc & " " & lang & " " & cfg & " " & flags & " " & args & " " & path
|
|
|
|
|
2022-01-04 16:21:15 +00:00
|
|
|
proc run(args, path: string) =
|
2024-07-01 16:06:47 +00:00
|
|
|
build args & " --mm:refc -r", path
|
2023-04-13 23:35:19 +00:00
|
|
|
if (NimMajor, NimMinor) > (1, 6):
|
2024-07-01 16:06:47 +00:00
|
|
|
build args & " --mm:orc -r", path
|
2022-01-04 16:21:15 +00:00
|
|
|
|
2020-10-20 08:35:47 +00:00
|
|
|
task test, "Run all tests":
|
2022-11-23 16:30:29 +00:00
|
|
|
for threads in ["--threads:off", "--threads:on"]:
|
|
|
|
run threads, "tests/test_all"
|
|
|
|
build threads, "tests/test_duplicates"
|
2021-09-02 08:12:38 +00:00
|
|
|
|
|
|
|
#Also iterate over every test in tests/fail, and verify they fail to compile.
|
|
|
|
echo "\r\nTest Fail to Compile:"
|
|
|
|
for path in listFiles(thisDir() / "tests" / "fail"):
|
2024-07-01 16:06:47 +00:00
|
|
|
if not path.endsWith(".nim"):
|
2021-09-02 08:12:38 +00:00
|
|
|
continue
|
2022-11-23 16:30:29 +00:00
|
|
|
if gorgeEx(nimc & " " & lang & " " & flags & " " & path).exitCode != 0:
|
2021-09-02 08:12:38 +00:00
|
|
|
echo " [OK] ", path.split(DirSep)[^1]
|
|
|
|
else:
|
|
|
|
echo " [FAILED] ", path.split(DirSep)[^1]
|
2022-01-04 16:21:15 +00:00
|
|
|
quit(QuitFailure)
|
2024-10-30 10:49:34 +00:00
|
|
|
|
|
|
|
echo "\r\nNimscript test:"
|
|
|
|
let
|
|
|
|
actualOutput = gorgeEx(
|
|
|
|
nimc & " --verbosity:0 e " & flags & " " & "./tests/cli_example.nim " &
|
|
|
|
"--foo=1 --bar=2 --withBaz 42").output
|
|
|
|
expectedOutput = unindent"""
|
|
|
|
foo = 1
|
|
|
|
bar = 2
|
|
|
|
baz = true
|
|
|
|
arg ./tests/cli_example.nim
|
|
|
|
arg 42"""
|
|
|
|
if actualOutput.strip() == expectedOutput:
|
|
|
|
echo " [OK] tests/cli_example.nim"
|
|
|
|
else:
|
|
|
|
echo " [FAILED] tests/cli_example.nim"
|
|
|
|
echo actualOutput
|
|
|
|
quit(QuitFailure)
|