btrfs-progs: tests: use readlink -f to resolve path
[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 TEST_MNT=${TEST_MNT:-$TOP/tests/mnt}
13 RESULTS="$TOP/tests/convert-tests-results.txt"
14 IMAGE="$TOP/tests/test.img"
15
16 source $TOP/tests/common
17
18 rm -f $RESULTS
19
20 setup_root_helper
21
22 convert_test() {
23         echo "    [TEST]   $1"
24         nodesize=$2
25         shift 2
26         echo "creating ext image with: $*" >> $RESULTS
27         # IMAGE not removed as the file might have special permissions, eg.
28         # when test image is on NFS and would not be writable for root
29         run_check truncate -s 0 $IMAGE
30         # 256MB is the smallest acceptable btrfs image.
31         run_check truncate -s 256M $IMAGE
32         run_check $* -F $IMAGE
33
34         # create a file to check btrfs-convert can convert regular file
35         # correct
36         run_check $SUDO_HELPER mount $IMAGE $TEST_MNT
37         run_check $SUDO_HELPER dd if=/dev/zero of=$TEST_MNT/test bs=$nodesize \
38                 count=1 1>/dev/null 2>&1
39         run_check $SUDO_HELPER umount $TEST_MNT
40         run_check $TOP/btrfs-convert -N "$nodesize" $IMAGE
41         run_check $TOP/btrfs check $IMAGE
42 }
43
44 # btrfs-convert requires 4k blocksize.
45 convert_test "ext2 4k nodesize" 4096 mke2fs -b 4096
46 convert_test "ext3 4k nodesize" 4096 mke2fs -j -b 4096
47 convert_test "ext4 4k nodesize" 4096 mke2fs -t ext4 -b 4096
48 convert_test "ext2 8k nodesize" 8192 mke2fs -b 4096
49 convert_test "ext3 8k nodesize" 8192 mke2fs -j -b 4096
50 convert_test "ext4 8k nodesize" 8192 mke2fs -t ext4 -b 4096
51 convert_test "ext2 16k nodesize" 16384 mke2fs -b 4096
52 convert_test "ext3 16k nodesize" 16384 mke2fs -j -b 4096
53 convert_test "ext4 16k nodesize" 16384 mke2fs -t ext4 -b 4096
54 convert_test "ext2 32k nodesize" 32768 mke2fs -b 4096
55 convert_test "ext3 32k nodesize" 32768 mke2fs -j -b 4096
56 convert_test "ext4 32k nodesize" 32768 mke2fs -t ext4 -b 4096
57 convert_test "ext2 64k nodesize" 65536 mke2fs -b 4096
58 convert_test "ext3 64k nodesize" 65536 mke2fs -j -b 4096
59 convert_test "ext4 64k nodesize" 65536 mke2fs -t ext4 -b 4096