btrfs-progs: tests: fix _is_file_or_command detection
[platform/upstream/btrfs-progs.git] / tests / common.convert
index 3481c4d..2c19a4b 100644 (file)
@@ -1,6 +1,39 @@
 #!/bin/bash
 # helpers for btrfs-convert tests
 
+# mount image of converted filesystem of a given type
+# $1: type of the filesystem
+run_check_mount_convert_dev()
+{
+       local fstype
+       local loop_opt
+
+       setup_root_helper
+
+       fstype="$1"
+       shift
+       if [ -z "$fstype" ]; then
+               _fail "Missing source filesystem type"
+       fi
+       if [ "$fstype" = 'btrfs' ]; then
+               _fail "Incorrect type for converted filesystem: btrfs"
+       fi
+
+       if [[ -b "$TEST_DEV" ]]; then
+               loop_opt=""
+       elif [[ -f "$TEST_DEV" ]]; then
+               loop_opt="-o loop"
+       else
+               _fail "Invalid \$TEST_DEV: $TEST_DEV"
+       fi
+
+       [[ -d "$TEST_MNT" ]] || {
+               _fail "Invalid \$TEST_MNT: $TEST_MNT"
+       }
+
+       run_check $SUDO_HELPER mount $loop_opt -t "$fstype" "$@" "$TEST_DEV" "$TEST_MNT"
+}
+
 populate_fs() {
 
         for dataset_type in 'small' 'hardlink' 'fast_symlink' 'brokenlink' 'perm' 'sparse' 'acls' 'fifo' 'slow_symlink'; do
@@ -22,8 +55,13 @@ convert_test_preamble() {
 
 #  prepare TEST_DEV before conversion, create filesystem and mount it, image
 #  size is 512MB
-#  $@: free form, command to create the filesystem, with appended -F
+#  $1: type of the filesystem
+#  $2+: free form, command to create the filesystem, with appended -F
 convert_test_prep_fs() {
+       local fstype
+
+       fstype="$1"
+       shift
        # TEST_DEV not removed as the file might have special permissions, eg.
        # when test image is on NFS and would not be writable for root
        run_check truncate -s 0 "$TEST_DEV"
@@ -32,7 +70,7 @@ convert_test_prep_fs() {
        run_check "$@" -F "$TEST_DEV"
 
        # create a file to check btrfs-convert can convert regular file correct
-       run_check_mount_test_dev
+       run_check_mount_convert_dev "$fstype"
 
        # create a file inside the fs before convert, to make sure there is
        # data covering btrfs backup superblock range (64M)
@@ -89,7 +127,7 @@ convert_test_acl() {
 # $2: nodesize, argument of -N, can be empty
 convert_test_do_convert() {
        run_check "$TOP/btrfs-convert" ${1:+-O "$1"} ${2:+-N "$2"} "$TEST_DEV"
-       run_check "$TOP/btrfs" check $TEST_DEV
+       run_check "$TOP/btrfs" check "$TEST_DEV"
        run_check "$TOP/btrfs" inspect-internal dump-super -Ffa "$TEST_DEV"
 }
 
@@ -160,6 +198,9 @@ convert_test_post_checks_all() {
        convert_test_post_check_checksums "$1"
        convert_test_post_check_permissions "$2"
        convert_test_post_check_acl "$3"
+
+       # Create a large file to trigger data chunk allocation
+       generate_dataset "large"
        run_check_umount_test_dev
 }
 
@@ -170,11 +211,13 @@ convert_test_post_rollback() {
 }
 
 # simple wrapper for a convert test
-# $1: btrfs features, argument to -O
-# $2: description of the test "ext2 8k nodesize"
-# $3: nodesize value
-# $4 + rest: command to create the ext2 image
+# $1: type of the converted filesystem
+# $2: btrfs features, argument to -O
+# $3: description of the test "ext2 8k nodesize"
+# $4: nodesize value
+# $5 + rest: command to create the ext2 image
 convert_test() {
+       local fstype
        local features
        local nodesize
        local msg
@@ -182,12 +225,13 @@ convert_test() {
        local EXT_PERMTMP
        local EXT_ACLTMP
 
-       features="$1"
-       msg="$2"
-       nodesize="$3"
-       shift 3
+       fstype="$1"
+       features="$2"
+       msg="$3"
+       nodesize="$4"
+       shift 4
        convert_test_preamble "$features" "$msg" "$nodesize" "$@"
-       convert_test_prep_fs "$@"
+       convert_test_prep_fs "$fstype" "$@"
        populate_fs
        CHECKSUMTMP=$(mktemp --tmpdir btrfs-progs-convert.XXXXXXXXXX)
        EXT_PERMTMP=$(mktemp --tmpdir btrfs-progs-convert.permXXXXXX)