Added basic tests for stack and arithmetic IMPs.
[vvhitespace] / vv_test.py
... / ...
CommitLineData
1#!/usr/local/bin/python3.6
2
3# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
4# All rights reserved.
5
6# Quick and dirty tests for the VVhitespace interpreter.
7
8import os, subprocess
9
10compiler_path = './vvc'
11interpreter_path = './vvi'
12temp_file = './test.vvs'
13path_to_tests = './tests/'
14src_extension = '.pvvs'
15
16tests = [
17 ['0001_push_printchar_exit', 'A'],
18 ['1001_stack_push', 'A'],
19 ['1002_stack_dup', 'AA'],
20 ['1003_stack_swap', 'AB'],
21 ['1004_stack_drop', 'A'],
22 ['2001_arithmetic_addition', 'B'],
23 ['2002_arithmetic_subtraction', 'A'],
24 ['2003_arithmetic_multiplication', 'B'],
25 ['2004_arithmetic_division', 'A'],
26 ['2005_arithmetic_remainder', 'A'],
27 ]
28
29for test in tests:
30 # TODO: Catch stderr
31 subprocess.run([compiler_path, '-i', path_to_tests + test[0] + src_extension, '-o', temp_file])
32 result = subprocess.run([interpreter_path, '-i', temp_file], stdout=subprocess.PIPE)
33 if result.stdout.decode('utf-8') != test[1]:
34 print('\n' + test[0])
35 else:
36 print('.', end='', flush=True)
37 os.remove(temp_file)
38
39print("")