chiark / gitweb /
More careful testing of scratching, and correctly handle the case
[disorder] / tests / queue.py
1 #! /usr/bin/env python
2 #
3 # This file is part of DisOrder.
4 # Copyright (C) 2007 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     c = disorder.client()
28     print " getting queue via python module"
29     q = c.queue()
30     assert len(q) == 10, "queue is at proper length"
31     print " getting queue via disorder(1)"
32     q = dtest.command(["disorder",
33                        "--config", disorder._configfile, "--no-per-user-config",
34                        "queue"])
35     tracks = filter(lambda s: re.match("^track", s), q)
36     assert len(tracks) == 10, "queue is at proper length"
37     print " disabling random play"
38     c.random_disable()
39     print " emptying queue"
40     for t in c.queue():
41         c.remove(t['id'])
42     print " checking queue is now empty"
43     q = c.queue()
44     assert q == [], "checking queue is empty"
45     print " enabling random play"
46     c.random_enable()
47     print " checking queue refills"
48     q = c.queue()
49     assert len(q) == 10, "queue is at proper length"
50     print " disabling all play"
51     c.random_disable()
52     c.disable()
53     print " emptying queue"
54     for t in c.queue():
55         c.remove(t['id'])
56     t1 = "%s/Joe Bloggs/Third Album/01:First_track.ogg" % dtest.tracks
57     t2 = "%s/Joe Bloggs/Third Album/02:Second_track.ogg" % dtest.tracks
58     t3 = "%s/Joe Bloggs/Third Album/02:Second_track.ogg" % dtest.tracks
59     print " adding tracks"
60     i1 = c.play(t1)
61     i2 = c.play(t2)
62     i3 = c.play(t3)
63     q = c.queue()
64     assert map(lambda e:e['id'], q) == [i1, i2, i3], "checking queue order(1)"
65     print " moving last track to start"
66     c.moveafter(None, [i3])
67     q = c.queue()
68     assert map(lambda e:e['id'], q) == [i3, i1, i2], "checking queue order(2)"
69     print " moving two tracks"
70     c.moveafter(i1, [i2, i3])
71     q = c.queue()
72     assert map(lambda e:e['id'], q) == [i1, i2 ,i3], "checking queue order(3)"
73     print " removing a track"
74     c.remove(i2)
75     q = c.queue()
76     assert map(lambda e:e['id'], q) == [i1 ,i3], "checking queue order(4)"
77
78 if __name__ == '__main__':
79     dtest.run()