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