tests: use freshly-build fusermount (instead of system version)
authorNikolaus Rath <Nikolaus@rath.org>
Thu, 13 Oct 2016 16:07:55 +0000 (09:07 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Thu, 13 Oct 2016 18:02:04 +0000 (11:02 -0700)
When running tests as non-root, make fusermount setuid root.

Makefile.am
test/test_examples.py
test/util.py

index 54aee13b261ed8886c561ee8368c584f6dba173c..25d88d00b6a5707b14d3c587f660b63fceac909c 100644 (file)
@@ -15,6 +15,19 @@ pkgconfig_DATA = fuse3.pc
 
 $(pkgconfig_DATA): config.status
 
+.PHONY: setuid_fusermount
+setuid_fusermount:
+       @echo "Attempting to use sudo to make util/fusermount setuid root"
+       @echo "If this fails, set permissions manually and re-run make test"
+       test $$(ls -n util/fusermount | awk 'NR==1 {print $$3}') -eq 0 || \
+           sudo chown root util/fusermount
+       test -u util/fusermount || \
+           sudo chmod u+s util/fusermount
+
+# If we are not root, util/fusermount needs to be setuid root
+# for tests to work.
+
+test_deps = $(shell [ "$${UID}" -eq 0 ] || echo setuid_fusermount)
 .PHONY: test
-test: all
+test: all $(test_deps)
        python3 -m pytest test/
index 9f620547cea7fa489dff3de64ab1953e70e091ff..a8064c374bb53bc3743017f54a96d571f9e421aa 100755 (executable)
@@ -17,10 +17,9 @@ import platform
 from distutils.version import LooseVersion
 from tempfile import NamedTemporaryFile
 from util import (wait_for_mount, umount, cleanup, base_cmdline,
-                  safe_sleep)
+                  safe_sleep, basename)
 from os.path import join as pjoin
 
-basename = pjoin(os.path.dirname(__file__), '..')
 TEST_FILE = __file__
 
 with open(TEST_FILE, 'rb') as fh:
index 2160f7012b0428701dc474e319a21d589dc1163c..baba20b5eed9a2c8003dcc9da01c2495e4747742 100644 (file)
@@ -3,6 +3,9 @@ import subprocess
 import pytest
 import os
 import time
+from os.path import join as pjoin
+
+basename = pjoin(os.path.dirname(__file__), '..')
 
 def wait_for_mount(mount_process, mnt_dir,
                    test_fn=os.path.ismount):
@@ -17,12 +20,24 @@ def wait_for_mount(mount_process, mnt_dir,
     pytest.fail("mountpoint failed to come up")
 
 def cleanup(mnt_dir):
-    subprocess.call(['fusermount', '-z', '-u', mnt_dir],
+    # Don't bother trying Valgrind if things already went wrong
+
+    subprocess.call([pjoin(basename, 'util', 'fusermount'),
+                     '-z', '-u', mnt_dir],
                     stdout=subprocess.DEVNULL,
                     stderr=subprocess.STDOUT)
 
 def umount(mount_process, mnt_dir):
-    subprocess.check_call(['fusermount', '-z', '-u', mnt_dir])
+    # fusermount will be setuid root, so we can only trace it with
+    # valgrind if we're root
+    if os.getuid() == 0:
+        cmdline = base_cmdline
+    else:
+        cmdline = []
+
+    cmdline = cmdline + [ pjoin(basename, 'util', 'fusermount'),
+                          '-z', '-u', mnt_dir ]
+    subprocess.check_call(cmdline)
     assert not os.path.ismount(mnt_dir)
 
     # Give mount process a little while to terminate. Popen.wait(timeout)
@@ -68,3 +83,7 @@ if has_program('valgrind') and has_program('libtool'):
                      'valgrind', '-q', '--' ]
 else:
     base_cmdline = []
+
+
+# Try to use local fusermount
+os.environ['PATH'] = '%s:%s' % (pjoin(basename, 'util'), os.environ['PATH'])