aboutsummaryrefslogtreecommitdiff
path: root/tests/getfattr.test
blob: cb0f9475353952816f7c2ba512de0aa96c798e3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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