quorum: Add unit test.
[qemu/cris-port.git] / tests / qemu-iotests / 081
blobbe345443c6be934e5e9dd071ab6c1dc3377f86ad
1 #!/bin/bash
3 # Test Quorum block driver
5 # Copyright (C) 2013 Nodalink, SARL.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 # creator
22 owner=benoit@irqsave.net
24 seq=`basename $0`
25 echo "QA output created by $seq"
27 here=`pwd`
28 tmp=/tmp/$$
29 status=1 # failure is the default!
31 _cleanup()
33 rm -rf $TEST_DIR/1.raw
34 rm -rf $TEST_DIR/2.raw
35 rm -rf $TEST_DIR/3.raw
37 trap "_cleanup; exit \$status" 0 1 2 3 15
39 # get standard environment, filters and checks
40 . ./common.rc
41 . ./common.filter
43 _supported_fmt raw
44 _supported_proto generic
45 _supported_os Linux
47 quorum="file.driver=quorum,file.children.0.file.filename=$TEST_DIR/1.raw"
48 quorum="$quorum,file.children.1.file.filename=$TEST_DIR/2.raw"
49 quorum="$quorum,file.children.2.file.filename=$TEST_DIR/3.raw,file.vote-threshold=2"
51 echo
52 echo "== creating quorum files =="
54 size=10M
56 TEST_IMG="$TEST_DIR/1.raw" _make_test_img $size
57 TEST_IMG="$TEST_DIR/2.raw" _make_test_img $size
58 TEST_IMG="$TEST_DIR/3.raw" _make_test_img $size
60 echo
61 echo "== writing images =="
63 $QEMU_IO -c "open -o $quorum" -c "write -P 0x32 0 $size" | _filter_qemu_io
65 echo
66 echo "== checking quorum write =="
68 $QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io
69 $QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
70 $QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/3.raw" | _filter_qemu_io
72 echo
73 echo "== corrupting image =="
75 $QEMU_IO -c "write -P 0x42 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
77 echo
78 echo "== checking quorum correction =="
80 $QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
82 echo
83 echo "== breaking quorum =="
85 $QEMU_IO -c "write -P 0x41 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io
86 echo
87 echo "== checking that quorum is broken =="
89 $QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
92 # success, all done
93 echo "*** done"
94 rm -f $seq.full
95 status=0