Skip to content

Commit

Permalink
feature: add support for wizard engine
Browse files Browse the repository at this point in the history
  • Loading branch information
pco2699 authored and loganek committed Aug 21, 2023
1 parent 7dad5f1 commit ad174d5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions adapters/wizard.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import argparse
import subprocess
import sys
import os
import shlex

# shlex.split() splits according to shell quoting rules
WIZARD = shlex.split(os.getenv("TEST_RUNTIME_EXE", "wizeng.x86-64-linux"))

parser = argparse.ArgumentParser()
parser.add_argument("--version", action="store_true")
parser.add_argument("--test-file", action="store")
parser.add_argument("--arg", action="append", default=[])
parser.add_argument("--env", action="append", default=[])
parser.add_argument("--dir", action="append", default=[])

args = parser.parse_args()

if args.version:
# ensure no args when version is queried
subprocess.run(WIZARD[0:1] + ["-version"])
sys.exit(0)

TEST_FILE = args.test_file
PROG_ARGS = args.arg
ENV_ARGS = None if len(args.env) == 0 else f'--env={",".join(args.env)}'
DIR_ARGS = None if len(args.dir) == 0 else f'--dir={",".join(args.dir)}'

r = subprocess.run([arg for arg in WIZARD + [ENV_ARGS, DIR_ARGS, TEST_FILE] + PROG_ARGS if arg])
sys.exit(r.returncode)

0 comments on commit ad174d5

Please sign in to comment.