Added cuse unit test.
authorNikolaus Rath <Nikolaus@rath.org>
Mon, 10 Oct 2016 04:46:39 +0000 (21:46 -0700)
committerNikolaus Rath <Nikolaus@rath.org>
Mon, 10 Oct 2016 05:03:07 +0000 (22:03 -0700)
test/test_examples.py
test/util.py

index 048c2406b5d843950792fa08c347efe17c09dbd8..3052eb9bb90a883c38eb1d649de99136d4c3514d 100755 (executable)
@@ -211,6 +211,45 @@ def test_notify_inval_entry(tmpdir, notify):
     else:
         umount(mount_process, mnt_dir)
 
+
+@pytest.mark.skipif(os.getuid() != 0,
+                    reason='needs to run as root')
+def test_cuse(capfd):
+
+    # Valgrind warns about unknown ioctls, that's ok
+    capfd.register_output(r'^==([0-9]+).+unhandled ioctl.+\n'
+                          r'==\1== \s{3}.+\n'
+                          r'==\1== \s{3}.+$', count=0)
+
+    devname = 'cuse-test-%d' % os.getpid()
+    devpath = '/dev/%s' % devname
+    cmdline = base_cmdline + \
+              [ pjoin(basename, 'example', 'cuse'),
+                '-f', '--name=%s' % devname ]
+    mount_process = subprocess.Popen(cmdline)
+
+    cmdline = base_cmdline + \
+              [ pjoin(basename, 'example', 'cuse_client'),
+                devpath ]
+    try:
+        wait_for_mount(mount_process, devpath,
+                       test_fn=os.path.exists)
+        assert subprocess.check_output(cmdline + ['s']) == b'0\n'
+        data = b'some test data'
+        off = 5
+        proc = subprocess.Popen(cmdline + [ 'w', str(len(data)), str(off) ],
+                                stdin=subprocess.PIPE)
+        proc.stdin.write(data)
+        proc.stdin.close()
+        assert proc.wait(timeout=10) == 0
+        size = str(off + len(data)).encode() + b'\n'
+        assert subprocess.check_output(cmdline + ['s']) == size
+        out = subprocess.check_output(
+            cmdline + [ 'r', str(off + len(data) + 2), '0' ])
+        assert out == (b'\0' * off) + data
+    finally:
+        mount_process.terminate()
+
 def checked_unlink(filename, path, isdir=False):
     fullname = pjoin(path, filename)
     if isdir:
index 9c379f0a079af2bf255e77589427f179d553f563..2160f7012b0428701dc474e319a21d589dc1163c 100644 (file)
@@ -4,10 +4,11 @@ import pytest
 import os
 import time
 
-def wait_for_mount(mount_process, mnt_dir):
+def wait_for_mount(mount_process, mnt_dir,
+                   test_fn=os.path.ismount):
     elapsed = 0
     while elapsed < 30:
-        if os.path.ismount(mnt_dir):
+        if test_fn(mnt_dir):
             return True
         if mount_process.poll() is not None:
             pytest.fail('file system process terminated prematurely')