Added get_user_string to stdlib.
[vvhitespace] / stdlib_tests / vv_test.py
... / ...
CommitLineData
1#!/usr/local/bin/python3.6
2
3# (c) 2019 Aaron Taylor <ataylor at subgeniuskitty dot com>
4# See LICENSE.txt file for copyright and license details.
5
6# Quick and dirty tests for the VVhitespace stdlib.
7# Invoke directly or see README.md in this folder for more details.
8
9# Configuration Options
10# All paths are relative to the PWD environment variable of the invoked script.
11preprocessor = 'cpp'
12include_path = '-I../stdlib'
13cpp_temp_file = 'test.pvvs'
14compiler_path = '../vvc'
15interpreter_path = '../vvi'
16temp_file = './test.vvs'
17path_to_tests = './'
18src_extension = '.pvvs'
19
20# List of tests to perform.
21# Tests should be ordered such that later tests rely exclusively on previously tested commands.
22# Format: ['filename_without_extension', 'string for stdin', 'string for expected stdout']
23tests = [
24 ['0001_dumpstack', '', 'TOS:\n2:\t+42\n1:\t+255\n'],
25 ['0002_stdlib_version', '', 'TOS:\n1:\t+1\n'],
26 ['0003_dumpheap', '', '32:\t+255\n33:\t+42\n'],
27 ['1001_stackrotate', '', 'TOS:\n14:\t+1\n13:\t+244\n12:\t+1\n11:\t+1\n10:\t+1\n9:\t+1\n8:\t+1\n7:\t+243\n6:\t+1\n5:\t+1\n4:\t+1\n3:\t+1\n2:\t+1\n1:\t+242\n'],
28 ['1002_stackrotatereverse', '', 'TOS:\n14:\t+1\n13:\t+244\n12:\t+1\n11:\t+1\n10:\t+1\n9:\t+1\n8:\t+1\n7:\t+1\n6:\t+1\n5:\t+1\n4:\t+1\n3:\t+1\n2:\t+1\n1:\t+1\n'],
29 ['1003_deepdup', '', 'TOS:\n15:\t+1\n14:\t+244\n13:\t+1\n12:\t+1\n11:\t+1\n10:\t+1\n9:\t+1\n8:\t+1\n7:\t+1\n6:\t+1\n5:\t+1\n4:\t+1\n3:\t+1\n2:\t+1\n1:\t+244\n'],
30 ['2001_spew', '', '32:\t+242\n33:\t+243\n34:\t+244\n'],
31 ['2002_slurp', '', 'TOS:\n3:\t+242\n2:\t+243\n1:\t+244\n'],
32 ['2003_memset', '', '32:\t+42\n33:\t+42\n'],
33 ['2004_memcpy', '', '34:\t+42\n35:\t+42\n'],
34 ['2005_memcmp', '', '+1'],
35 ['2006_memsrch', '', '+32'],
36 ['2007_memrand', '', ''],
37 ['3001_not', '', '-1+0-6148914691236517206+6148914691236517205'],
38 ['3002_lshift', '', '+1+2+4611686018427387904-9223372036854775808-9223372036854775808+0'],
39 ['3003_rshift', '', '+1+1+1-4611686018427387903-576460752303423478-1-1'],
40 ['3004_and', '', '+0+0+1+1+42'],
41 ['3005_or', '', '+0+1+1-1-1'],
42 ['3006_xor', '', '+0+1+0-2-1'],
43 ['4001_strlen', '', '+11'],
44 ['4002_isdigit', '', '+0+1+1+0'],
45 ['4003_get_user_string', 'aas\nasdf', '+0a+1as\n+2asd+3'],
46 ['5001_abs', '', '+1+1+0+0'],
47 ['5002_random', '', ''],
48 ['5003_gcd', '', '+0+4+4+3+3+3'],
49 ['6001_printstackstring', '', 'test'],
50 ['6002_printheapstring', '', 'test'],
51 ['6003_printnumbersign', '', '+-'],
52 ['6004_printnumbermagnitude', '', '323209223372036854775808'],
53 ['6005_printstacknumber', '', '+32-32+0-9223372036854775808'],
54 ['6006_printf_staticstackstring', '', 'test'],
55 ['6007_printf_staticheapstring', '', 'test'],
56 ['6008_printf_escapedstackstring', '', '\\%\t\n'],
57 ['6009_printf_substitutedstackstring', '', 'Atest142+42'],
58 ['7001_atoi', '', '+42+42-42+0+0+0'],
59 ]
60
61# ------------------------------------------------------------------------------
62
63import os, subprocess
64
65for test in tests:
66 subprocess.run([preprocessor, include_path, "-o", cpp_temp_file, path_to_tests + test[0] + src_extension])
67 subprocess.run([compiler_path, '-i', cpp_temp_file, '-o', temp_file])
68 result = subprocess.run([interpreter_path, '-i', temp_file], stdout=subprocess.PIPE, input=test[1].encode('utf-8'))
69 if result.stdout.decode('utf-8') != test[2]:
70 print('\n' + test[0])
71 print('\tExpected: ' + test[2])
72 print('\tReceived: ' + result.stdout.decode('utf-8'))
73 else:
74 print('.', end='', flush=True)
75 os.remove(cpp_temp_file)
76 os.remove(temp_file)
77
78print("")