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