|
@@ -1,28 +1,19 @@
|
|
|
import argparse
|
|
|
import unittest
|
|
|
-import threading
|
|
|
-import queue
|
|
|
import functools
|
|
|
|
|
|
-import sys
|
|
|
-if sys.version_info.minor >= 7:
|
|
|
- QueueImplementation = queue.SimpleQueue
|
|
|
-else:
|
|
|
- QueueImplementation = queue.Queue
|
|
|
-
|
|
|
from sccd.util.os_tools import *
|
|
|
from sccd.util.debug import *
|
|
|
-from sccd.cd.static.cd import *
|
|
|
-from sccd.controller.controller import *
|
|
|
from sccd.statechart.parser.xml import *
|
|
|
from sccd.test.parser.xml import *
|
|
|
from sccd.util import timer
|
|
|
|
|
|
# A TestCase loading and executing a statechart test file.
|
|
|
class Test(unittest.TestCase):
|
|
|
- def __init__(self, src: str):
|
|
|
+ def __init__(self, src: str, enable_rust: bool):
|
|
|
super().__init__()
|
|
|
self.src = src
|
|
|
+ self.enable_rust = enable_rust
|
|
|
|
|
|
def __str__(self):
|
|
|
return self.src
|
|
@@ -37,72 +28,14 @@ class Test(unittest.TestCase):
|
|
|
with timer.Context("parse test"):
|
|
|
test_variants = parse_f(self.src, {"test" :test_rules})
|
|
|
|
|
|
- for test in test_variants:
|
|
|
- print_debug('\n'+test.name)
|
|
|
- pipe = QueueImplementation()
|
|
|
-
|
|
|
- current_big_step = []
|
|
|
- def on_output(event: OutputEvent):
|
|
|
- nonlocal current_big_step
|
|
|
- if event.port == "trace":
|
|
|
- if event.name == "big_step_completed":
|
|
|
- if len(current_big_step) > 0:
|
|
|
- pipe.put(current_big_step)
|
|
|
- current_big_step = []
|
|
|
- else:
|
|
|
- current_big_step.append(event)
|
|
|
-
|
|
|
-
|
|
|
- controller = Controller(test.cd, on_output)
|
|
|
-
|
|
|
- for bag in test.input:
|
|
|
- controller.schedule(
|
|
|
- bag.timestamp.eval(None),
|
|
|
- bag.events,
|
|
|
- controller.all_instances()) # broadcast input events to all instances
|
|
|
-
|
|
|
- def controller_thread():
|
|
|
- try:
|
|
|
- # Run as-fast-as-possible, always advancing time to the next item in event queue, no sleeping.
|
|
|
- # The call returns when the event queue is empty and therefore the simulation is finished.
|
|
|
- controller.run_until(None)
|
|
|
- except Exception as e:
|
|
|
- print_debug(e)
|
|
|
- pipe.put(e, block=True, timeout=None)
|
|
|
- return
|
|
|
- # Signal end of output
|
|
|
- pipe.put(None, block=True, timeout=None)
|
|
|
-
|
|
|
- # start the controller
|
|
|
- thread = threading.Thread(target=controller_thread)
|
|
|
- thread.daemon = True # make controller thread exit when main thread exits
|
|
|
- thread.start()
|
|
|
-
|
|
|
- # check output
|
|
|
- expected = test.output
|
|
|
- actual = []
|
|
|
-
|
|
|
- def fail(msg):
|
|
|
- thread.join()
|
|
|
- def pretty(output):
|
|
|
- return '\n'.join("%d: %s" % (i, str(big_step)) for i, big_step in enumerate(output))
|
|
|
- self.fail('\n'+test.name + '\n'+msg + "\n\nActual:\n" + pretty(actual) + "\n\nExpected:\n" + pretty(expected))
|
|
|
-
|
|
|
- while True:
|
|
|
- data = pipe.get(block=True, timeout=None)
|
|
|
-
|
|
|
- if isinstance(data, Exception):
|
|
|
- raise data # Exception was caught in Controller thread, throw it here instead.
|
|
|
-
|
|
|
- elif data is None:
|
|
|
- # End of output
|
|
|
- break
|
|
|
-
|
|
|
- else:
|
|
|
- actual.append(data)
|
|
|
-
|
|
|
- if actual != expected:
|
|
|
- fail("Output differs from expected.")
|
|
|
+
|
|
|
+ if self.enable_rust:
|
|
|
+ from sccd.test.dynamic.test_rust import run_variants
|
|
|
+ run_variants(test_variants, self)
|
|
|
+ else:
|
|
|
+ from sccd.test.dynamic.test_interpreter import run_variant
|
|
|
+ for v in test_variants:
|
|
|
+ run_variant(v, self)
|
|
|
|
|
|
except Exception as e:
|
|
|
print_debug(e)
|
|
@@ -120,6 +53,7 @@ if __name__ == '__main__':
|
|
|
epilog="Set environment variable SCCDDEBUG=1 to display debug information about the inner workings of the runtime.")
|
|
|
argparser.add_argument('path', metavar='PATH', type=str, nargs='*', help="Tests to run. Can be a XML file or a directory. If a directory, it will be recursively scanned for XML files.")
|
|
|
argparser.add_argument('--build-dir', metavar='BUILD_DIR', type=str, default='build', help="Directory for built tests. Defaults to 'build'")
|
|
|
+ argparser.add_argument('--rust', action='store_true', help="Instead of testing the interpreter, generate Rust code from test and run it.")
|
|
|
args = argparser.parse_args()
|
|
|
|
|
|
src_files = get_files(args.path,
|
|
@@ -137,8 +71,8 @@ if __name__ == '__main__':
|
|
|
should_fail = os.path.basename(src_file).startswith("fail_")
|
|
|
|
|
|
if should_fail:
|
|
|
- suite.addTest(FailingTest(src_file))
|
|
|
+ suite.addTest(FailingTest(src_file, args.rust))
|
|
|
else:
|
|
|
- suite.addTest(Test(src_file))
|
|
|
+ suite.addTest(Test(src_file, args.rust))
|
|
|
|
|
|
unittest.TextTestRunner(verbosity=2).run(suite)
|