forked from tangentcode/learntris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
testris.py
executable file
·161 lines (134 loc) · 5.23 KB
/
testris.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#!/usr/bin/env python
"""
Testris is the test runner for Learntris. Learntris is
the part *you* write, in whatever language you prefer.
If you're seeing this message when you tried to run
testris.py, it means testris can't find your code!
Your first step is to write a *console-mode* program
(one that does absolutely nothing!) and tell testris
where to find it:
./testris.py [/path/to/learntris] [arguments]
The path should refer to a physical file on disk, so if
you need command line arguments, create a wrapper program.
The default path is "./learntris".
You can pass extra arguments that will be passed to the
guest learntris program.
Once testris is able to launch your program, this message
will be replaced with instructions for implementing your
first feature.
"""
from __future__ import print_function # let's keep it 3.x compatible
import sys, os, subprocess, difflib, pprint, time
import extract
class Test(object):
def __init__(self):
self.desc = ""
self.seq = [] # sequence of commands
def __repr__(self):
return "<Test: %s, %d commands>" % (self.desc, len(self.seq))
class TestFailure(Exception):
def __init__(self, msg):
self.msg = msg
def __str__(self):
return self.msg
class TimeoutFailure(TestFailure):
pass
def parse_test(lines):
while lines and lines[-1].strip() == "":
lines.pop()
opcodes = {
'title': None,
'doc': [],
'in': [],
'out': [],
}
for line in lines:
if line.startswith('#'): continue
if '#' in line: # strip trailing comments
line = line[:line.find('#')]
sline = line.strip()
if sline.startswith('='): # test title
opcodes['title'] = sline[2:]
elif sline.startswith(':'): # test description
opcodes['doc'].append(sline)
elif sline.startswith('>'): # input to send
opcodes['in'].append(sline[1:].lstrip())
else: # expected output
opcodes['out'].append(sline)
return opcodes
def spawn(program_args, use_shell):
return subprocess.Popen(program_args,
shell=use_shell,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE)
def await_results(program, timeout_seconds=2):
"""
This polls the child program until it finishes
executing. If it takes more than =timeout_seconds=,
kill the program and raise a TimeoutFailure.
"""
countdown = timeout_seconds * 10
while program.poll() is None and countdown > 0:
time.sleep(0.1) # seep for 1/10 of a second
countdown -= 1
if countdown == 0:
program.kill()
raise TimeoutFailure("<program timed out>")
def run_test(program, opcodes):
# send all the input lines:
print(opcodes['title'])
print("---- sending commands ----")
for cmd in opcodes['in']:
print(cmd)
program.stdin.write((cmd + "\n").encode('utf-8'))
# in python3, subprocess opens stdin in binary mode: http://hg.python.org/cpython/file/c9cb931b20f4/Lib/subprocess.py#l828
# with a default bufsize, which for binary mode is io.DEFAULT_BUFFER_SIZE (4096): https://docs.python.org/3.3/library/functions.html#open
# we can't use line buffering because, even though the subprocess docs don't say so
# and no error is thrown when you try, line buffering is only for text mode
# so, instead, we flush
program.stdin.flush()
# let the program do its thing:
print("---- awaiting results ----")
await_results(program)
# read all the actual output lines and compare to expected:
actual = [line.strip() for line in
program.stdout.read().decode('utf-8').split("\n")]
while actual and actual[-1] == "":
actual.pop()
if actual != opcodes['out']:
print('\n'.join(opcodes['doc']))
print("---- expected results ----")
print('\n'.join(opcodes['out']))
diff = '\n'.join(list(difflib.Differ().compare(actual, opcodes['out'])))
raise TestFailure('output mismatch:\n' + diff)
def run_tests(program_args, use_shell):
for i, test in enumerate(extract.tests()):
program = spawn(program_args, use_shell)
opcodes = parse_test(test.lines)
print("Running test %d: %s" % (i+1, test.name))
try:
run_test(program, opcodes)
print("Test %d passed" % (i+1))
except (TimeoutFailure, TestFailure) as e:
print("Test %d failed: %s" % (i+1, e))
break
print("\n") # add 2 blank lines between tests
def find_learntris():
default = "./learntris"
program_args = sys.argv[1:] if len(sys.argv) >= 2 else [default]
if "--shell" in program_args: # --shell option
program_args.remove("--shell")
return (program_args, True)
elif os.path.exists(program_args[0]):
return (program_args, False)
elif program_args[0] == default:
print(__doc__)
else:
print("Error: ('%s') not found." % program_args[0])
return None
def main():
program_args = find_learntris()
if program_args: run_tests(program_args[0], program_args[1])
if __name__ == '__main__':
main()
# vim: set expandtab: