X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/28aa75d2683d5f0472335ecef3b2ff505e72f30d..ff31ac17e296f6a35e1d96f31af8061f7102c797:/services/fuse/tests/mount_test_base.py diff --git a/services/fuse/tests/mount_test_base.py b/services/fuse/tests/mount_test_base.py index 9768aeb74d..d69cdf1c1a 100644 --- a/services/fuse/tests/mount_test_base.py +++ b/services/fuse/tests/mount_test_base.py @@ -26,16 +26,20 @@ from .integration_test import workerPool logger = logging.getLogger('arvados.arv-mount') -def make_block_cache(disk_cache): - if disk_cache: - disk_cache_dir = os.path.join(os.path.expanduser("~"), ".cache", "arvados", "keep") - shutil.rmtree(disk_cache_dir, ignore_errors=True) - block_cache = arvados.keep.KeepBlockCache(disk_cache=disk_cache) - return block_cache - class MountTestBase(unittest.TestCase): disk_cache = False + @classmethod + def setUpClass(cls): + if cls.disk_cache: + cls._disk_cache_dir = tempfile.mkdtemp(prefix='MountTest-') + else: + cls._disk_cache_dir = None + cls._keep_block_cache = arvados.keep.KeepBlockCache( + disk_cache=cls.disk_cache, + disk_cache_dir=cls._disk_cache_dir, + ) + def setUp(self, api=None, local_store=True): # The underlying C implementation of open() makes a fstat() syscall # with the GIL still held. When the GETATTR message comes back to @@ -57,11 +61,16 @@ class MountTestBase(unittest.TestCase): self.api = api if api else arvados.safeapi.ThreadSafeApiCache( arvados.config.settings(), - keep_params={"block_cache": make_block_cache(self.disk_cache)}, + keep_params={"block_cache": self._keep_block_cache}, version='v1', ) self.llfuse_thread = None + @classmethod + def tearDownClass(cls): + if cls._disk_cache_dir: + shutil.rmtree(cls._disk_cache_dir) + # This is a copy of Mount's method. TODO: Refactor MountTestBase # to use a Mount instead of copying its code. def _llfuse_main(self):