Add unit tests for setxattr() et al
authorNikolaus Rath <Nikolaus@rath.org>
Sat, 1 Apr 2023 15:45:46 +0000 (16:45 +0100)
committerNikolaus Rath <Nikolaus@rath.org>
Sat, 1 Apr 2023 15:49:01 +0000 (16:49 +0100)
Hopefully, this will catch issues as in commit 024eccbf3

example/hello_ll.c
test/test_examples.py

index 1db5eff8f00099a798fefecf7fc312dd9ac91411..96afd0f4f3c13a14cb9ceb7a22200962c9335ed7 100644 (file)
@@ -153,12 +153,61 @@ static void hello_ll_read(fuse_req_t req, fuse_ino_t ino, size_t size,
        reply_buf_limited(req, hello_str, strlen(hello_str), off, size);
 }
 
+static void hello_ll_getxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
+                                                         size_t size)
+{
+       (void)size;
+       assert(ino == 2);
+       if (strcmp(name, "hello_ll_getxattr_name") == 0)
+       {
+               char *buf = "hello_ll_getxattr_value";
+               fuse_reply_buf(req, buf, strlen(buf));
+       }
+       else
+       {
+               fuse_reply_err(req, ENOTSUP);
+       }
+}
+
+static void hello_ll_setxattr(fuse_req_t req, fuse_ino_t ino, const char *name,
+                                                         const char *value, size_t size, int flags)
+{
+       (void)flags;
+       (void)size;
+       assert(ino == 2);
+       if (strcmp(name, "hello_ll_setxattr_name") == 0 &&
+               strcmp(value, "hello_ll_setxattr_value") == 0)
+       {
+               fuse_reply_err(req, 0);
+       }
+       else
+       {
+               fuse_reply_err(req, ENOTSUP);
+       }
+}
+
+static void hello_ll_removexattr(fuse_req_t req, fuse_ino_t ino, const char *name)
+{
+       assert(ino == 2);
+       if (strcmp(name, "hello_ll_removexattr_name") == 0)
+       {
+               fuse_reply_err(req, 0);
+       }
+       else
+       {
+               fuse_reply_err(req, ENOTSUP);
+       }
+}
+
 static const struct fuse_lowlevel_ops hello_ll_oper = {
-       .lookup         = hello_ll_lookup,
-       .getattr        = hello_ll_getattr,
-       .readdir        = hello_ll_readdir,
-       .open           = hello_ll_open,
-       .read           = hello_ll_read,
+       .lookup = hello_ll_lookup,
+       .getattr = hello_ll_getattr,
+       .readdir = hello_ll_readdir,
+       .open = hello_ll_open,
+       .read = hello_ll_read,
+       .setxattr = hello_ll_setxattr,
+       .getxattr = hello_ll_getxattr,
+       .removexattr = hello_ll_removexattr,
 };
 
 int main(int argc, char *argv[])
index c63ac1124a43fc95aea6f697a2eb2a4e92d63751..7df9ba495e07a403e7ae81347681b3d788c08954 100755 (executable)
@@ -104,6 +104,8 @@ def test_hello(tmpdir, name, options, cmdline_builder, output_checker):
         with pytest.raises(IOError) as exc_info:
             open(filename + 'does-not-exist', 'r+')
         assert exc_info.value.errno == errno.ENOENT
+        if name == 'hello_ll':
+            tst_xattr(mnt_dir)
     except:
         cleanup(mount_process, mnt_dir)
         raise
@@ -760,7 +762,13 @@ def tst_passthrough(src_dir, mnt_dir):
     assert name in os.listdir(mnt_dir)
     assert os.stat(src_name) == os.stat(mnt_name)
 
-# avoid warning about unused import
-test_printcap
 
-    
+def tst_xattr(mnt_dir):
+    path = os.path.join(mnt_dir, 'hello')
+    os.setxattr(path, b'hello_ll_setxattr_name', b'hello_ll_setxattr_value')
+    assert os.getxattr(path, b'hello_ll_getxattr_name') == b'hello_ll_getxattr_value'
+    os.removexattr(path, b'hello_ll_removexattr_name')
+
+
+# avoid warning about unused import
+assert test_printcap