generic: test for non-zero used blocks while writing into a file
[xfstests-dev.git] / tests / generic / 526
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (C) 2018 SUSE Linux Products GmbH. All Rights Reserved.
4 #
5 # FS QA Test No. 526
6 #
7 # Test that after a combination of file renames, linking and creating a new file
8 # with the old name of a renamed file, if we fsync the new file, after a power
9 # failure we are able to mount the filesystem and all file names correspond to
10 # the correct inodes.
11 #
12 seq=`basename $0`
13 seqres=$RESULT_DIR/$seq
14 echo "QA output created by $seq"
15 tmp=/tmp/$$
16 status=1        # failure is the default!
17 trap "_cleanup; exit \$status" 0 1 2 3 15
18
19 _cleanup()
20 {
21         _cleanup_flakey
22         cd /
23         rm -f $tmp.*
24 }
25
26 # get standard environment, filters and checks
27 . ./common/rc
28 . ./common/filter
29 . ./common/dmflakey
30
31 # real QA test starts here
32 _supported_fs generic
33 _require_scratch
34 _require_hardlinks
35 _require_dm_target flakey
36
37 rm -f $seqres.full
38
39 _scratch_mkfs >>$seqres.full 2>&1
40 _require_metadata_journaling $SCRATCH_DEV
41 _init_flakey
42 _mount_flakey
43
44 mkdir $SCRATCH_MNT/testdir
45 echo -n "foo" > $SCRATCH_MNT/testdir/fname1
46 echo -n "hello" > $SCRATCH_MNT/testdir/fname2
47
48 # Make sure everything done so far is durably persisted.
49 sync
50
51 # Rename and link files such that one new name corresponds to the name of
52 # another renamed file and one new file has the old name of one of the renamed
53 # files. Then fsync only the new file.
54 mv $SCRATCH_MNT/testdir/fname1 $SCRATCH_MNT/testdir/fname3
55 mv $SCRATCH_MNT/testdir/fname2 $SCRATCH_MNT/testdir/fname4
56 ln $SCRATCH_MNT/testdir/fname3 $SCRATCH_MNT/testdir/fname2
57 echo -n "bar" > $SCRATCH_MNT/testdir/fname1
58 $XFS_IO_PROG -c "fsync" $SCRATCH_MNT/testdir/fname1
59
60 # Simulate a power failure and mount the filesystem to check that all file names
61 # exist and correspond to the correct inodes.
62 _flakey_drop_and_remount
63
64 echo "File fname1 data after power failure: $(cat $SCRATCH_MNT/testdir/fname1)"
65 echo "File fname2 data after power failure: $(cat $SCRATCH_MNT/testdir/fname2)"
66 echo "File fname3 data after power failure: $(cat $SCRATCH_MNT/testdir/fname3)"
67 echo "File fname4 data after power failure: $(cat $SCRATCH_MNT/testdir/fname4)"
68
69 _unmount_flakey
70
71 status=0
72 exit