chiark / gitweb /
Merge config aliasing bug fix.
[disorder] / tests / files.py
CommitLineData
abf54aca 1#! /usr/bin/env python
fbcfb257
RK
2#
3# This file is part of DisOrder.
d8055dc4 4# Copyright (C) 2007, 2008 Richard Kettlewell
fbcfb257 5#
e7eb3a27 6# This program is free software: you can redistribute it and/or modify
fbcfb257 7# it under the terms of the GNU General Public License as published by
e7eb3a27 8# the Free Software Foundation, either version 3 of the License, or
fbcfb257
RK
9# (at your option) any later version.
10#
e7eb3a27
RK
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
fbcfb257 16# You should have received a copy of the GNU General Public License
e7eb3a27 17# along with this program. If not, see <http://www.gnu.org/licenses/>.
fbcfb257 18#
121e3654
RK
19import dtest,time,disorder,sys
20
21def test():
1c8f3db8
RK
22 """Check that the file listing comes out right"""
23 dtest.start_daemon()
f0feb22e 24 dtest.create_user()
d8055dc4 25 dtest.rescan()
213b4064 26 assert dtest.check_files() == 0, "dtest.check_files"
be603af9
RK
27 print " checking regexp file listing"
28 c = disorder.client()
29 f = c.files("%s/Joe Bloggs/First Album" % dtest.tracks,
30 "second")
31 assert len(f) == 1, "checking for one match"
32 assert f[0] == "%s/Joe Bloggs/First Album/02:Second track.ogg" % dtest.tracks
af371dd1
RK
33 print " and again to exercise cache"
34 f = c.files("%s/Joe Bloggs/First Album" % dtest.tracks,
35 "second")
36 assert len(f) == 1, "checking for one match"
37 assert f[0] == "%s/Joe Bloggs/First Album/02:Second track.ogg" % dtest.tracks
be603af9
RK
38 print " checking unicode regexp file listing"
39 f = c.files("%s/Joe Bloggs/First Album" % dtest.tracks,
40 "first")
41 assert len(f) == 0, "checking for 0 matches"
af371dd1
RK
42 print " and again to exercise cache"
43 f = c.files("%s/Joe Bloggs/First Album" % dtest.tracks,
44 "first")
45 assert len(f) == 0, "checking for 0 matches"
be603af9
RK
46 # This is rather unsatisfactory but it is the current behavior. We could
47 # for instance go to NFD for regexp matching but we'd have to do the same
48 # to the regexp, including replacing single characters with (possibly
49 # bracketed) decomposed forms. Really the answer has to be a more
50 # Unicode-aware regexp library.
51 f = c.files("%s/Joe Bloggs/First Album" % dtest.tracks,
52 "fi\\p{Mn}*rst")
53 assert len(f) == 0, "checking for 0 matches"
121e3654
RK
54
55if __name__ == '__main__':
0db97c0d 56 dtest.run()