borg/attic/testsuite/__init__.py

93 lines
3.1 KiB
Python
Raw Normal View History

2013-07-26 11:18:57 +00:00
import filecmp
import os
import sys
import time
2013-06-24 20:41:05 +00:00
import unittest
2013-07-26 11:18:57 +00:00
from attic import xattr
has_mtime_ns = sys.version >= '3.3'
utime_supports_fd = os.utime in getattr(os, 'supports_fd', {})
2013-06-24 20:41:05 +00:00
2013-07-08 21:38:27 +00:00
class AtticTestCase(unittest.TestCase):
2013-06-24 20:41:05 +00:00
"""
"""
assert_equal = unittest.TestCase.assertEqual
assert_not_equal = unittest.TestCase.assertNotEqual
assert_raises = unittest.TestCase.assertRaises
2013-07-26 11:18:57 +00:00
def _get_xattrs(self, path):
try:
return xattr.get_all(path)
except EnvironmentError:
return {}
def assert_dirs_equal(self, dir1, dir2, fuse=False):
diff = filecmp.dircmp(dir1, dir2)
self._assert_dirs_equal_cmp(diff, fuse)
def _assert_dirs_equal_cmp(self, diff, fuse=False):
self.assert_equal(diff.left_only, [])
self.assert_equal(diff.right_only, [])
self.assert_equal(diff.diff_files, [])
self.assert_equal(diff.funny_files, [])
for filename in diff.common:
path1 = os.path.join(diff.left, filename)
path2 = os.path.join(diff.right, filename)
s1 = os.lstat(path1)
s2 = os.lstat(path2)
attrs = ['st_mode', 'st_uid', 'st_gid', 'st_rdev']
if not fuse or not os.path.isdir(path1):
# dir nlink is always 1 on our fuse fileystem
attrs.append('st_nlink')
if not os.path.islink(path1) or utime_supports_fd:
# Fuse api is does not support ns precision
attrs.append('st_mtime_ns' if has_mtime_ns and not fuse else 'st_mtime')
d1 = [filename] + [getattr(s1, a) for a in attrs]
d2 = [filename] + [getattr(s2, a) for a in attrs]
# 'st_mtime precision is limited'
if attrs[-1] == 'st_mtime':
d1[-1] = round(d1[-1], 2)
d2[-1] = round(d2[-1], 2)
d1.append(self._get_xattrs(path1))
d2.append(self._get_xattrs(path2))
self.assert_equal(d1, d2)
for sub_diff in diff.subdirs.values():
self._assert_dirs_equal_cmp(sub_diff, fuse)
def wait_for_mount(self, path, timeout=5):
"""Wait until a filesystem is mounted on `path`
"""
timeout += time.time()
while timeout > time.time():
2013-07-26 11:23:33 +00:00
if os.path.ismount(path):
2013-07-26 11:18:57 +00:00
return
time.sleep(.1)
raise Exception('wait_for_mount(%s) timeout' % path)
2013-06-24 20:41:05 +00:00
def get_tests(suite):
"""Generates a sequence of tests from a test suite
"""
for item in suite:
try:
# TODO: This could be "yield from..." with Python 3.3+
for i in get_tests(item):
yield i
except TypeError:
yield item
class TestLoader(unittest.TestLoader):
"""A customzied test loader that properly detects and filters our test cases
"""
def loadTestsFromName(self, pattern, module=None):
2013-07-08 21:38:27 +00:00
suite = self.discover('attic.testsuite', '*.py')
2013-06-24 20:41:05 +00:00
tests = unittest.TestSuite()
for test in get_tests(suite):
if pattern.lower() in test.id().lower():
tests.addTest(test)
return tests