chiark / gitweb /
configure.ac: on FreeBSD, look in the various places that libdb might
[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 46 r = c.recent()
bf219db9 47 limit = 60
546c7978 48 while not((p is not None and p['id'] == i)
bf219db9 49 or (len(filter(lambda t: t['track'] == track
50 and 'submitter' in t, r)) > 0)) and limit > 0:
f5eb2aff
RK
51 time.sleep(1)
52 p = c.playing()
546c7978 53 r = c.recent()
bf219db9 54 limit -= 1
55 assert limit > 0, "check track did complete in a reasonable time"
81e440ce 56 print " checking track turned up in recent list"
6ce6b5a9
RK
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"
f5eb2aff
RK
63 t = ts[0]
64 assert t['submitter'] == u'fred', "check recent entry submitter"
2b2a5fed
RK
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()
81e440ce 73 p = c.playing()
2b2a5fed
RK
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()
bf219db9 82 limit = 60
83 while (p is not None and p['id'] == i) and limit > 0:
2b2a5fed
RK
84 time.sleep(1)
85 p = c.playing()
bf219db9 86 limit -= 1
87 assert limit > 0, "check track finishes in a reasonable period"
2b2a5fed
RK
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
be603af9 97 print " waiting for scratch to complete"
2b2a5fed
RK
98 p = c.recent()
99 while p is not None:
be603af9
RK
100 time.sleep(1)
101 p = c.playing()
102 assert p is None, "checking nothing is playing"
af371dd1 103 assert c.enabled() == True
af371dd1
RK
104 c.random_enable()
105 assert c.random_enabled() == True
f5eb2aff
RK
106
107if __name__ == '__main__':
108 dtest.run()