More careful testing of scratching, and correctly handle the case
[disorder] / tests / play.py
1 #! /usr/bin/env 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 import dtest,time,disorder,re
22
23 def test():
24 """Play some tracks"""
25 dtest.start_daemon()
26 dtest.create_user()
27 c = disorder.client()
28 c.random_disable()
29 assert c.random_enabled() == False
30 track = u"%s/Joe Bloggs/First Album/02:Second track.ogg" % dtest.tracks
31 print " adding track to queue"
32 c.disable()
33 assert c.enabled() == False
34 c.play(track)
35 print " checking track turned up in queue"
36 q = c.queue()
37 ts = filter(lambda t: t['track'] == track and 'submitter' in t, q)
38 assert len(ts) == 1, "checking track appears exactly once in queue"
39 t = ts[0]
40 assert t['submitter'] == u'fred', "check queue submitter"
41 i = t['id']
42 print " waiting for track"
43 c.enable()
44 assert c.enabled() == True
45 p = c.playing()
46 r = c.recent()
47 while not((p is not None and p['id'] == i)
48 or (len(filter(lambda t: t['track'] == track and 'submitter' in t, r)) > 0)):
49 time.sleep(1)
50 p = c.playing()
51 r = c.recent()
52 print " checking track turned up in recent list"
53 while (p is not None and p['id'] == i):
54 time.sleep(1)
55 p = c.playing()
56 r = c.recent()
57 ts = filter(lambda t: t['track'] == track and 'submitter' in t, r)
58 assert len(ts) == 1, "check track appears exactly once in recent"
59 t = ts[0]
60 assert t['submitter'] == u'fred', "check recent entry submitter"
61
62 print " testing scratches"
63 retry = False
64 while True:
65 c.disable()
66 print " starting a track"
67 c.play(track)
68 c.enable()
69 p = c.playing()
70 if p is None:
71 print " track played too quickly, trying again..."
72 continue
73 print " scratching track"
74 i = p['id']
75 c.scratch(i)
76 print " waiting for track to finish"
77 p = c.playing()
78 while (p is not None and p['id'] == i):
79 time.sleep(1)
80 p = c.playing()
81 print " checking scratched track turned up in recent list"
82 r = c.recent()
83 ts = filter(lambda t: t['id'] == i, r)
84 assert len(ts) == 1, "check scratched track appears exactly once in recent"
85 if ts[0]['state'] == 'ok':
86 print " track played too quickly, trying again..."
87 continue
88 assert ts[0]['state'] == 'scratched', "checking track scratched"
89 break
90 print " waiting for scratch to complete"
91 p = c.recent()
92 while p is not None:
93 time.sleep(1)
94 p = c.playing()
95 assert p is None, "checking nothing is playing"
96 assert c.enabled() == True
97 c.random_enable()
98 assert c.random_enabled() == True
99
100 if __name__ == '__main__':
101 dtest.run()