X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/094c9628eed32ebd425382398126d337f83f3bcb..d9f8f46ccd5a418dcf7b5f43aeb59cd2d9d424ba:/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 37e0d51cc9..f3c020c9a4 100644 --- a/services/fuse/tests/mount_test_base.py +++ b/services/fuse/tests/mount_test_base.py @@ -1,8 +1,6 @@ import arvados import arvados.safeapi import arvados_fuse as fuse -import glob -import json import llfuse import os import shutil @@ -19,7 +17,7 @@ import run_test_server logger = logging.getLogger('arvados.arv-mount') class MountTestBase(unittest.TestCase): - def setUp(self): + def setUp(self, api=None): # The underlying C implementation of open() makes a fstat() syscall # with the GIL still held. When the GETATTR message comes back to # llfuse (which in these tests is in the same interpreter process) it @@ -34,10 +32,13 @@ class MountTestBase(unittest.TestCase): self.mounttmp = tempfile.mkdtemp() run_test_server.run() run_test_server.authorize_with("admin") - self.api = arvados.safeapi.ThreadSafeApiCache(arvados.config.settings()) + self.api = api if api else arvados.safeapi.ThreadSafeApiCache(arvados.config.settings()) def make_mount(self, root_class, **root_kwargs): - self.operations = fuse.Operations(os.getuid(), os.getgid(), enable_write=True) + self.operations = fuse.Operations( + os.getuid(), os.getgid(), + api_client=self.api, + enable_write=True) self.operations.inodes.add_entry(root_class( llfuse.ROOT_INODE, self.operations.inodes, self.api, 0, **root_kwargs)) llfuse.init(self.operations, self.mounttmp, []) @@ -65,6 +66,7 @@ class MountTestBase(unittest.TestCase): os.rmdir(self.mounttmp) shutil.rmtree(self.keeptmp) + os.environ.pop('KEEP_LOCAL_STORE') run_test_server.reset() def assertDirContents(self, subdir, expect_content):