chiark / gitweb /
Command line interface now takes more human-friendly timestamps. This
[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     dtest.rescan()                      # ensure all files are scanned
28     c = disorder.client()
29     c.random_disable()
30     assert c.random_enabled() == False
31     track = u"%s/Joe Bloggs/First Album/02:Second track.ogg" % dtest.tracks
32     print " adding track to queue"
33     c.disable()
34     assert c.enabled() == False
35     c.play(track)
36     print " checking track turned up in queue"
37     q = c.queue()
38     ts = filter(lambda t: t['track'] == track and 'submitter' in t, q)
39     assert len(ts) == 1, "checking track appears exactly once in queue"
40     t = ts[0]
41     assert t['submitter'] == u'fred', "check queue submitter"
42     i = t['id']
43     print " waiting for track"
44     c.enable()
45     assert c.enabled() == True
46     p = c.playing()
47     r = c.recent()
48     limit = 60
49     while not((p is not None and p['id'] == i)
50               or (len(filter(lambda t: t['track'] == track
51                              and 'submitter' in t, r)) > 0)) and limit > 0:
52         time.sleep(1)
53         p = c.playing()
54         r = c.recent()
55         limit -= 1
56     assert limit > 0, "check track did complete in a reasonable time"
57     print " checking track turned up in recent list"
58     while (p is not None and p['id'] == i):
59         time.sleep(1)
60         p = c.playing()
61     r = c.recent()
62     ts = filter(lambda t: t['track'] == track and 'submitter' in t, r)
63     assert len(ts) == 1, "check track appears exactly once in recent"
64     t = ts[0]
65     assert t['submitter'] == u'fred', "check recent entry submitter"
66
67     print " testing scratches"
68     retry = False
69     while True:
70         c.disable()
71         print " starting a track"
72         c.play(track)
73         c.enable()
74         p = c.playing()
75         if p is None:
76             print " track played too quickly, trying again..."
77             continue
78         print " scratching track"
79         i = p['id']
80         c.scratch(i)
81         print " waiting for track to finish"
82         p = c.playing()
83         limit = 60
84         while (p is not None and p['id'] == i) and limit > 0:
85             time.sleep(1)
86             p = c.playing()
87             limit -= 1
88         assert limit > 0, "check track finishes in a reasonable period"
89         print " checking scratched track turned up in recent list"
90         r = c.recent()
91         ts = filter(lambda t: t['id'] == i, r)
92         assert len(ts) == 1, "check scratched track appears exactly once in recent"
93         if ts[0]['state'] == 'ok':
94             print " track played too quickly, trying again..."
95             continue
96         assert ts[0]['state'] == 'scratched', "checking track scratched"
97         break
98     print " waiting for scratch to complete"
99     p = c.recent()
100     while p is not None:
101         time.sleep(1)
102         p = c.playing()
103     assert p is None, "checking nothing is playing"
104     assert c.enabled() == True
105     c.random_enable()
106     assert c.random_enabled() == True
107
108 if __name__ == '__main__':
109     dtest.run()