blob: d89fabcdbd2b7e473aeb9236f73616a467373681 [file] [log] [blame]
Benoît Canetc7fc5bc2014-02-21 22:21:21 +01001#!/bin/bash
2#
3# Test Quorum block driver
4#
5# Copyright (C) 2013 Nodalink, SARL.
6#
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.
11#
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.
16#
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/>.
19#
20
21# creator
22owner=benoit@irqsave.net
23
24seq=`basename $0`
25echo "QA output created by $seq"
26
27here=`pwd`
Benoît Canetc7fc5bc2014-02-21 22:21:21 +010028status=1 # failure is the default!
29
30_cleanup()
31{
32 rm -rf $TEST_DIR/1.raw
33 rm -rf $TEST_DIR/2.raw
34 rm -rf $TEST_DIR/3.raw
35}
36trap "_cleanup; exit \$status" 0 1 2 3 15
37
38# get standard environment, filters and checks
39. ./common.rc
40. ./common.filter
41
42_supported_fmt raw
Peter Lievenc5f7c0a2014-10-20 13:47:11 +020043_supported_proto file
Benoît Canetc7fc5bc2014-02-21 22:21:21 +010044_supported_os Linux
45
Max Reitz6141f3b2014-02-21 22:30:38 +010046function do_run_qemu()
47{
48 echo Testing: "$@" | _filter_imgfmt
49 $QEMU -nographic -qmp stdio -serial none "$@"
50 echo
51}
52
53function run_qemu()
54{
Jeff Cody15489c72015-10-12 19:36:50 -040055 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_qmp\
56 | _filter_qemu_io | _filter_generated_node_ids
Max Reitz6141f3b2014-02-21 22:30:38 +010057}
58
Benoît Canet4b350f12014-02-22 18:43:42 +010059test_quorum=$($QEMU_IMG --help|grep quorum)
60[ "$test_quorum" = "" ] && _supported_fmt quorum
61
Kevin Wolf8f9e8352014-11-20 16:27:07 +010062quorum="driver=raw,file.driver=quorum,file.vote-threshold=2"
63quorum="$quorum,file.children.0.file.filename=$TEST_DIR/1.raw"
Benoît Canetc7fc5bc2014-02-21 22:21:21 +010064quorum="$quorum,file.children.1.file.filename=$TEST_DIR/2.raw"
Kevin Wolf8f9e8352014-11-20 16:27:07 +010065quorum="$quorum,file.children.2.file.filename=$TEST_DIR/3.raw"
66quorum="$quorum,file.children.0.driver=raw"
67quorum="$quorum,file.children.1.driver=raw"
68quorum="$quorum,file.children.2.driver=raw"
Benoît Canetc7fc5bc2014-02-21 22:21:21 +010069
70echo
71echo "== creating quorum files =="
72
73size=10M
74
75TEST_IMG="$TEST_DIR/1.raw" _make_test_img $size
76TEST_IMG="$TEST_DIR/2.raw" _make_test_img $size
77TEST_IMG="$TEST_DIR/3.raw" _make_test_img $size
78
79echo
80echo "== writing images =="
81
82$QEMU_IO -c "open -o $quorum" -c "write -P 0x32 0 $size" | _filter_qemu_io
83
84echo
85echo "== checking quorum write =="
86
87$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io
88$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
89$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/3.raw" | _filter_qemu_io
90
91echo
92echo "== corrupting image =="
93
94$QEMU_IO -c "write -P 0x42 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
95
96echo
97echo "== checking quorum correction =="
98
99$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
100
101echo
Max Reitz6141f3b2014-02-21 22:30:38 +0100102echo "== checking mixed reference/option specification =="
103
Max Reitz8e9e6532015-10-19 17:53:10 +0200104run_qemu <<EOF
Max Reitz6141f3b2014-02-21 22:30:38 +0100105{ "execute": "qmp_capabilities" }
106{ "execute": "blockdev-add",
107 "arguments": {
108 "options": {
Max Reitz8e9e6532015-10-19 17:53:10 +0200109 "node-name": "drive2",
110 "driver": "$IMGFMT",
111 "file": {
112 "driver": "file",
113 "filename": "$TEST_DIR/2.raw"
114 }
115 }
116 }
117}
118{ "execute": "blockdev-add",
119 "arguments": {
120 "options": {
Max Reitz6141f3b2014-02-21 22:30:38 +0100121 "driver": "quorum",
122 "id": "drive0-quorum",
123 "vote-threshold": 2,
124 "children": [
125 {
Max Reitz8e9e6532015-10-19 17:53:10 +0200126 "driver": "$IMGFMT",
Max Reitz6141f3b2014-02-21 22:30:38 +0100127 "file": {
128 "driver": "file",
129 "filename": "$TEST_DIR/1.raw"
130 }
131 },
132 "drive2",
133 {
Max Reitz8e9e6532015-10-19 17:53:10 +0200134 "driver": "$IMGFMT",
Max Reitz6141f3b2014-02-21 22:30:38 +0100135 "file": {
136 "driver": "file",
137 "filename": "$TEST_DIR/3.raw"
138 }
139 }
140 ]
141 }
142 }
143}
144{ "execute": "human-monitor-command",
145 "arguments": {
146 "command-line": 'qemu-io drive0-quorum "read -P 0x32 0 $size"'
147 }
148}
149{ "execute": "quit" }
150EOF
151
152echo
Benoît Canetcf29a572014-06-11 15:24:10 +0200153echo "== using quorum rewrite corrupted mode =="
154
155quorum="$quorum,file.rewrite-corrupted=on"
156
157$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
158
159echo
160echo "== checking that quorum has corrected the corrupted file =="
161
162$QEMU_IO -c "read -P 0x32 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
163
164echo
Benoît Canetc7fc5bc2014-02-21 22:21:21 +0100165echo "== breaking quorum =="
166
167$QEMU_IO -c "write -P 0x41 0 $size" "$TEST_DIR/1.raw" | _filter_qemu_io
Benoît Canetcf29a572014-06-11 15:24:10 +0200168$QEMU_IO -c "write -P 0x42 0 $size" "$TEST_DIR/2.raw" | _filter_qemu_io
169
Benoît Canetc7fc5bc2014-02-21 22:21:21 +0100170echo
171echo "== checking that quorum is broken =="
172
173$QEMU_IO -c "open -o $quorum" -c "read -P 0x32 0 $size" | _filter_qemu_io
174
Benoît Canetc7fc5bc2014-02-21 22:21:21 +0100175# success, all done
176echo "*** done"
177rm -f $seq.full
178status=0