summaryrefslogtreecommitdiff
path: root/tests/misc-tests/002-uuid-rewrite/test.sh
blob: 8e7011a8d373ef933ec5c29811d6a98e2adedc4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/bin/bash
# test btrfstune uuid rewriting options

source "$TEST_TOP/common"

check_prereq mkfs.btrfs
check_prereq btrfstune
check_prereq btrfs

prepare_test_dev

get_fs_uuid() {
	run_check_stdout $TOP/btrfs inspect-internal dump-super "$1" | \
		grep '^fsid' | awk '{print $2}'
}

test_uuid_random()
{
	local origuuid

	origuuid=11111111-a101-4031-b29a-379d4f8b7a2d

	run_check $SUDO_HELPER $TOP/mkfs.btrfs -f \
		--uuid $origuuid \
		--rootdir $INTERNAL_BIN/Documentation \
		$TEST_DEV
	run_check $TOP/btrfs inspect-internal dump-super "$TEST_DEV"
	currentfsid=$(run_check_stdout $TOP/btrfstune -f -u $TEST_DEV | \
		grep -i 'current fsid:' | awk '{print $3}')
	if ! [ $currentfsid = $origuuid ]; then
		_fail "FAIL: current UUID mismatch"
	fi
	run_check $TOP/btrfs inspect-internal dump-super "$TEST_DEV"
	run_check $SUDO_HELPER $TOP/btrfs check $TEST_DEV
}

test_uuid_user()
{
	local origuuid
	local newuuid

	origuuid=22222222-d324-4f92-80e9-7658bf3b845f
	newuuid=33333333-bfc9-4045-9399-a396dc6893b3

	run_check $SUDO_HELPER $TOP/mkfs.btrfs -f \
		--uuid $origuuid \
		--rootdir $INTERNAL_BIN/Documentation \
		$TEST_DEV
	run_check $TOP/btrfs inspect-internal dump-super "$TEST_DEV"
	run_check $TOP/btrfstune -f -U $newuuid \
		$TEST_DEV
	# btrfs inspect-internal dump-super is called within get_fs_uuid
	fsid=$(get_fs_uuid $TEST_DEV)
	if ! [ $fsid = $newuuid ]; then
		_fail "FAIL: UUID not rewritten"
	fi
	run_check $SUDO_HELPER $TOP/btrfs check $TEST_DEV
}

test_uuid_random
test_uuid_user