generic/405: test mkfs against thin provision device
[xfstests-dev.git] / tests / generic / 337
1 #! /bin/bash
2 # FSQA Test No. 337
3 #
4 # Test that the filesystem's implementation of the listxattrs system call lists
5 # all the xattrs an inode has.
6 #
7 #-----------------------------------------------------------------------
8 #
9 # Copyright (C) 2016 SUSE Linux Products GmbH. All Rights Reserved.
10 # Author: Filipe Manana <fdmanana@suse.com>
11 #
12 # This program is free software; you can redistribute it and/or
13 # modify it under the terms of the GNU General Public License as
14 # published by the Free Software Foundation.
15 #
16 # This program is distributed in the hope that it would be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19 # GNU General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with this program; if not, write the Free Software Foundation,
23 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
24 #-----------------------------------------------------------------------
25 #
26
27 seq=`basename $0`
28 seqres=$RESULT_DIR/$seq
29 echo "QA output created by $seq"
30 tmp=/tmp/$$
31 status=1        # failure is the default!
32 trap "_cleanup; exit \$status" 0 1 2 3 15
33
34 _cleanup()
35 {
36         cd /
37         rm -f $tmp.*
38 }
39
40 # get standard environment, filters and checks
41 . ./common/rc
42 . ./common/filter
43 . ./common/attr
44
45 # real QA test starts here
46 _supported_fs generic
47 _supported_os Linux
48 _require_scratch
49 _require_attrs
50
51 rm -f $seqres.full
52
53 _scratch_mkfs >>$seqres.full 2>&1
54 _scratch_mount
55
56 # Create our test file with a few xattrs. The first 3 xattrs have a name that
57 # when given as input to a crc32c function result in the same checksum. This
58 # made btrfs list only one of the xattrs through listxattrs system call (because
59 # it packs xattrs with the same name checksum into the same btree item).
60 touch $SCRATCH_MNT/testfile
61 $SETFATTR_PROG -n user.foobar -v 123 $SCRATCH_MNT/testfile
62 $SETFATTR_PROG -n user.WvG1c1Td -v qwerty $SCRATCH_MNT/testfile
63 $SETFATTR_PROG -n user.J3__T_Km3dVsW_ -v hello $SCRATCH_MNT/testfile
64 $SETFATTR_PROG -n user.something -v pizza $SCRATCH_MNT/testfile
65 $SETFATTR_PROG -n user.ping -v pong $SCRATCH_MNT/testfile
66
67 # Now call getfattr with --dump, which calls the listxattrs system call.
68 # It should list all the xattrs we have set before.
69 $GETFATTR_PROG --absolute-names --dump $SCRATCH_MNT/testfile | _filter_scratch
70
71 status=0
72 exit