DisOrder 3.0
[disorder] / tests / queue.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 """Check the queue is padded to the (default) configured length"""
25 dtest.start_daemon()
26 dtest.create_user()
27 print " waiting for queue to be populated..."
28 class wait_monitor(disorder.monitor):
29 def queue(self, q):
30 return False
31 wait_monitor().run()
32 c = disorder.client()
33 print " getting queue via python module"
34 q = c.queue()
35 assert len(q) == 10, "queue is at proper length"
36 print " getting queue via disorder(1)"
37 q = dtest.command(["disorder",
38 "--config", disorder._configfile, "--no-per-user-config",
39 "queue"])
40 tracks = filter(lambda s: re.match("^track", s), q)
41 assert len(tracks) == 10, "queue is at proper length"
42 print " disabling random play"
43 c.random_disable()
44 print " emptying queue"
45 for t in c.queue():
46 c.remove(t['id'])
47 print " checking queue is now empty"
48 q = c.queue()
49 assert q == [], "checking queue is empty"
50 print " enabling random play"
51 c.random_enable()
52 print " checking queue refills"
53 q = c.queue()
54 assert len(q) == 10, "queue is at proper length"
55 print " disabling all play"
56 c.random_disable()
57 c.disable()
58 print " emptying queue"
59 for t in c.queue():
60 c.remove(t['id'])
61 t1 = "%s/Joe Bloggs/Third Album/01:First_track.ogg" % dtest.tracks
62 t2 = "%s/Joe Bloggs/Third Album/02:Second_track.ogg" % dtest.tracks
63 t3 = "%s/Joe Bloggs/Third Album/02:Second_track.ogg" % dtest.tracks
64 print " adding tracks"
65 i1 = c.play(t1)
66 i2 = c.play(t2)
67 i3 = c.play(t3)
68 q = c.queue()
69 assert map(lambda e:e['id'], q) == [i1, i2, i3], "checking queue order(1)"
70 print " moving last track to start"
71 c.moveafter(None, [i3])
72 q = c.queue()
73 assert map(lambda e:e['id'], q) == [i3, i1, i2], "checking queue order(2)"
74 print " moving two tracks"
75 c.moveafter(i1, [i2, i3])
76 q = c.queue()
77 assert map(lambda e:e['id'], q) == [i1, i2 ,i3], "checking queue order(3)"
78 print " removing a track"
79 c.remove(i2)
80 q = c.queue()
81 assert map(lambda e:e['id'], q) == [i1 ,i3], "checking queue order(4)"
82
83 if __name__ == '__main__':
84 dtest.run()