5 # Run compiler unit tests
7 # Copyright (c) 2008/2009 Matthias Kramm <kramm@quiss.org>
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 2 of the License, or
12 # (at your option) any later version.
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with this program; if not, write to the Free Software
21 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
29 from optparse import OptionParser
34 for line in s.split("\n"):
35 if line.startswith("[") and line.endswith("]"):
39 if not line.startswith("ok"):
41 if line.startswith("ok "):
46 nr,len = int(line[3:i]),int(line[i+1:])
64 def runcmd(cmd,args,wait):
67 fo = os.fdopen(fo, "wb")
68 p = subprocess.Popen([cmd] + args, executable=cmd, stdout=fo, stderr=fo)
71 for i in range(wait*10):
72 if fi in select.select([fi],[],[], 0.01)[0]:
73 output += os.read(fi, 8192)
74 if "[exit]" in output:
84 os.system("killall -9 %s >/dev/null 2>/dev/null" % cmd)
87 if fi in select.select([fi],[],[], 0.01)[0]:
88 output += os.read(fi, 8192)
94 def __init__(self, filename):
95 self.filename = filename
96 self.filename_milestone = filename+"_milestone"
98 self.filename2status = marshal.load(open(self.filename, "rb"))
100 self.filename2status = {}
102 self.milestone = marshal.load(open(self.filename_milestone, "rb"))
106 def parse_args(self):
107 parser = OptionParser()
108 parser.add_option("-d", "--diff", dest="diff", help="Only run tests that failed the last time",action="store_true")
109 parser.add_option("-a", "--all", dest="all", help="Run all tests (also tests expected fail)",action="store_true")
110 parser.add_option("-t", "--tag", dest="tag", help="Mark the current pass/fail statistic as milestone",action="store_true")
111 (options, args) = parser.parse_args()
113 if args and args[0]=="add":
116 self.milestone[args[1]] = "ok"
117 self.filename2status = self.milestone
121 self.__dict__.update(options.__dict__)
125 self.runtime = 5 # allow more time if we're tagging this state
129 self.checknum = int(args[0])
133 return Cache(filename)
136 fi = open(self.filename, "wb")
137 marshal.dump(self.filename2status, fi)
141 fi = open(self.filename_milestone, "wb")
142 marshal.dump(self.filename2status, fi)
145 def highlight(self, nr, filename):
146 return self.checknum==nr
148 def skip_file(self, nr, filename):
149 if self.checknum>=0 and nr!=self.checknum:
151 if not self.all and self.milestone.get(filename,"new")!="ok":
153 if self.diff and self.filename2status(filename,"new")=="ok":
157 def file_status(self, filename, status):
158 self.filename2status[filename] = status
161 def __init__(self, cache, nr, file, run):
166 self.flash_output = None
167 self.flash_error = None
168 self.compile_output = None
169 self.compile_error = None
172 try: os.unlink("abc.swf");
174 ret,output = runcmd("./parser",[self.file],wait=cache.runtime)
175 self.compile_error = 0
176 self.compile_output = output
179 self.compile_output += "\nExit status %d" % (-ret)
180 self.exit_status = -ret
181 self.compile_error = 1
183 if not os.path.isfile("abc.swf"):
184 self.compile_error = 1
189 ret,output = runcmd("flashplayer",["abc.swf"],wait=cache.runtime)
190 os.system("killall flashplayer")
191 self.flash_output = output
193 if not check(self.flash_output):
199 print self.r(str(self.nr),3)," ",
200 if self.compile_error:
202 if self.exit_status == 11:
211 if not self.flash_error:
220 def doprintlong(self):
221 print self.nr, self.file
222 print "================================"
223 print "compile:", (self.compile_error and "error" or "ok")
224 print self.compile_output
227 print "================================"
228 print "run:", (self.flash_error and "error" or "ok")
229 print self.flash_output
230 print "================================"
235 return (" "*(l-len(s))) + s
239 return s + (" "*(l-len(s)))
241 class Test(TestBase):
242 def __init__(self, cache, nr, file):
243 TestBase.__init__(self, cache, nr, file, run=1)
244 if self.compile() and self.run():
245 cache.file_status(file, "ok")
247 cache.file_status(file, "error")
249 class ErrTest(TestBase):
250 def __init__(self, cache, nr, file):
251 TestBase.__init__(self, cache, nr, file, run=0)
253 cache.file_status(file, "error")
254 self.compile_error = True
256 cache.file_status(file, "ok")
257 self.compile_error = False
260 def __init__(self, cache, dir):
263 self.errtest = "err" in dir
265 print "-"*40,"tests \""+self.dir+"\"","-"*40
266 for file in sorted(os.listdir(self.dir)):
267 if not file.endswith(".as"):
270 file = os.path.join(self.dir, file)
272 if cache.skip_file(nr, file):
276 test = ErrTest(cache, nr, file)
278 test = Test(cache, nr, file)
280 if not cache.highlight(nr, file):
286 cache = Cache.load(".tests.cache")
290 nr = Suite(cache, "err").run(nr)
291 nr = Suite(cache, "ok").run(nr)