overlay: run unionmount testsuite test cases
[xfstests-dev.git] / tests / generic / 152
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. 152
6 #
7 # Ensure that punching 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 #   - Punch some blocks of the copies
12 #   - Record fs block usage (2)
13 #   - Punch all blocks of the copies
14 #   - Compare fs block usage to (2), (1), and (0)
15 #
16 seq=`basename $0`
17 seqres=$RESULT_DIR/$seq
18 echo "QA output created by $seq"
19
20 here=`pwd`
21 tmp=/tmp/$$
22 status=1    # failure is the default!
23 trap "_cleanup; exit \$status" 0 1 2 3 15
24
25 _cleanup()
26 {
27     cd /
28     rm -rf $tmp.* $testdir
29 }
30
31 # get standard environment, filters and checks
32 . ./common/rc
33 . ./common/filter
34 . ./common/reflink
35
36 # real QA test starts here
37 _supported_os Linux
38 _require_test_reflink
39 _require_cp_reflink
40 _require_xfs_io_command "fpunch"
41
42 rm -f $seqres.full
43
44 testdir=$TEST_DIR/test-$seq
45 rm -rf $testdir
46 mkdir $testdir
47
48 echo "Create the original file blocks"
49 blksz="$(_get_block_size $testdir)"
50 blks=2000
51 margin='15%'
52 sz=$((blksz * blks))
53 free_blocks0=$(stat -f $testdir -c '%f')
54 nr=4
55 filesize=$((blksz * nr))
56 _pwrite_byte 0x61 0 $sz $testdir/file1 >> $seqres.full
57 sync
58
59 echo "Create the reflink copies"
60 for i in `seq 2 $nr`; do
61         _cp_reflink $testdir/file1 $testdir/file$i
62 done
63 _test_cycle_mount
64 free_blocks1=$(stat -f $testdir -c '%f')
65
66 echo "Punch most of the blocks"
67 $XFS_IO_PROG -f -c "fpunch 0 $sz" $testdir/file2
68 $XFS_IO_PROG -f -c "fpunch 0 $((sz / 2))" $testdir/file3
69 $XFS_IO_PROG -f -c "fpunch $((sz / 2)) $((sz / 2))" $testdir/file4
70 _test_cycle_mount
71 free_blocks2=$(stat -f $testdir -c '%f')
72
73 echo "Punch all the files"
74 for i in `seq 2 $nr`; do
75         $XFS_IO_PROG -f -c "fpunch 0 $sz" $testdir/file$i
76 done
77 $XFS_IO_PROG -f -c "fpunch 0 $sz" $testdir/file1
78 _test_cycle_mount
79 free_blocks3=$(stat -f $testdir -c '%f')
80 #echo $free_blocks0 $free_blocks1 $free_blocks2 $free_blocks3
81
82 _within_tolerance "free blocks after reflink" $free_blocks1 $((free_blocks0 - blks)) $margin -v
83
84 _within_tolerance "free blocks after punching some reflink copies" $free_blocks2 $free_blocks1 $margin -v
85
86 _within_tolerance "free blocks after punching all copies" $free_blocks3 $free_blocks0 $margin -v
87
88 # success, all done
89 status=0
90 exit