generic: test adding filesystem-level fscrypt key via key_id
[xfstests-dev.git] / tests / generic / 559
1 #! /bin/bash
2 # SPDX-License-Identifier: GPL-2.0
3 # Copyright (c) 2018 Red Hat Inc.  All Rights Reserved.
4 #
5 # FS QA Test generic/559
6 #
7 # Dedupe a single big file and verify integrity
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 -f $tmp.*
22 }
23
24 # get standard environment, filters and checks
25 . ./common/rc
26 . ./common/filter
27 . ./common/reflink
28
29 # remove previous $seqres.full before test
30 rm -f $seqres.full
31
32 # real QA test starts here
33 _supported_fs generic
34 _supported_os Linux
35 _require_scratch_duperemove
36
37 fssize=$((2 * 1024 * 1024 * 1024))
38 _scratch_mkfs_sized $fssize > $seqres.full 2>&1
39 _scratch_mount >> $seqres.full 2>&1
40
41 # fill the fs with a big file has same contents
42 $XFS_IO_PROG -f -c "pwrite -S 0x55 0 $fssize" $SCRATCH_MNT/${seq}.file \
43         >> $seqres.full 2>&1
44 md5sum $SCRATCH_MNT/${seq}.file > ${tmp}.md5sum
45
46 echo "= before cycle mount ="
47 # Dedupe with 1M blocksize
48 $DUPEREMOVE_PROG -dr --dedupe-options=same -b 1048576 $SCRATCH_MNT/ >>$seqres.full 2>&1
49 # Verify integrity
50 md5sum -c --quiet ${tmp}.md5sum
51 # Dedupe with 64k blocksize
52 $DUPEREMOVE_PROG -dr --dedupe-options=same -b 65536 $SCRATCH_MNT/ >>$seqres.full 2>&1
53 # Verify integrity again
54 md5sum -c --quiet ${tmp}.md5sum
55
56 # umount and mount again, verify pagecache contents don't mutate
57 _scratch_cycle_mount
58 echo "= after cycle mount ="
59 md5sum -c --quiet ${tmp}.md5sum
60
61 status=0
62 exit