btrfs/012: check free size of scratch device before copying files
[xfstests-dev.git] / tests / xfs / 330
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2016, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 330
6 #
7 # Ensure that xfs_fsr handles quota correctly while defragging files.
8 #
9 seq=`basename "$0"`
10 seqres="$RESULT_DIR/$seq"
11 echo "QA output created by $seq"
12
13 here=`pwd`
14 tmp=/tmp/$$
15 status=1    # failure is the default!
16 trap "_cleanup; exit \$status" 0 1 2 3 15
17
18 _cleanup()
19 {
20         cd /
21         rm -rf "$tmp".*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27 . ./common/attr
28 . ./common/reflink
29 . ./common/quota
30
31 # real QA test starts here
32 _supported_fs xfs
33 _require_scratch_reflink
34 _require_cp_reflink
35 _require_xfs_io_command "falloc" # used in FSR
36 _require_command "$XFS_FSR_PROG" "xfs_fsr"
37 _require_quota
38 _require_nobody
39
40 do_repquota()
41 {
42         repquota $SCRATCH_MNT | egrep '^(fsgqa|root|nobody)' | sort -r
43 }
44
45 rm -f "$seqres.full"
46
47 echo "Format and mount"
48 _scratch_mkfs > "$seqres.full" 2>&1
49 export MOUNT_OPTIONS="-o usrquota,grpquota $MOUNT_OPTIONS"
50 _scratch_mount >> "$seqres.full" 2>&1
51 quotacheck -u -g $SCRATCH_MNT 2> /dev/null
52 quotaon $SCRATCH_MNT 2> /dev/null
53
54 testdir="$SCRATCH_MNT/test-$seq"
55 blksz=65536
56 blks=3
57 mkdir "$testdir"
58
59 echo "Create a many-block file"
60 touch $testdir/file1
61 chown nobody $testdir/file1
62 touch $testdir/file2
63 chown nobody $testdir/file2
64 _pwrite_byte 0x62 0 $((blksz * blks)) $testdir/file1 >> $seqres.full
65 _pwrite_byte 0x63 0 $blksz $testdir/file2 >> $seqres.full
66 _reflink_range $testdir/file2 0 $testdir/file1 $blksz $blksz >> $seqres.full
67 do_repquota
68 _scratch_cycle_mount
69
70 echo "Defrag the file"
71 old_nextents=$(_count_extents $testdir/file1)
72 $XFS_FSR_PROG -v -d $testdir/file1 >> $seqres.full
73 new_nextents=$(_count_extents $testdir/file1)
74 do_repquota
75
76 echo "Remount the FS to see if accounting changes"
77 _scratch_cycle_mount
78 do_repquota
79
80 echo "Check extent count"
81 $XFS_IO_PROG -c 'stat -v' $testdir/file1 >> $seqres.full
82 $XFS_IO_PROG -c 'stat -v' $testdir/file2 >> $seqres.full
83 echo "extents: $old_nextents -> $new_nextents" >> $seqres.full
84 test $old_nextents -gt $new_nextents || echo "FAIL: $old_nextents -> $new_nextents"
85
86 # success, all done
87 status=0
88 exit