Files
third_party_toybox/tests/setfattr.test
T
gong-guilin 2095d741a5 modify public
Signed-off-by: gong-guilin <gongguilin@h-partners.com>
2026-01-28 17:41:21 +08:00

29 lines
921 B
Bash

#!/bin/bash
[ -f testing.sh ] && . testing.sh
#testing "name" "command" "result" "infile" "stdin"
function clean()
{
# The filesystem may include some extended attributes by default (for
# instance, security.selinux). Skip them.
grep -v "security\."
}
mkdir attrs
touch attrs/file
setfattr -n user.empty attrs/file
setfattr -n user.data -v hello attrs/file
setfattr -n user.delete-me -v hello attrs/file
testing "-x" \
"setfattr -x user.delete-me attrs/file && getfattr attrs/file | clean" \
"# file: attrs/file\nuser.data\nuser.empty\n\n" "" ""
testing "-n" "setfattr -n user.new attrs/file && getfattr -d attrs/file | clean" \
"# file: attrs/file\nuser.data=\"hello\"\nuser.empty\nuser.new\n\n" "" ""
testing "-n -v" "setfattr -n user.new -v data attrs/file && getfattr -d attrs/file | clean" \
"# file: attrs/file\nuser.data=\"hello\"\nuser.empty\nuser.new=\"data\"\n\n" "" ""
rm -rf attrs