chiark / gitweb /
Fix mis-decoding of MP3s. The bug was due to a misunderstanding of
[disorder] / tests / play.py
CommitLineData
f5eb2aff
RK
1#! /usr/bin/env python
2#
3# This file is part of DisOrder.
2b2a5fed 4# Copyright (C) 2007, 2008 Richard Kettlewell
f5eb2aff
RK
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#
21import dtest,time,disorder,re
22
23def test():
24 """Play some tracks"""
25 dtest.start_daemon()
f0feb22e 26 dtest.create_user()
f5eb2aff 27 c = disorder.client()
2b2a5fed
RK
28 c.random_disable()
29 assert c.random_enabled() == False
f5eb2aff 30 track = u"%s/Joe Bloggs/First Album/02:Second track.ogg" % dtest.tracks
f0feb22e 31 print " adding track to queue"
db86b8ed 32 c.disable()
2b2a5fed 33 assert c.enabled() == False
f5eb2aff 34 c.play(track)
81e440ce 35 print " checking track turned up in queue"
f5eb2aff
RK
36 q = c.queue()
37 ts = filter(lambda t: t['track'] == track and 'submitter' in t, q)
6ce6b5a9 38 assert len(ts) == 1, "checking track appears exactly once in queue"
f5eb2aff
RK
39 t = ts[0]
40 assert t['submitter'] == u'fred', "check queue submitter"
41 i = t['id']
81e440ce 42 print " waiting for track"
db86b8ed 43 c.enable()
2b2a5fed 44 assert c.enabled() == True
f5eb2aff 45 p = c.playing()
546c7978
RK
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)):
f5eb2aff
RK
49 time.sleep(1)
50 p = c.playing()
546c7978 51 r = c.recent()
81e440ce 52 print " checking track turned up in recent list"
6ce6b5a9
RK
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"
f5eb2aff
RK
59 t = ts[0]
60 assert t['submitter'] == u'fred', "check recent entry submitter"
2b2a5fed
RK
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()
81e440ce 69 p = c.playing()
2b2a5fed
RK
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
be603af9 90 print " waiting for scratch to complete"
2b2a5fed
RK
91 p = c.recent()
92 while p is not None:
be603af9
RK
93 time.sleep(1)
94 p = c.playing()
95 assert p is None, "checking nothing is playing"
af371dd1 96 assert c.enabled() == True
af371dd1
RK
97 c.random_enable()
98 assert c.random_enabled() == True
f5eb2aff
RK
99
100if __name__ == '__main__':
101 dtest.run()