chiark / gitweb /
New scripts/setup which interactively sets up a DisOrder configuration
[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     limit = 60
48     while not((p is not None and p['id'] == i)
49               or (len(filter(lambda t: t['track'] == track
50                              and 'submitter' in t, r)) > 0)) and limit > 0:
51         time.sleep(1)
52         p = c.playing()
53         r = c.recent()
54         limit -= 1
55     assert limit > 0, "check track did complete in a reasonable time"
56     print " checking track turned up in recent list"
57     while (p is not None and p['id'] == i):
58         time.sleep(1)
59         p = c.playing()
60     r = c.recent()
61     ts = filter(lambda t: t['track'] == track and 'submitter' in t, r)
62     assert len(ts) == 1, "check track appears exactly once in recent"
63     t = ts[0]
64     assert t['submitter'] == u'fred', "check recent entry submitter"
65
66     print " testing scratches"
67     retry = False
68     while True:
69         c.disable()
70         print " starting a track"
71         c.play(track)
72         c.enable()
73         p = c.playing()
74         if p is None:
75             print " track played too quickly, trying again..."
76             continue
77         print " scratching track"
78         i = p['id']
79         c.scratch(i)
80         print " waiting for track to finish"
81         p = c.playing()
82         limit = 60
83         while (p is not None and p['id'] == i) and limit > 0:
84             time.sleep(1)
85             p = c.playing()
86             limit -= 1
87         assert limit > 0, "check track finishes in a reasonable period"
88         print " checking scratched track turned up in recent list"
89         r = c.recent()
90         ts = filter(lambda t: t['id'] == i, r)
91         assert len(ts) == 1, "check scratched track appears exactly once in recent"
92         if ts[0]['state'] == 'ok':
93             print " track played too quickly, trying again..."
94             continue
95         assert ts[0]['state'] == 'scratched', "checking track scratched"
96         break
97     print " waiting for scratch to complete"
98     p = c.recent()
99     while p is not None:
100         time.sleep(1)
101         p = c.playing()
102     assert p is None, "checking nothing is playing"
103     assert c.enabled() == True
104     c.random_enable()
105     assert c.random_enabled() == True
106
107 if __name__ == '__main__':
108     dtest.run()