~ubuntu-branches/ubuntu/natty/remuco/natty

« back to all changes in this revision

Viewing changes to base/module/test/testfiles.py

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-08-18 23:06:11 UTC
  • Revision ID: james.westby@ubuntu.com-20090818230611-4z6ind4y4yxfa2z2
Tags: upstream-0.9.1.1
ImportĀ upstreamĀ versionĀ 0.9.1.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# =============================================================================
 
2
#
 
3
#    Remuco - A remote control system for media players.
 
4
#    Copyright (C) 2006-2009 Oben Sonne <obensonne@googlemail.com>
 
5
#
 
6
#    This file is part of Remuco.
 
7
#
 
8
#    Remuco is free software: you can redistribute it and/or modify
 
9
#    it under the terms of the GNU General Public License as published by
 
10
#    the Free Software Foundation, either version 3 of the License, or
 
11
#    (at your option) any later version.
 
12
#
 
13
#    Remuco is distributed in the hope that it will be useful,
 
14
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
#    GNU General Public License for more details.
 
17
#
 
18
#    You should have received a copy of the GNU General Public License
 
19
#    along with Remuco.  If not, see <http://www.gnu.org/licenses/>.
 
20
#
 
21
# =============================================================================
 
22
 
 
23
import unittest
 
24
 
 
25
from remuco.files import FileSystemLibrary
 
26
 
 
27
 
 
28
class FilesTest(unittest.TestCase):
 
29
 
 
30
 
 
31
    def setUp(self):
 
32
        pass
 
33
 
 
34
 
 
35
    def tearDown(self):
 
36
        pass
 
37
 
 
38
 
 
39
    def __test_path(self, fs, path, depth, limit):
 
40
 
 
41
        nested, ids, names = fs.get_level(path)
 
42
        
 
43
        #print("%spath   : %s" % (depth, path))
 
44
        #if nested:
 
45
        #    print("%snested : %s" % (depth, nested))
 
46
        #if ids:
 
47
        #    print("%sids    : %s" % (depth, ids))
 
48
        #if names:
 
49
        #    print("%snames  : %s" % (depth, names))
 
50
        
 
51
        if len(depth) == limit * 2:
 
52
            return
 
53
        
 
54
        if path is None:
 
55
            path = []
 
56
            
 
57
        for sub in nested:
 
58
            self.__test_path(fs, path + [sub], depth + "  ", limit)
 
59
        
 
60
    def test_files(self):
 
61
        
 
62
        #print("")
 
63
        
 
64
        fs = FileSystemLibrary(None, ["audio","video"], False, False, True)
 
65
        
 
66
        self.__test_path(fs, None, "", limit=0)
 
67
        self.__test_path(fs, [], "", limit=2)
 
68
        
 
69
        fs = FileSystemLibrary([ "/home", "/nonexistent" ],
 
70
            ["audio/mp3", "video/mp4", "application/x-iso9660-image"],
 
71
            True, False, True)
 
72
        
 
73
        self.__test_path(fs, [], "", limit=3)
 
74
        
 
75
if __name__ == "__main__":
 
76
    
 
77
    unittest.main()
 
 
b'\\ No newline at end of file'