btrfs-progs: tests: run rollback after conversion
[platform/upstream/btrfs-progs.git] / tests / convert-tests.sh
1 #!/bin/bash
2 #
3 # convert ext2/3/4 images to btrfs images, and make sure the results are
4 # clean.
5 #
6
7 unset TOP
8 unset LANG
9 LANG=C
10 SCRIPT_DIR=$(dirname $(readlink -f $0))
11 TOP=$(readlink -f $SCRIPT_DIR/../)
12 RESULTS="$TOP/tests/convert-tests-results.txt"
13 # how many files to create.
14 DATASET_SIZE=50
15
16 source $TOP/tests/common
17
18 rm -f $RESULTS
19
20 setup_root_helper
21 prepare_test_dev 512M
22
23 CHECKSUMTMP=$(mktemp --tmpdir btrfs-progs-convert.XXXXXXXXXX)
24
25 generate_dataset() {
26
27         dataset_type="$1"
28         dirpath=$TEST_MNT/$dataset_type
29         run_check $SUDO_HELPER mkdir -p $dirpath
30
31         case $dataset_type in
32                 small)
33                         for num in $(seq 1 $DATASET_SIZE); do
34                                 run_check $SUDO_HELPER dd if=/dev/urandom of=$dirpath/$dataset_type.$num bs=10K \
35                                 count=1 >/dev/null 2>&1
36                         done
37                         ;;
38
39                 hardlink)
40                         for num in $(seq 1 $DATASET_SIZE); do
41                                 run_check $SUDO_HELPER touch $dirpath/$dataset_type.$num
42                                 run_check $SUDO_HELPER ln $dirpath/$dataset_type.$num $dirpath/hlink.$num
43                         done
44                         ;;
45
46                 symlink)
47                         for num in $(seq 1 $DATASET_SIZE); do
48                                 run_check $SUDO_HELPER touch $dirpath/$dataset_type.$num
49                                 run_check $SUDO_HELPER ln -s $dirpath/$dataset_type.$num $dirpath/slink.$num
50                         done
51                         ;;
52
53                 brokenlink)
54                         for num in $(seq 1 $DATASET_SIZE); do
55                                 run_check $SUDO_HELPER ln -s $dirpath/$dataset_type.$num $dirpath/blink.$num
56                         done
57                         ;;
58
59                 perm)
60                         for modes in 777 775 755 750 700 666 664 644 640 600 444 440 400 000            \
61                                 1777 1775 1755 1750 1700 1666 1664 1644 1640 1600 1444 1440 1400 1000   \
62                                 2777 2775 2755 2750 2700 2666 2664 2644 2640 2600 2444 2440 2400 2000   \
63                                 4777 4775 4755 4750 4700 4666 4664 4644 4640 4600 4444 4440 4400 4000; do
64                                 if [[ "$modes" == *9* ]] || [[ "$modes" == *8* ]]
65                                 then
66                                         continue;
67                                 else
68                                         run_check $SUDO_HELPER touch $dirpath/$dataset_type.$modes
69                                         run_check $SUDO_HELPER chmod $modes $dirpath/$dataset_type.$modes
70                                 fi
71                         done
72                         ;;
73
74                 sparse)
75                         for num in $(seq 1 $DATASET_SIZE); do
76                                 run_check $SUDO_HELPER dd if=/dev/urandom of=$dirpath/$dataset_type.$num bs=10K \
77                                 count=1 >/dev/null 2>&1
78                                 run_check $SUDO_HELPER truncate -s 500K $dirpath/$dataset_type.$num
79                                 run_check $SUDO_HELPER dd if=/dev/urandom of=$dirpath/$dataset_type.$num bs=10K \
80                                 oflag=append conv=notrunc count=1 >/dev/null 2>&1
81                                 run_check $SUDO_HELPER truncate -s 800K $dirpath/$dataset_type.$num
82                         done
83                         ;;
84
85                 acls)
86                         for num in $(seq 1 $DATASET_SIZE); do
87                                 run_check $SUDO_HELPER touch $dirpath/$dataset_type.$num
88                                 run_check $SUDO_HELPER setfacl -m "u:root:x" $dirpath/$dataset_type.$num
89                                 run_check $SUDO_HELPER setfattr -n user.foo -v bar$num $dirpath/$dataset_type.$num
90                         done
91                         ;;
92         esac
93 }
94
95 populate_fs() {
96
97         for dataset_type in 'small' 'hardlink' 'symlink' 'brokenlink' 'perm' 'sparse' 'acls'; do
98                 generate_dataset "$dataset_type"
99         done
100 }
101
102 convert_test() {
103         local features
104         local nodesize
105
106         features="$1"
107         shift
108
109         if [ -z "$features" ]; then
110                 echo "    [TEST/conv]   $1, btrfs defaults"
111         else
112                 echo "    [TEST/conv]   $1, btrfs $features"
113         fi
114         nodesize=$2
115         shift 2
116         echo "creating ext image with: $*" >> $RESULTS
117         # TEST_DEV not removed as the file might have special permissions, eg.
118         # when test image is on NFS and would not be writable for root
119         run_check truncate -s 0 $TEST_DEV
120         # 256MB is the smallest acceptable btrfs image.
121         run_check truncate -s 512M $TEST_DEV
122         run_check $* -F $TEST_DEV
123
124         # create a file to check btrfs-convert can convert regular file
125         # correct
126         run_check_mount_test_dev
127         populate_fs
128         run_check $SUDO_HELPER dd if=/dev/zero of=$TEST_MNT/test bs=$nodesize \
129                 count=1 >/dev/null 2>&1
130         run_check_stdout $SUDO_HELPER find $TEST_MNT -type f ! -name 'image' -exec md5sum {} \+ > $CHECKSUMTMP
131         run_check_umount_test_dev
132
133         run_check $TOP/btrfs-convert ${features:+-O "$features"} -N "$nodesize" $TEST_DEV
134         run_check $TOP/btrfs check $TEST_DEV
135         run_check $TOP/btrfs-show-super $TEST_DEV
136
137         run_check_mount_test_dev
138         run_check_stdout $SUDO_HELPER md5sum -c $CHECKSUMTMP |
139                 grep -q 'FAILED' && _fail "file validation failed."
140         run_check_umount_test_dev
141
142         run_check $TOP/btrfs-convert --rollback $TEST_DEV
143         run_check fsck -n -t ext2,ext3,ext4 $TEST_DEV
144 }
145
146 if ! [ -z "$TEST" ]; then
147         echo "    [TEST/conv]   skipped all convert tests, TEST=$TEST"
148         exit 0
149 fi
150
151 for feature in '' 'extref' 'skinny-metadata' 'no-holes'; do
152         convert_test "$feature" "ext2 4k nodesize" 4096 mke2fs -b 4096
153         convert_test "$feature" "ext3 4k nodesize" 4096 mke2fs -j -b 4096
154         convert_test "$feature" "ext4 4k nodesize" 4096 mke2fs -t ext4 -b 4096
155         convert_test "$feature" "ext2 8k nodesize" 8192 mke2fs -b 4096
156         convert_test "$feature" "ext3 8k nodesize" 8192 mke2fs -j -b 4096
157         convert_test "$feature" "ext4 8k nodesize" 8192 mke2fs -t ext4 -b 4096
158         convert_test "$feature" "ext2 16k nodesize" 16384 mke2fs -b 4096
159         convert_test "$feature" "ext3 16k nodesize" 16384 mke2fs -j -b 4096
160         convert_test "$feature" "ext4 16k nodesize" 16384 mke2fs -t ext4 -b 4096
161         convert_test "$feature" "ext2 32k nodesize" 32768 mke2fs -b 4096
162         convert_test "$feature" "ext3 32k nodesize" 32768 mke2fs -j -b 4096
163         convert_test "$feature" "ext4 32k nodesize" 32768 mke2fs -t ext4 -b 4096
164         convert_test "$feature" "ext2 64k nodesize" 65536 mke2fs -b 4096
165         convert_test "$feature" "ext3 64k nodesize" 65536 mke2fs -j -b 4096
166         convert_test "$feature" "ext4 64k nodesize" 65536 mke2fs -t ext4 -b 4096
167 done
168
169 rm $CHECKSUMTMP