1 # Copyright (C) The Arvados Authors. All rights reserved.
3 # SPDX-License-Identifier: AGPL-3.0
5 from __future__ import absolute_import
8 import arvados_fuse as fuse
12 import multiprocessing
14 from . import run_test_server
24 logger = logging.getLogger('arvados.arv-mount')
26 from .integration_test import workerPool
28 def make_block_cache(disk_cache):
30 disk_cache_dir = os.path.join(os.path.expanduser("~"), ".cache", "arvados", "keep")
31 shutil.rmtree(disk_cache_dir, ignore_errors=True)
32 block_cache = arvados.keep.KeepBlockCache(disk_cache=disk_cache)
35 class MountTestBase(unittest.TestCase):
38 def setUp(self, api=None, local_store=True):
39 # The underlying C implementation of open() makes a fstat() syscall
40 # with the GIL still held. When the GETATTR message comes back to
41 # llfuse (which in these tests is in the same interpreter process) it
42 # can't acquire the GIL, so it can't service the fstat() call, so it
43 # deadlocks. The workaround is to run some of our test code in a
44 # separate process. Forturnately the multiprocessing module makes this
47 self.pool = workerPool()
49 self.keeptmp = tempfile.mkdtemp()
50 os.environ['KEEP_LOCAL_STORE'] = self.keeptmp
53 self.mounttmp = tempfile.mkdtemp()
55 run_test_server.authorize_with("admin")
57 self.api = api if api else arvados.safeapi.ThreadSafeApiCache(arvados.config.settings(), keep_params={"block_cache": make_block_cache(self.disk_cache)})
58 self.llfuse_thread = None
60 # This is a copy of Mount's method. TODO: Refactor MountTestBase
61 # to use a Mount instead of copying its code.
62 def _llfuse_main(self):
66 llfuse.close(unmount=False)
70 def make_mount(self, root_class, **root_kwargs):
72 if 'enable_write' in root_kwargs:
73 enable_write = root_kwargs.pop('enable_write')
74 self.operations = fuse.Operations(
75 os.getuid(), os.getgid(),
77 enable_write=enable_write)
78 self.operations.inodes.add_entry(root_class(
79 llfuse.ROOT_INODE, self.operations.inodes, self.api, 0, enable_write, **root_kwargs))
80 llfuse.init(self.operations, self.mounttmp, [])
81 self.llfuse_thread = threading.Thread(None, lambda: self._llfuse_main())
82 self.llfuse_thread.daemon = True
83 self.llfuse_thread.start()
84 # wait until the driver is finished initializing
85 self.operations.initlock.wait()
86 return self.operations.inodes[llfuse.ROOT_INODE]
89 if self.llfuse_thread:
90 if self.operations.events:
91 self.operations.events.close(timeout=10)
92 subprocess.call(["fusermount", "-u", "-z", self.mounttmp])
94 self.llfuse_thread.join(timeout=10)
95 if self.llfuse_thread.is_alive():
96 logger.warning("MountTestBase.tearDown():"
97 " llfuse thread still alive 10s after umount"
98 " -- exiting with SIGKILL")
99 os.kill(os.getpid(), signal.SIGKILL)
100 waited = time.time() - t0
102 logger.warning("MountTestBase.tearDown(): waited %f s for llfuse thread to end", waited)
104 os.rmdir(self.mounttmp)
106 shutil.rmtree(self.keeptmp)
107 os.environ.pop('KEEP_LOCAL_STORE')
108 run_test_server.reset()
110 def assertDirContents(self, subdir, expect_content):
113 path = os.path.join(path, subdir)
114 self.assertEqual(sorted(expect_content), sorted(llfuse.listdir(str(path))))