fstests: move test group info to test files
[xfstests-dev.git] / tests / generic / 151
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2015, Oracle and/or its affiliates.  All Rights Reserved.
4 #
5 # FS QA Test No. 151
6 #
7 # Ensure that deleting all copies of a file reflinked N times releases the blocks
8 #   - Record fs block usage (0)
9 #   - Create a file and some reflink copies
10 #   - Record fs block usage (1)
11 #   - Delete some copies of the file
12 #   - Record fs block usage (2)
13 #   - Delete all copies of the file
14 #   - Compare fs block usage to (2), (1), and (0)
15 #
16 . ./common/preamble
17 _begin_fstest auto quick clone
18
19 # Override the default cleanup function.
20 _cleanup()
21 {
22     cd /
23     rm -rf $tmp.* $testdir
24 }
25
26 # Import common functions.
27 . ./common/filter
28 . ./common/reflink
29
30 # real QA test starts here
31 _require_test_reflink
32 _require_cp_reflink
33
34 testdir=$TEST_DIR/test-$seq
35 rm -rf $testdir
36 mkdir $testdir
37
38 echo "Create the original file blocks"
39 blksz="$(_get_block_size $testdir)"
40 blks=2000
41 margin='15%'
42 sz=$((blksz * blks))
43 free_blocks0=$(stat -f $testdir -c '%f')
44 nr=7
45 filesize=$((blksz * nr))
46 _pwrite_byte 0x61 0 $sz $testdir/file1 >> $seqres.full
47 sync
48
49 echo "Create the reflink copies"
50 for i in `seq 2 $nr`; do
51         _cp_reflink $testdir/file1 $testdir/file.$i
52 done
53 _cp_reflink $testdir/file1 $testdir/survivor
54 _test_cycle_mount
55 free_blocks1=$(stat -f $testdir -c '%f')
56
57 echo "Delete most of the files"
58 rm -rf $testdir/file*
59 _test_cycle_mount
60 free_blocks2=$(stat -f $testdir -c '%f')
61
62 echo "Delete all the files"
63 rm -rf $testdir/*
64 _test_cycle_mount
65 free_blocks3=$(stat -f $testdir -c '%f')
66 #echo $free_blocks0 $free_blocks1 $free_blocks2 $free_blocks3
67
68 _within_tolerance "free blocks after reflink" $free_blocks1 $((free_blocks0 - blks)) $margin -v
69
70 _within_tolerance "free blocks after deleting some reflink copies" $free_blocks2 $free_blocks1 $margin -v
71
72 _within_tolerance "free blocks after deleting all copies" $free_blocks3 $free_blocks0 $margin -v
73
74 # success, all done
75 status=0
76 exit