Commit | Line | Data |
---|---|---|
abf54aca | 1 | #! /usr/bin/env python |
f5eb2aff RK |
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 | # | |
05438e89 | 21 | import dtest,time,disorder,re,sys |
f5eb2aff RK |
22 | |
23 | def test(): | |
24 | """Play some tracks""" | |
25 | dtest.start_daemon() | |
f0feb22e | 26 | dtest.create_user() |
56613a97 | 27 | dtest.rescan() # ensure all files are scanned |
f5eb2aff | 28 | c = disorder.client() |
2b2a5fed RK |
29 | c.random_disable() |
30 | assert c.random_enabled() == False | |
f5eb2aff | 31 | track = u"%s/Joe Bloggs/First Album/02:Second track.ogg" % dtest.tracks |
f0feb22e | 32 | print " adding track to queue" |
db86b8ed | 33 | c.disable() |
2b2a5fed | 34 | assert c.enabled() == False |
f5eb2aff | 35 | c.play(track) |
81e440ce | 36 | print " checking track turned up in queue" |
f5eb2aff RK |
37 | q = c.queue() |
38 | ts = filter(lambda t: t['track'] == track and 'submitter' in t, q) | |
6ce6b5a9 | 39 | assert len(ts) == 1, "checking track appears exactly once in queue" |
f5eb2aff RK |
40 | t = ts[0] |
41 | assert t['submitter'] == u'fred', "check queue submitter" | |
42 | i = t['id'] | |
81e440ce | 43 | print " waiting for track" |
db86b8ed | 44 | c.enable() |
2b2a5fed | 45 | assert c.enabled() == True |
f5eb2aff | 46 | p = c.playing() |
546c7978 | 47 | r = c.recent() |
bf219db9 | 48 | limit = 60 |
546c7978 | 49 | while not((p is not None and p['id'] == i) |
bf219db9 | 50 | or (len(filter(lambda t: t['track'] == track |
51 | and 'submitter' in t, r)) > 0)) and limit > 0: | |
f5eb2aff RK |
52 | time.sleep(1) |
53 | p = c.playing() | |
546c7978 | 54 | r = c.recent() |
bf219db9 | 55 | limit -= 1 |
56 | assert limit > 0, "check track did complete in a reasonable time" | |
81e440ce | 57 | print " checking track turned up in recent list" |
6ce6b5a9 RK |
58 | while (p is not None and p['id'] == i): |
59 | time.sleep(1) | |
60 | p = c.playing() | |
61 | r = c.recent() | |
62 | ts = filter(lambda t: t['track'] == track and 'submitter' in t, r) | |
63 | assert len(ts) == 1, "check track appears exactly once in recent" | |
f5eb2aff RK |
64 | t = ts[0] |
65 | assert t['submitter'] == u'fred', "check recent entry submitter" | |
2b2a5fed RK |
66 | |
67 | print " testing scratches" | |
68 | retry = False | |
05438e89 RK |
69 | scratchlimit = 5 |
70 | while scratchlimit > 0: | |
71 | scratchlimit -= 1 | |
2b2a5fed RK |
72 | c.disable() |
73 | print " starting a track" | |
74 | c.play(track) | |
75 | c.enable() | |
81e440ce | 76 | p = c.playing() |
2b2a5fed RK |
77 | if p is None: |
78 | print " track played too quickly, trying again..." | |
79 | continue | |
80 | print " scratching track" | |
81 | i = p['id'] | |
82 | c.scratch(i) | |
83 | print " waiting for track to finish" | |
84 | p = c.playing() | |
bf219db9 | 85 | limit = 60 |
86 | while (p is not None and p['id'] == i) and limit > 0: | |
2b2a5fed RK |
87 | time.sleep(1) |
88 | p = c.playing() | |
bf219db9 | 89 | limit -= 1 |
90 | assert limit > 0, "check track finishes in a reasonable period" | |
2b2a5fed RK |
91 | print " checking scratched track turned up in recent list" |
92 | r = c.recent() | |
93 | ts = filter(lambda t: t['id'] == i, r) | |
94 | assert len(ts) == 1, "check scratched track appears exactly once in recent" | |
95 | if ts[0]['state'] == 'ok': | |
96 | print " track played too quickly, trying again..." | |
97 | continue | |
98 | assert ts[0]['state'] == 'scratched', "checking track scratched" | |
99 | break | |
05438e89 RK |
100 | if scratchlimit == 0: |
101 | # TODO this is really not a great approach! | |
102 | print " didn't complete in a reasonable time" | |
103 | sys.exit(77) | |
be603af9 | 104 | print " waiting for scratch to complete" |
2b2a5fed RK |
105 | p = c.recent() |
106 | while p is not None: | |
be603af9 RK |
107 | time.sleep(1) |
108 | p = c.playing() | |
109 | assert p is None, "checking nothing is playing" | |
af371dd1 | 110 | assert c.enabled() == True |
af371dd1 RK |
111 | c.random_enable() |
112 | assert c.random_enabled() == True | |
f5eb2aff RK |
113 | |
114 | if __name__ == '__main__': | |
115 | dtest.run() |