chiark / gitweb /
dump.py exercises tags db harder
[disorder] / tests / dtest.py
CommitLineData
c5dbcd79 1#-*-python-*-
aa896435
RK
2#
3# This file is part of DisOrder.
4# Copyright (C) 2007 Richard Kettlewell
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful, but
12# WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14# General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, write to the Free Software
18# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19# USA
20#
c5dbcd79
RK
21
22"""Utility module used by tests"""
23
31773020 24import os,os.path,subprocess,sys,re,time,unicodedata,random,socket
3bfecfac
RK
25
26def fatal(s):
27 """Write an error message and exit"""
28 sys.stderr.write("ERROR: %s\n" % s)
29 sys.exit(1)
30
31# Identify the top build directory
32cwd = os.getcwd()
33if os.path.exists("config.h"):
34 top_builddir = cwd
35elif os.path.exists("alltests"):
36 top_builddir = os.path.dirname(cwd)
37else:
38 fatal("cannot identify build directory")
39
40# Make sure the Python build directory is on the module search path
41sys.path.insert(0, os.path.join(top_builddir, "python"))
42import disorder
43
d48eab4d 44# Make sure the build directories are on the executable search path
3bfecfac
RK
45ospath = os.environ["PATH"].split(os.pathsep)
46ospath.insert(0, os.path.join(top_builddir, "server"))
d48eab4d 47ospath.insert(0, os.path.join(top_builddir, "clients"))
3bfecfac
RK
48os.environ["PATH"] = os.pathsep.join(ospath)
49
50# Parse the makefile in the current directory to identify the source directory
51top_srcdir = None
52for l in file("Makefile"):
53 r = re.match("top_srcdir *= *(.*)", l)
54 if r:
55 top_srcdir = r.group(1)
56 break
57if not top_srcdir:
58 fatal("cannot identify source directory")
59
60# The tests source directory must be on the module search path already since
61# we found dtest.py
62
63# -----------------------------------------------------------------------------
c5dbcd79
RK
64
65def copyfile(a,b):
66 """copyfile(A, B)
67Copy A to B."""
68 open(b,"w").write(open(a).read())
69
de5ccb1a
RK
70def to_unicode(s):
71 """Convert UTF-8 to unicode. A no-op if already unicode."""
72 if type(s) == unicode:
73 return s
74 else:
75 return unicode(s, "UTF-8")
76
77def nfc(s):
78 """Convert UTF-8 string or unicode to NFC unicode."""
79 return unicodedata.normalize("NFC", to_unicode(s))
80
c5dbcd79
RK
81def maketrack(s):
82 """maketrack(S)
83
84Make track with relative path S exist"""
121e3654 85 trackpath = "%s/%s" % (tracks, s)
c5dbcd79
RK
86 trackdir = os.path.dirname(trackpath)
87 if not os.path.exists(trackdir):
88 os.makedirs(trackdir)
3bfecfac 89 copyfile("%s/sounds/slap.ogg" % top_srcdir, trackpath)
121e3654 90 # We record the tracks we created so they can be tested against
7bbe944b
RK
91 # server responses. We put them into NFC since that's what the server
92 # uses internally.
de5ccb1a 93 bits = nfc(s).split('/')
121e3654
RK
94 dp = tracks
95 for d in bits [0:-1]:
96 dd = "%s/%s" % (dp, d)
97 if dp not in dirs_by_dir:
98 dirs_by_dir[dp] = []
99 if dd not in dirs_by_dir[dp]:
100 dirs_by_dir[dp].append(dd)
101 dp = "%s/%s" % (dp, d)
102 if dp not in files_by_dir:
103 files_by_dir[dp] = []
104 files_by_dir[dp].append("%s/%s" % (dp, bits[-1]))
c5dbcd79
RK
105
106def stdtracks():
f9635e06
RK
107 # We create some tracks with non-ASCII characters in the name and
108 # we (currently) force UTF-8.
109 #
110 # On a traditional UNIX filesystem, that treats filenames as byte strings
111 # with special significant for '/', this should just work, though the
112 # names will look wrong to ls(1) in a non UTF-8 locale.
113 #
114 # On Apple HFS+ filenames normalized to a decomposed form that isn't quite
115 # NFD, so our attempts to have both normalized and denormalized filenames
116 # is frustrated. Provided we test on traditional filesytsems too this
117 # shouldn't be a problem.
118 # (See http://developer.apple.com/qa/qa2001/qa1173.html)
121e3654
RK
119
120 global dirs_by_dir, files_by_dir
121 dirs_by_dir={}
122 files_by_dir={}
f9635e06
RK
123
124 # C3 8C = 00CC LATIN CAPITAL LETTER I WITH GRAVE
125 # (in NFC)
126 maketrack("Joe Bloggs/First Album/01:F\xC3\x8Crst track.ogg")
127
c5dbcd79 128 maketrack("Joe Bloggs/First Album/02:Second track.ogg")
f9635e06
RK
129
130 # CC 81 = 0301 COMBINING ACUTE ACCENT
131 # (giving an NFD i-acute)
132 maketrack("Joe Bloggs/First Album/03:ThI\xCC\x81rd track.ogg")
133 # ...hopefuly giving C3 8D = 00CD LATIN CAPITAL LETTER I WITH ACUTE
c5dbcd79
RK
134 maketrack("Joe Bloggs/First Album/04:Fourth track.ogg")
135 maketrack("Joe Bloggs/First Album/05:Fifth track.ogg")
c5dbcd79
RK
136 maketrack("Joe Bloggs/Second Album/01:First track.ogg")
137 maketrack("Joe Bloggs/Second Album/02:Second track.ogg")
138 maketrack("Joe Bloggs/Second Album/03:Third track.ogg")
139 maketrack("Joe Bloggs/Second Album/04:Fourth track.ogg")
140 maketrack("Joe Bloggs/Second Album/05:Fifth track.ogg")
de5ccb1a
RK
141 maketrack("Joe Bloggs/Third Album/01:First_track.ogg")
142 maketrack("Joe Bloggs/Third Album/02:Second_track.ogg")
143 maketrack("Joe Bloggs/Third Album/03:Third_track.ogg")
144 maketrack("Joe Bloggs/Third Album/04:Fourth_track.ogg")
145 maketrack("Joe Bloggs/Third Album/05:Fifth_track.ogg")
c5dbcd79
RK
146 maketrack("Fred Smith/Boring/01:Dull.ogg")
147 maketrack("Fred Smith/Boring/02:Tedious.ogg")
148 maketrack("Fred Smith/Boring/03:Drum Solo.ogg")
149 maketrack("Fred Smith/Boring/04:Yawn.ogg")
150 maketrack("misc/blahblahblah.ogg")
151 maketrack("Various/Greatest Hits/01:Jim Whatever - Spong.ogg")
152 maketrack("Various/Greatest Hits/02:Joe Bloggs - Yadda.ogg")
31773020
RK
153
154def bindable(p):
155 """bindable(P)
156
157 Return True iff UDP port P is bindable, else False"""
158 s = socket.socket(socket.AF_INET,
159 socket.SOCK_DGRAM,
160 socket.IPPROTO_UDP)
161 try:
162 s.bind(("127.0.0.1", p))
163 s.close()
164 return True
165 except:
166 return False
167
f9635e06
RK
168def common_setup():
169 remove_dir(testroot)
170 os.mkdir(testroot)
213b4064
RK
171 global port
172 port = random.randint(49152, 65535)
31773020
RK
173 while not bindable(port):
174 print "port %d is not bindable, trying another" % port
175 port = random.randint(49152, 65535)
f9635e06 176 open("%s/config" % testroot, "w").write(
213b4064 177 """home %s
b6995afb
RK
178collection fs UTF-8 %s/tracks
179scratch %s/scratch.ogg
180gap 0
181stopword 01 02 03 04 05 06 07 08 09 10
182stopword 1 2 3 4 5 6 7 8 9
183stopword 11 12 13 14 15 16 17 18 19 20
184stopword 21 22 23 24 25 26 27 28 29 30
185stopword the a an and to too in on of we i am as im for is
186username fred
187password fredpass
188allow fred fredpass
445a0f66 189trust fred
40c30921 190plugins
deaaa115 191plugins %s/plugins
40c30921 192plugins %s/plugins/.libs
b6995afb
RK
193player *.mp3 execraw disorder-decode
194player *.ogg execraw disorder-decode
195player *.wav execraw disorder-decode
196player *.flac execraw disorder-decode
197tracklength *.mp3 disorder-tracklength
198tracklength *.ogg disorder-tracklength
199tracklength *.wav disorder-tracklength
200tracklength *.flac disorder-tracklength
213b4064
RK
201speaker_backend network
202broadcast 127.0.0.1 %d
203broadcast_from 127.0.0.1 %d
204""" % (testroot, testroot, testroot, top_builddir, top_builddir,
205 port, port + 1))
fbcfb257 206 copyfile("%s/sounds/scratch.ogg" % top_srcdir,
f9635e06
RK
207 "%s/scratch.ogg" % testroot)
208
1c8f3db8
RK
209def start_daemon():
210 """start_daemon()
c5dbcd79 211
1c8f3db8 212Start the daemon."""
31773020 213 global daemon, errs, port
213b4064 214 assert daemon == None, "no daemon running"
31773020
RK
215 if not bindable(port):
216 print "waiting for speaker socket to become bindable again..."
217 time.sleep(1)
218 while not bindable(port):
219 time.sleep(1)
c5dbcd79 220 print " starting daemon"
1a4a6350
RK
221 # remove the socket if it exists
222 socket = "%s/socket" % testroot
223 try:
224 os.remove(socket)
225 except:
226 pass
c5dbcd79
RK
227 daemon = subprocess.Popen(["disorderd",
228 "--foreground",
229 "--config", "%s/config" % testroot],
230 stderr=errs)
1a4a6350
RK
231 # Wait for the socket to be created
232 waited = 0
233 while not os.path.exists(socket):
234 rc = daemon.poll()
235 if rc is not None:
236 print "FATAL: daemon failed to start up"
237 sys.exit(1)
238 waited += 1
239 if waited == 1:
240 print " waiting for socket..."
241 elif waited >= 60:
242 print "FATAL: took too long for socket to appear"
243 sys.exit(1)
244 time.sleep(1)
245 if waited > 0:
246 print " took about %ds for socket to appear" % waited
c5dbcd79 247
f9635e06
RK
248def stop_daemon():
249 """stop_daemon()
c5dbcd79
RK
250
251Stop the daemon if it has not stopped already"""
252 global daemon
5c07ba71
RK
253 if daemon == None:
254 return
c5dbcd79
RK
255 rc = daemon.poll()
256 if rc == None:
eee9d4b3 257 print " stopping daemon"
445a0f66 258 disorder.client().shutdown()
1a4a6350 259 print " waiting for daemon"
c5dbcd79 260 rc = daemon.wait()
1a4a6350
RK
261 print " daemon has stopped"
262 else:
263 print " daemon already stopped"
c5dbcd79
RK
264 daemon = None
265
5c07ba71
RK
266def run(module=None, report=True):
267 """dtest.run(MODULE)
268
269 Run the test in MODULE. This can be a string (in which case the module
270 will be imported) or a module object."""
c5dbcd79
RK
271 global tests
272 tests += 1
deaaa115 273 # Locate the test module
5c07ba71
RK
274 if module is None:
275 # We're running a test stand-alone
276 import __main__
277 module = __main__
278 name = os.path.splitext(os.path.basename(sys.argv[0]))[0]
279 else:
280 # We've been passed a module or a module name
281 if type(module) == str:
282 module = __import__(module)
283 name = module.__name__
deaaa115 284 # Open the error log
5c07ba71
RK
285 global errs
286 errs = open("%s.log" % name, "w")
deaaa115 287 # Ensure that disorder.py uses the test installation
1c8f3db8
RK
288 disorder._configfile = "%s/config" % testroot
289 disorder._userconf = False
3514766b 290 # Make config file etc
f9635e06 291 common_setup()
deaaa115
RK
292 # Create some standard tracks
293 stdtracks()
c5dbcd79 294 try:
eee9d4b3 295 try:
5c07ba71 296 module.test()
eee9d4b3
RK
297 except AssertionError, e:
298 global failures
299 failures += 1
213b4064 300 print "assertion failed: %s" % e.message
eee9d4b3 301 finally:
7ebd22d9 302 stop_daemon()
c5dbcd79
RK
303 if report:
304 if failures:
305 print " FAILED"
306 sys.exit(1)
307 else:
308 print " OK"
309
310def remove_dir(d):
311 """remove_dir(D)
312
313Recursively delete directory D"""
314 if os.path.lexists(d):
315 if os.path.isdir(d):
316 for dd in os.listdir(d):
317 remove_dir("%s/%s" % (d, dd))
318 os.rmdir(d)
319 else:
320 os.remove(d)
321
31773020
RK
322def lists_have_same_contents(l1, l2):
323 """lists_have_same_contents(L1, L2)
324
325 Return True if L1 and L2 have equal members, in any order; else False."""
326 s1 = []
327 s1.extend(l1)
328 s1.sort()
329 s2 = []
330 s2.extend(l2)
331 s2.sort()
332 return s1 == s2
333
a4d8ba8f
RK
334def check_files():
335 c = disorder.client()
336 failures = 0
337 for d in dirs_by_dir:
338 xdirs = dirs_by_dir[d]
339 dirs = c.directories(d)
31773020 340 if not lists_have_same_contents(xdirs, dirs):
a4d8ba8f
RK
341 print
342 print "directory: %s" % d
343 print "expected: %s" % xdirs
344 print "got: %s" % dirs
345 failures += 1
346 for d in files_by_dir:
347 xfiles = files_by_dir[d]
348 files = c.files(d)
31773020 349 if not lists_have_same_contents(xfiles, files):
a4d8ba8f
RK
350 print
351 print "directory: %s" % d
352 print "expected: %s" % xfiles
353 print "got: %s" % files
354 failures += 1
355 return failures
356
d48eab4d
RK
357def command(args):
358 """Execute a command given as a list and return its stdout"""
359 p = subprocess.Popen(args, stdout=subprocess.PIPE)
360 lines = p.stdout.readlines()
361 rc = p.wait()
362 assert rc == 0, ("%s returned status %s" % (args, rc))
363 return lines
364
c5dbcd79
RK
365# -----------------------------------------------------------------------------
366# Common setup
367
368tests = 0
369failures = 0
370daemon = None
3bfecfac 371testroot = "%s/tests/testroot" % top_builddir
121e3654 372tracks = "%s/tracks" % testroot