aboutsummaryrefslogtreecommitdiff
path: root/tests/getfattr.test
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2016-07-17 10:42:31 -0700
committerRob Landley <rob@landley.net>2016-07-18 14:14:22 -0500
commitbd471f67cc6eff4abf47f027edbace707065bc6b (patch)
tree2c7e2c3edcca3a588b650d33c115d9335c09b163 /tests/getfattr.test
parent48ea55969907286d1a125fcd655be9d8307a3449 (diff)
downloadtoybox-bd471f67cc6eff4abf47f027edbace707065bc6b.tar.gz
Add getfattr(1) and setfattr(1).
Plus basic tests.
Diffstat (limited to 'tests/getfattr.test')
-rwxr-xr-xtests/getfattr.test21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/getfattr.test b/tests/getfattr.test
new file mode 100755
index 00000000..cb0f9475
--- /dev/null
+++ b/tests/getfattr.test
@@ -0,0 +1,21 @@
+#!/bin/bash
+
+[ -f testing.sh ] && . testing.sh
+
+#testing "name" "command" "result" "infile" "stdin"
+
+mkdir attrs
+touch attrs/file
+setfattr -n user.empty attrs/file
+setfattr -n user.data -v hello attrs/file
+
+testing "" "getfattr attrs/file" \
+ "# file: attrs/file\nuser.data\nuser.empty\n\n" "" ""
+testing "-d" "getfattr -d attrs/file" \
+ "# file: attrs/file\nuser.data=\"hello\"\nuser.empty\n\n" "" ""
+testing "-n" "getfattr -n user.empty attrs/file" \
+ "# file: attrs/file\nuser.empty\n\n" "" ""
+testing "-d -n" "getfattr -d -n user.data attrs/file" \
+ "# file: attrs/file\nuser.data=\"hello\"\n\n" "" ""
+
+rm -rf attrs