reflink: ensure that we can handle reflinking a lot of extents
[xfstests-dev.git] / tests / generic / 151
1 #! /bin/bash
2 # FS QA Test No. 151
3 #
4 # Ensure that deleting all copies of a file reflinked N times releases the blocks
5 #   - Record fs block usage (0)
6 #   - Create a file and some reflink copies
7 #   - Record fs block usage (1)
8 #   - Delete some copies of the file
9 #   - Record fs block usage (2)
10 #   - Delete all copies of the file
11 #   - Compare fs block usage to (2), (1), and (0)
12 #
13 #-----------------------------------------------------------------------
14 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
15 #
16 # This program is free software; you can redistribute it and/or
17 # modify it under the terms of the GNU General Public License as
18 # published by the Free Software Foundation.
19 #
20 # This program is distributed in the hope that it would be useful,
21 # but WITHOUT ANY WARRANTY; without even the implied warranty of
22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23 # GNU General Public License for more details.
24 #
25 # You should have received a copy of the GNU General Public License
26 # along with this program; if not, write the Free Software Foundation,
27 # Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
28 #-----------------------------------------------------------------------
29
30 seq=`basename $0`
31 seqres=$RESULT_DIR/$seq
32 echo "QA output created by $seq"
33
34 here=`pwd`
35 tmp=/tmp/$$
36 status=1    # failure is the default!
37 trap "_cleanup; exit \$status" 0 1 2 3 15
38
39 _cleanup()
40 {
41     cd /
42     rm -rf $tmp.* $testdir
43 }
44
45 # get standard environment, filters and checks
46 . ./common/rc
47 . ./common/filter
48 . ./common/reflink
49
50 # real QA test starts here
51 _supported_os Linux
52 _require_test_reflink
53 _require_cp_reflink
54
55 rm -f $seqres.full
56
57 testdir=$TEST_DIR/test-$seq
58 rm -rf $testdir
59 mkdir $testdir
60
61 echo "Create the original file blocks"
62 blksz="$(stat -f $testdir -c '%S')"
63 blks=2000
64 margin='15%'
65 sz=$((blksz * blks))
66 free_blocks0=$(stat -f $testdir -c '%f')
67 nr=7
68 filesize=$((blksz * nr))
69 _pwrite_byte 0x61 0 $sz $testdir/file1 >> $seqres.full
70 sync
71
72 echo "Create the reflink copies"
73 for i in `seq 2 $nr`; do
74         _cp_reflink $testdir/file1 $testdir/file.$i
75 done
76 _cp_reflink $testdir/file1 $testdir/survivor
77 _test_remount
78 free_blocks1=$(stat -f $testdir -c '%f')
79
80 echo "Delete most of the files"
81 rm -rf $testdir/file*
82 _test_remount
83 free_blocks2=$(stat -f $testdir -c '%f')
84
85 echo "Delete all the files"
86 rm -rf $testdir/*
87 _test_remount
88 free_blocks3=$(stat -f $testdir -c '%f')
89 #echo $free_blocks0 $free_blocks1 $free_blocks2 $free_blocks3
90
91 _within_tolerance "free blocks after reflink" $free_blocks1 $((free_blocks0 - blks)) $margin -v
92
93 _within_tolerance "free blocks after deleting some reflink copies" $free_blocks2 $free_blocks1 $margin -v
94
95 _within_tolerance "free blocks after deleting all copies" $free_blocks3 $free_blocks0 $margin -v
96
97 # success, all done
98 status=0
99 exit