btrfs-progs: check the free space tree in btrfsck
[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 IMAGE="$TOP/tests/test.img"
14
15 source $TOP/tests/common
16
17 rm -f $RESULTS
18
19 setup_root_helper
20
21 convert_test() {
22         local features
23         local nodesize
24
25         features="$1"
26         shift
27
28         if [ -z "$features" ]; then
29                 echo "    [TEST/conv]   $1, btrfs defaults"
30         else
31                 echo "    [TEST/conv]   $1, btrfs $features"
32         fi
33         nodesize=$2
34         shift 2
35         echo "creating ext image with: $*" >> $RESULTS
36         # IMAGE not removed as the file might have special permissions, eg.
37         # when test image is on NFS and would not be writable for root
38         run_check truncate -s 0 $IMAGE
39         # 256MB is the smallest acceptable btrfs image.
40         run_check truncate -s 256M $IMAGE
41         run_check $* -F $IMAGE
42
43         # create a file to check btrfs-convert can convert regular file
44         # correct
45         run_check $SUDO_HELPER mount -o loop $IMAGE $TEST_MNT
46         run_check $SUDO_HELPER dd if=/dev/zero of=$TEST_MNT/test bs=$nodesize \
47                 count=1 1>/dev/null 2>&1
48         run_check $SUDO_HELPER umount $TEST_MNT
49         run_check $TOP/btrfs-convert ${features:+-O "$features"} -N "$nodesize" $IMAGE
50         run_check $TOP/btrfs check $IMAGE
51         run_check $TOP/btrfs-show-super $IMAGE
52 }
53
54 if ! [ -z "$TEST" ]; then
55         echo "    [TEST/conv]   skipped all convert tests, TEST=$TEST"
56         exit 0
57 fi
58
59 for feature in '' 'extref' 'skinny-metadata' 'no-holes'; do
60         convert_test "$feature" "ext2 4k nodesize" 4096 mke2fs -b 4096
61         convert_test "$feature" "ext3 4k nodesize" 4096 mke2fs -j -b 4096
62         convert_test "$feature" "ext4 4k nodesize" 4096 mke2fs -t ext4 -b 4096
63         convert_test "$feature" "ext2 8k nodesize" 8192 mke2fs -b 4096
64         convert_test "$feature" "ext3 8k nodesize" 8192 mke2fs -j -b 4096
65         convert_test "$feature" "ext4 8k nodesize" 8192 mke2fs -t ext4 -b 4096
66         convert_test "$feature" "ext2 16k nodesize" 16384 mke2fs -b 4096
67         convert_test "$feature" "ext3 16k nodesize" 16384 mke2fs -j -b 4096
68         convert_test "$feature" "ext4 16k nodesize" 16384 mke2fs -t ext4 -b 4096
69         convert_test "$feature" "ext2 32k nodesize" 32768 mke2fs -b 4096
70         convert_test "$feature" "ext3 32k nodesize" 32768 mke2fs -j -b 4096
71         convert_test "$feature" "ext4 32k nodesize" 32768 mke2fs -t ext4 -b 4096
72         convert_test "$feature" "ext2 64k nodesize" 65536 mke2fs -b 4096
73         convert_test "$feature" "ext3 64k nodesize" 65536 mke2fs -j -b 4096
74         convert_test "$feature" "ext4 64k nodesize" 65536 mke2fs -t ext4 -b 4096
75 done