3 # Test case for the QMP blkdebug and blkverify interfaces
5 # Copyright (C) 2013 Red Hat, Inc.
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/>.
22 owner
=mreitz@redhat.com
25 echo "QA output created by $seq"
29 status
=1 # failure is the default!
35 trap "_cleanup; exit \$status" 0 1 2 3 15
37 # get standard environment, filters and checks
45 function do_run_qemu
()
47 echo Testing
: "$@" | _filter_imgfmt
48 $QEMU -nographic -qmp stdio
-serial none
"$@"
54 do_run_qemu
"$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_qmp | _filter_qemu_io
60 echo "=== Testing blkverify through filename ==="
63 TEST_IMG
="$TEST_IMG.base" IMGOPTS
="" IMGFMT
="raw" _make_test_img
$IMG_SIZE |\
65 _make_test_img
$IMG_SIZE
66 $QEMU_IO -c "open -o driver=raw,file.driver=blkverify,file.raw.filename=$TEST_IMG.base $TEST_IMG" \
67 -c 'read 0 512' -c 'write -P 42 0x38000 512' -c 'read -P 42 0x38000 512' | _filter_qemu_io
69 $QEMU_IO -c 'write -P 42 0 512' "$TEST_IMG" | _filter_qemu_io
71 $QEMU_IO -c "open -o driver=raw,file.driver=blkverify,file.raw.filename=$TEST_IMG.base $TEST_IMG" \
72 -c 'read -P 42 0 512' | _filter_qemu_io
75 echo "=== Testing blkverify through file blockref ==="
78 TEST_IMG
="$TEST_IMG.base" IMGOPTS
="" IMGFMT
="raw" _make_test_img
$IMG_SIZE |\
80 _make_test_img
$IMG_SIZE
81 $QEMU_IO -c "open -o driver=raw,file.driver=blkverify,file.raw.filename=$TEST_IMG.base,file.test.driver=$IMGFMT,file.test.file.filename=$TEST_IMG" \
82 -c 'read 0 512' -c 'write -P 42 0x38000 512' -c 'read -P 42 0x38000 512' | _filter_qemu_io
84 $QEMU_IO -c 'write -P 42 0 512' "$TEST_IMG" | _filter_qemu_io
86 $QEMU_IO -c "open -o driver=raw,file.driver=blkverify,file.raw.filename=$TEST_IMG.base $TEST_IMG" \
87 -c 'read -P 42 0 512' | _filter_qemu_io
90 echo "=== Testing blkdebug through filename ==="
93 $QEMU_IO -c "open -o file.driver=blkdebug,file.inject-error.event=l2_load $TEST_IMG" \
94 -c 'read -P 42 0x38000 512'
97 echo "=== Testing blkdebug through file blockref ==="
100 $QEMU_IO -c "open -o driver=$IMGFMT,file.driver=blkdebug,file.inject-error.event=l2_load,file.image.filename=$TEST_IMG" \
101 -c 'read -P 42 0x38000 512'
104 echo "=== Testing blkdebug on existing block device ==="
107 run_qemu
-drive "file=$TEST_IMG,format=raw,if=none,id=drive0" <<EOF
108 { "execute": "qmp_capabilities" }
109 { "execute": "blockdev-add",
113 "id": "drive0-debug",
115 "driver": "blkdebug",
124 { "execute": "human-monitor-command",
126 "command-line": 'qemu-io drive0-debug "read 0 512"'
129 { "execute": "quit" }
133 echo "=== Testing blkverify on existing block device ==="
136 run_qemu
-drive "file=$TEST_IMG,format=$IMGFMT,if=none,id=drive0" <<EOF
137 { "execute": "qmp_capabilities" }
138 { "execute": "blockdev-add",
141 "driver": "blkverify",
142 "id": "drive0-verify",
148 "filename": "$TEST_IMG.base"
154 { "execute": "human-monitor-command",
156 "command-line": 'qemu-io drive0-verify "read 0 512"'
159 { "execute": "quit" }
163 echo "=== Testing blkverify on existing raw block device ==="
166 run_qemu
-drive "file=$TEST_IMG.base,format=raw,if=none,id=drive0" <<EOF
167 { "execute": "qmp_capabilities" }
168 { "execute": "blockdev-add",
171 "driver": "blkverify",
172 "id": "drive0-verify",
177 "filename": "$TEST_IMG"
184 { "execute": "human-monitor-command",
186 "command-line": 'qemu-io drive0-verify "read 0 512"'
189 { "execute": "quit" }
193 echo "=== Testing blkdebug's set-state through QMP ==="
196 run_qemu
-drive "file=$TEST_IMG,format=raw,if=none,id=drive0" <<EOF
197 { "execute": "qmp_capabilities" }
198 { "execute": "blockdev-add",
202 "id": "drive0-debug",
204 "driver": "blkdebug",
211 "event": "write_aio",
218 { "execute": "human-monitor-command",
220 "command-line": 'qemu-io drive0-debug "read 0 512"'
223 { "execute": "human-monitor-command",
225 "command-line": 'qemu-io drive0-debug "write 0 512"'
228 { "execute": "human-monitor-command",
230 "command-line": 'qemu-io drive0-debug "read 0 512"'
233 { "execute": "quit" }