chiark / gitweb /
Loosen playlist command rights.
[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 class wait_monitor(disorder.monitor):
24     def queue(self, q):
25         return False
26
27 def test():
28     """Check the queue is padded to the (default) configured length"""
29     dtest.start_daemon()
30     dtest.create_user()
31     c = disorder.client()
32     print " disabling play"
33     c.disable()
34     print " waiting for queue to be populated..."
35     q = c.queue()
36     while len(q) < 5:
37         print "  queue at %d tracks" % len(q)
38         wait_monitor().run()
39         q = c.queue()
40     print " getting queue via disorder(1)"
41     q = dtest.command(["disorder",
42                        "--config", disorder._configfile, "--no-per-user-config",
43                        "queue"])
44     tracks = filter(lambda s: re.match("^track", s), q)
45     assert len(tracks) == 5, "queue is at proper length"
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()
56     print " waiting for queue to refill..."
57     q = c.queue()
58     while len(q) < 5:
59         print "  queue at %d tracks" % len(q)
60         wait_monitor().run()
61         q = c.queue()
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)"
89
90 if __name__ == '__main__':
91     dtest.run()