You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
887 B
27 lines
887 B
#!/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
|
|
setfattr -n user.more -v world attrs/file
|
|
|
|
testing "" "getfattr attrs/file" \
|
|
"# file: attrs/file\nuser.data\nuser.empty\nuser.more\n\n" "" ""
|
|
testing "-d" "getfattr -d attrs/file" \
|
|
"# file: attrs/file\nuser.data=\"hello\"\nuser.empty\nuser.more=\"world\"\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" "" ""
|
|
testing "--only-values" "getfattr --only-values attrs/file" \
|
|
"helloworld" "" ""
|
|
testing "--only-values -n" "getfattr --only-values -n user.data attrs/file" \
|
|
"hello" "" ""
|
|
|
|
rm -rf attrs
|