chiark / gitweb /
Set Disobedience login default in a way that doesn't override
[disorder] / tests / queue.py
CommitLineData
abf54aca 1#! /usr/bin/env python
213b4064
RK
2#
3# This file is part of DisOrder.
5aff007d 4# Copyright (C) 2007, 2008 Richard Kettlewell
213b4064
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#
d48eab4d 21import dtest,time,disorder,re
213b4064 22
61192f93
RK
23class wait_monitor(disorder.monitor):
24 def queue(self, q):
25 return False
26
213b4064 27def test():
96372bd1 28 """Check the queue is padded to the (default) configured length"""
213b4064 29 dtest.start_daemon()
f0feb22e 30 dtest.create_user()
213b4064 31 c = disorder.client()
61192f93
RK
32 print " disabling play"
33 c.disable()
34 print " waiting for queue to be populated..."
213b4064 35 q = c.queue()
61192f93
RK
36 while len(q) < 5:
37 print " queue at %d tracks" % len(q)
38 wait_monitor().run()
39 q = c.queue()
d48eab4d 40 print " getting queue via disorder(1)"
63ad732f
RK
41 q = dtest.command(["disorder",
42 "--config", disorder._configfile, "--no-per-user-config",
43 "queue"])
d48eab4d 44 tracks = filter(lambda s: re.match("^track", s), q)
61192f93 45 assert len(tracks) == 5, "queue is at proper length"
81e440ce
RK
46 print " disabling random play"
47 c.random_disable()
48 print " emptying queue"
49 for t in c.queue():
50 c.remove(t['id'])
51 print " checking queue is now empty"
52 q = c.queue()
53 assert q == [], "checking queue is empty"
54 print " enabling random play"
55 c.random_enable()
61192f93 56 print " waiting for queue to refill..."
81e440ce 57 q = c.queue()
61192f93
RK
58 while len(q) < 5:
59 print " queue at %d tracks" % len(q)
60 wait_monitor().run()
61 q = c.queue()
81e440ce
RK
62 print " disabling all play"
63 c.random_disable()
64 c.disable()
65 print " emptying queue"
66 for t in c.queue():
67 c.remove(t['id'])
68 t1 = "%s/Joe Bloggs/Third Album/01:First_track.ogg" % dtest.tracks
69 t2 = "%s/Joe Bloggs/Third Album/02:Second_track.ogg" % dtest.tracks
70 t3 = "%s/Joe Bloggs/Third Album/02:Second_track.ogg" % dtest.tracks
71 print " adding tracks"
72 i1 = c.play(t1)
73 i2 = c.play(t2)
74 i3 = c.play(t3)
75 q = c.queue()
76 assert map(lambda e:e['id'], q) == [i1, i2, i3], "checking queue order(1)"
77 print " moving last track to start"
78 c.moveafter(None, [i3])
79 q = c.queue()
80 assert map(lambda e:e['id'], q) == [i3, i1, i2], "checking queue order(2)"
81 print " moving two tracks"
82 c.moveafter(i1, [i2, i3])
83 q = c.queue()
84 assert map(lambda e:e['id'], q) == [i1, i2 ,i3], "checking queue order(3)"
85 print " removing a track"
86 c.remove(i2)
87 q = c.queue()
88 assert map(lambda e:e['id'], q) == [i1 ,i3], "checking queue order(4)"
213b4064
RK
89
90if __name__ == '__main__':
91 dtest.run()