root / test / ganeti.tools.ensure_dirs_unittest.py @ b81b3c96
History | View | Annotate | Download (1.8 kB)
1 |
#!/usr/bin/python
|
---|---|
2 |
#
|
3 |
|
4 |
# Copyright (C) 2011 Google Inc.
|
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., 51 Franklin Street, Fifth Floor, Boston, MA
|
19 |
# 02110-1301, USA.
|
20 |
|
21 |
|
22 |
"""Script for testing ganeti.tools.ensure_dirs"""
|
23 |
|
24 |
import unittest |
25 |
import os.path |
26 |
|
27 |
from ganeti.tools import ensure_dirs |
28 |
|
29 |
import testutils |
30 |
|
31 |
|
32 |
class TestEnsureDirsFunctions(unittest.TestCase): |
33 |
def testPaths(self): |
34 |
paths = [(path[0], path[1]) for path in ensure_dirs.GetPaths()] |
35 |
|
36 |
seen = [] |
37 |
last_dirname = ""
|
38 |
for path, pathtype in paths: |
39 |
self.assertTrue(pathtype in ensure_dirs.ALL_TYPES) |
40 |
dirname = os.path.dirname(path) |
41 |
if dirname != last_dirname or pathtype == ensure_dirs.DIR: |
42 |
if pathtype == ensure_dirs.FILE:
|
43 |
self.assertFalse(dirname in seen, |
44 |
msg="path %s; dirname %s seen in %s" % (path,
|
45 |
dirname, |
46 |
seen)) |
47 |
last_dirname = dirname |
48 |
seen.append(dirname) |
49 |
elif pathtype == ensure_dirs.DIR:
|
50 |
self.assertFalse(path in seen) |
51 |
last_dirname = path |
52 |
seen.append(path) |
53 |
|
54 |
|
55 |
if __name__ == "__main__": |
56 |
testutils.GanetiTestProgram() |