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