btrfs-progs/tests/cli-tests/009-btrfstune/test.sh
David Sterba f6bbe06c08 btrfs-progs: tests: add protection against running out of test suite
Executing the script inside the directories as './test.sh' is not
supposed to work but could happen accidentally. With an exit after
attempting to source the we can fix that.

Signed-off-by: David Sterba <dsterba@suse.com>
2023-04-25 16:59:41 +02:00

59 lines
1.7 KiB
Bash
Executable file

#!/bin/bash
# test all command line options of btrfstune
source "$TEST_TOP/common" || exit
check_prereq btrfstune
setup_root_helper
prepare_test_dev
run_mayfail "$TOP/btrfstune" || true
run_check "$TOP/btrfstune" --help
run_mustfail "must not work on non-existent device" \
"$TOP/btrfstune" -r file-does-not-exist
run_check_mkfs_test_dev -O ^extref
run_check "$TOP/btrfstune" -r "$TEST_DEV"
run_check_mkfs_test_dev -O ^skinny-metadata
run_check "$TOP/btrfstune" -x "$TEST_DEV"
run_check_mkfs_test_dev -O ^no-holes
run_check "$TOP/btrfstune" -n "$TEST_DEV"
run_check_mkfs_test_dev
run_check "$TOP/btrfstune" -S 1 "$TEST_DEV"
echo n | run_mayfail "$TOP/btrfstune" -S 0 "$TEST_DEV" || true
run_check "$TOP/btrfstune" -f -S 0 "$TEST_DEV"
run_mustfail "negative number for seeding status" \
"$TOP/btrfstune" -f -S -1 "$TEST_DEV"
run_check_mkfs_test_dev
echo n | run_mayfail "$TOP/btrfstune" -u "$TEST_DEV" || true
run_check "$TOP/btrfstune" -f -u "$TEST_DEV"
uuid="e315420e-3a1f-4d81-849e-93b68b85b76f"
baduuid="1-2-3-4-5"
run_check_mkfs_test_dev
echo n | run_mayfail "$TOP/btrfstune" -U "$uuid" "$TEST_DEV" || true
run_check "$TOP/btrfstune" -f -U "$uuid" "$TEST_DEV"
run_mustfail "non-conforming uuid accepted" \
"$TOP/btrfstune" -U "$baduuid" "$TEST_DEV"
run_check_mkfs_test_dev
echo n | run_mayfail "$TOP/btrfstune" -m "$TEST_DEV" || true
run_check "$TOP/btrfstune" -f -m "$TEST_DEV"
uuid="2a9716ee-2786-4baa-ab85-f82c50fa883c"
run_check_mkfs_test_dev
run_mayfail "$TOP/btrfstune" -M "$uuid" "$TEST_DEV" || true
run_check_mkfs_test_dev
run_check "$TOP/btrfstune" -f -M "$uuid" "$TEST_DEV"
run_mustfail "non-conforming uuid accepted" \
"$TOP/btrfstune" -M "$baduuid" "$TEST_DEV"