Basic: QBasic fixes/enabling. Recursive includes.
[jackhill/mal.git] / runtest.py
CommitLineData
31690700
JM
1#!/usr/bin/env python
2
97e27599 3from __future__ import print_function
31690700 4import os, sys, re
7907cd90 5import argparse, time
b3c30da9 6import signal, atexit
31690700 7
7907cd90
JM
8from subprocess import Popen, STDOUT, PIPE
9from select import select
31690700 10
b3c30da9
JM
11# Pseudo-TTY and terminal manipulation
12import pty, array, fcntl, termios
13
8e4628da 14IS_PY_3 = sys.version_info[0] == 3
15
97e27599
JM
16debug_file = None
17log_file = None
18
19def debug(data):
20 if debug_file:
21 debug_file.write(data)
22 debug_file.flush()
23
24def log(data, end='\n'):
25 if log_file:
26 log_file.write(data + end)
27 log_file.flush()
28 print(data, end=end)
29 sys.stdout.flush()
30
31690700 31# TODO: do we need to support '\n' too
16d5b0c3
JM
32import platform
33if platform.system().find("CYGWIN_NT") >= 0:
34 # TODO: this is weird, is this really right on Cygwin?
35 sep = "\n\r\n"
36else:
37 sep = "\r\n"
31690700
JM
38rundir = None
39
40parser = argparse.ArgumentParser(
41 description="Run a test file against a Mal implementation")
42parser.add_argument('--rundir',
43 help="change to the directory before running tests")
44parser.add_argument('--start-timeout', default=10, type=int,
45 help="default timeout for initial prompt")
46parser.add_argument('--test-timeout', default=20, type=int,
47 help="default timeout for each individual test action")
cc021efe
JM
48parser.add_argument('--pre-eval', default=None, type=str,
49 help="Mal code to evaluate prior to running the test")
ab01be18
JM
50parser.add_argument('--no-pty', action='store_true',
51 help="Use direct pipes instead of pseudo-tty")
5abaa3dc 52parser.add_argument('--log-file', type=str,
97e27599
JM
53 help="Write messages to the named file in addition the screen")
54parser.add_argument('--debug-file', type=str,
5abaa3dc 55 help="Write all test interaction the named file")
f3ea3be3
JM
56parser.add_argument('--hard', action='store_true',
57 help="Turn soft tests following a ';>>> soft=True' into hard failures")
31690700 58
a1eb30fc
JM
59# Control whether deferrable and optional tests are executed
60parser.add_argument('--deferrable', dest='deferrable', action='store_true',
61 help="Enable deferrable tests that follow a ';>>> deferrable=True'")
62parser.add_argument('--no-deferrable', dest='deferrable', action='store_false',
63 help="Disable deferrable tests that follow a ';>>> deferrable=True'")
64parser.set_defaults(deferrable=True)
46e25689
JM
65parser.add_argument('--optional', dest='optional', action='store_true',
66 help="Enable optional tests that follow a ';>>> optional=True'")
67parser.add_argument('--no-optional', dest='optional', action='store_false',
68 help="Disable optional tests that follow a ';>>> optional=True'")
69parser.set_defaults(optional=True)
70
31690700
JM
71parser.add_argument('test_file', type=argparse.FileType('r'),
72 help="a test file formatted as with mal test data")
73parser.add_argument('mal_cmd', nargs="*",
74 help="Mal implementation command line. Use '--' to "
75 "specify a Mal command line with dashed options.")
76
7907cd90 77class Runner():
97e27599 78 def __init__(self, args, no_pty=False):
612bfe4a 79 #print "args: %s" % repr(args)
ab01be18 80 self.no_pty = no_pty
612bfe4a
JM
81
82 # Cleanup child process on exit
83 atexit.register(self.cleanup)
84
8caf6211
JM
85 self.p = None
86 env = os.environ
87 env['TERM'] = 'dumb'
92dcc815 88 env['INPUTRC'] = '/dev/null'
82acd3de 89 env['PERL_RL'] = 'false'
ab01be18 90 if no_pty:
612bfe4a
JM
91 self.p = Popen(args, bufsize=0,
92 stdin=PIPE, stdout=PIPE, stderr=STDOUT,
8caf6211
JM
93 preexec_fn=os.setsid,
94 env=env)
7907cd90
JM
95 self.stdin = self.p.stdin
96 self.stdout = self.p.stdout
97 else:
98 # provide tty to get 'interactive' readline to work
99 master, slave = pty.openpty()
b3c30da9
JM
100
101 # Set terminal size large so that readline will not send
102 # ANSI/VT escape codes when the lines are long.
103 buf = array.array('h', [100, 200, 0, 0])
104 fcntl.ioctl(master, termios.TIOCSWINSZ, buf, True)
105
612bfe4a
JM
106 self.p = Popen(args, bufsize=0,
107 stdin=slave, stdout=slave, stderr=STDOUT,
8caf6211
JM
108 preexec_fn=os.setsid,
109 env=env)
b020aa3e
JM
110 # Now close slave so that we will get an exception from
111 # read when the child exits early
112 # http://stackoverflow.com/questions/11165521
113 os.close(slave)
7907cd90
JM
114 self.stdin = os.fdopen(master, 'r+b', 0)
115 self.stdout = self.stdin
116
117 #print "started"
118 self.buf = ""
119 self.last_prompt = ""
120
121 def read_to_prompt(self, prompts, timeout):
122 end_time = time.time() + timeout
123 while time.time() < end_time:
96deb6a9
JM
124 [outs,_,_] = select([self.stdout], [], [], 1)
125 if self.stdout in outs:
126 new_data = self.stdout.read(1)
8e4628da 127 new_data = new_data.decode("utf-8") if IS_PY_3 else new_data
97e27599
JM
128 #print("new_data: '%s'" % new_data)
129 debug(new_data)
ab01be18 130 if self.no_pty:
9a383535
JM
131 self.buf += new_data.replace("\n", "\r\n")
132 else:
133 self.buf += new_data
0e508fa5 134 self.buf = self.buf.replace("\r\r", "\r")
7907cd90
JM
135 for prompt in prompts:
136 regexp = re.compile(prompt)
137 match = regexp.search(self.buf)
138 if match:
139 end = match.end()
140 buf = self.buf[0:end-len(prompt)]
141 self.buf = self.buf[end:]
142 self.last_prompt = prompt
143 return buf
144 return None
145
96deb6a9 146 def writeline(self, str):
8e4628da 147 def _to_bytes(s):
148 return bytes(s, "utf-8") if IS_PY_3 else s
149
150 self.stdin.write(_to_bytes(str + "\n"))
7907cd90 151
f6c83b2b 152 def cleanup(self):
612bfe4a 153 #print "cleaning up"
f6c83b2b 154 if self.p:
10034e82
JM
155 try:
156 os.killpg(self.p.pid, signal.SIGTERM)
157 except OSError:
158 pass
f6c83b2b
JM
159 self.p = None
160
98af2ae3 161class TestReader:
46e25689 162 def __init__(self, test_file):
98af2ae3
JM
163 self.line_num = 0
164 self.data = test_file.read().split('\n')
165 self.soft = False
a1eb30fc 166 self.deferrable = False
46e25689 167 self.optional = False
98af2ae3
JM
168
169 def next(self):
46e25689 170 self.msg = None
98af2ae3
JM
171 self.form = None
172 self.out = ""
173 self.ret = None
174
175 while self.data:
176 self.line_num += 1
177 line = self.data.pop(0)
178 if re.match(r"^\s*$", line): # blank line
179 continue
180 elif line[0:3] == ";;;": # ignore comment
181 continue
182 elif line[0:2] == ";;": # output comment
46e25689
JM
183 self.msg = line[3:]
184 return True
98af2ae3
JM
185 elif line[0:5] == ";>>> ": # settings/commands
186 settings = {}
187 exec(line[5:], {}, settings)
46e25689
JM
188 if 'soft' in settings:
189 self.soft = settings['soft']
a1eb30fc
JM
190 if 'deferrable' in settings and settings['deferrable']:
191 self.deferrable = "\nSkipping deferrable and optional tests"
46e25689
JM
192 return True
193 if 'optional' in settings and settings['optional']:
194 self.optional = "\nSkipping optional tests"
195 return True
98af2ae3
JM
196 continue
197 elif line[0:1] == ";": # unexpected comment
97e27599 198 log("Test data error at line %d:\n%s" % (self.line_num, line))
98af2ae3
JM
199 return None
200 self.form = line # the line is a form to send
201
202 # Now find the output and return value
203 while self.data:
204 line = self.data[0]
205 if line[0:3] == ";=>":
8d78bc26 206 self.ret = line[3:]
98af2ae3
JM
207 self.line_num += 1
208 self.data.pop(0)
209 break
210 elif line[0:2] == "; ":
211 self.out = self.out + line[2:] + sep
212 self.line_num += 1
213 self.data.pop(0)
214 else:
215 self.ret = "*"
216 break
217 if self.ret: break
218
219 return self.form
220
31690700 221args = parser.parse_args(sys.argv[1:])
406761e7
JM
222# Workaround argparse issue with two '--' on command line
223if sys.argv.count('--') > 0:
224 args.mal_cmd = sys.argv[sys.argv.index('--')+1:]
31690700
JM
225
226if args.rundir: os.chdir(args.rundir)
227
97e27599
JM
228if args.log_file: log_file = open(args.log_file, "a")
229if args.debug_file: debug_file = open(args.debug_file, "a")
230
231r = Runner(args.mal_cmd, no_pty=args.no_pty)
98af2ae3 232t = TestReader(args.test_file)
53beaa0a 233
31690700 234
98af2ae3 235def assert_prompt(runner, prompts, timeout):
cc021efe 236 # Wait for the initial prompt
98af2ae3 237 header = runner.read_to_prompt(prompts, timeout=timeout)
7907cd90
JM
238 if not header == None:
239 if header:
97e27599 240 log("Started with:\n%s" % header)
7907cd90 241 else:
97e27599
JM
242 log("Did not one of following prompt(s): %s" % repr(prompts))
243 log(" Got : %s" % repr(r.buf))
cc021efe
JM
244 sys.exit(1)
245
31690700
JM
246
247# Wait for the initial prompt
16d5b0c3
JM
248try:
249 assert_prompt(r, ['user> ', 'mal-user> '], args.start_timeout)
250except:
251 _, exc, _ = sys.exc_info()
252 log("\nException: %s" % repr(exc))
253 log("Output before exception:\n%s" % r.buf)
254 sys.exit(1)
cc021efe
JM
255
256# Send the pre-eval code if any
257if args.pre_eval:
258 sys.stdout.write("RUNNING pre-eval: %s" % args.pre_eval)
7907cd90 259 p.write(args.pre_eval)
cc021efe 260 assert_prompt(args.test_timeout)
31690700 261
97e27599
JM
262test_cnt = 0
263pass_cnt = 0
31690700 264fail_cnt = 0
98af2ae3 265soft_fail_cnt = 0
00724049 266failures = []
31690700 267
98af2ae3 268while t.next():
a1eb30fc
JM
269 if args.deferrable == False and t.deferrable:
270 log(t.deferrable)
46e25689
JM
271 break
272
273 if args.optional == False and t.optional:
274 log(t.optional)
275 break
276
277 if t.msg != None:
278 log(t.msg)
279 continue
280
281 if t.form == None: continue
282
97e27599 283 log("TEST: %s -> [%s,%s]" % (t.form, repr(t.out), t.ret), end='')
d2f0f672
JM
284
285 # The repeated form is to get around an occasional OS X issue
286 # where the form is repeated.
287 # https://github.com/kanaka/mal/issues/30
98af2ae3
JM
288 expected = ["%s%s%s%s" % (t.form, sep, t.out, t.ret),
289 "%s%s%s%s%s%s" % (t.form, sep, t.form, sep, t.out, t.ret)]
31690700 290
98af2ae3 291 r.writeline(t.form)
31690700 292 try:
97e27599 293 test_cnt += 1
7907cd90
JM
294 res = r.read_to_prompt(['\r\nuser> ', '\nuser> ',
295 '\r\nmal-user> ', '\nmal-user> '],
296 timeout=args.test_timeout)
31690700 297 #print "%s,%s,%s" % (idx, repr(p.before), repr(p.after))
98af2ae3 298 if t.ret == "*" or res in expected:
97e27599
JM
299 log(" -> SUCCESS")
300 pass_cnt += 1
31690700 301 else:
f3ea3be3 302 if t.soft and not args.hard:
97e27599 303 log(" -> SOFT FAIL (line %d):" % t.line_num)
98af2ae3 304 soft_fail_cnt += 1
00724049 305 fail_type = "SOFT "
98af2ae3 306 else:
97e27599 307 log(" -> FAIL (line %d):" % t.line_num)
98af2ae3 308 fail_cnt += 1
00724049 309 fail_type = ""
59537691 310 log(" Expected : %s" % repr(expected[0]))
97e27599 311 log(" Got : %s" % repr(res))
00724049
DM
312 failed_test = """%sFAILED TEST (line %d): %s -> [%s,%s]:
313 Expected : %s
314 Got : %s""" % (fail_type, t.line_num, t.form, repr(t.out), t.ret, repr(expected[0]), repr(res))
315 failures.append(failed_test)
7907cd90 316 except:
10034e82 317 _, exc, _ = sys.exc_info()
97e27599
JM
318 log("\nException: %s" % repr(exc))
319 log("Output before exception:\n%s" % r.buf)
31690700
JM
320 sys.exit(1)
321
00724049
DM
322if len(failures) > 0:
323 log("\nFAILURES:")
324 for f in failures:
325 log(f)
326
327results = """
328TEST RESULTS (for %s):
97e27599
JM
329 %3d: soft failing tests
330 %3d: failing tests
331 %3d: passing tests
332 %3d: total tests
333""" % (args.test_file.name, soft_fail_cnt, fail_cnt,
334 pass_cnt, test_cnt)
335log(results)
336
337debug("\n") # add some separate to debug log
338
31690700 339if fail_cnt > 0:
97e27599 340 sys.exit(1)
31690700 341sys.exit(0)