kvm: remove hard dependency on pci
[qemu.git] / tests / qemu-iotests / 087
blobf8e4903f4fca38fe354c00d3d0ffa3702f3052aa
1 #!/bin/bash
3 # Test unsupported blockdev-add cases
5 # Copyright (C) 2014 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/>.
21 # creator
22 owner=kwolf@redhat.com
24 seq=`basename $0`
25 echo "QA output created by $seq"
27 here=`pwd`
28 status=1 # failure is the default!
30 # get standard environment, filters and checks
31 . ./common.rc
32 . ./common.filter
34 _supported_fmt qcow2
35 _supported_proto file
36 _supported_os Linux
38 function do_run_qemu()
40 echo Testing: "$@"
41 $QEMU -nographic -qmp stdio -serial none "$@"
42 echo
45 function run_qemu()
47 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp \
48 | _filter_qemu | _filter_imgfmt \
49 | sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g'
52 size=128M
54 _make_test_img $size
56 echo
57 echo === Missing ID and node-name ===
58 echo
60 run_qemu <<EOF
61 { "execute": "qmp_capabilities" }
62 { "execute": "blockdev-add",
63 "arguments": {
64 "driver": "$IMGFMT",
65 "file": {
66 "driver": "file",
67 "filename": "$TEST_IMG"
71 { "execute": "quit" }
72 EOF
74 echo
75 echo === Duplicate ID ===
76 echo
78 run_qemu -drive driver=$IMGFMT,id=disk,node-name=test-node,file="$TEST_IMG" <<EOF
79 { "execute": "qmp_capabilities" }
80 { "execute": "blockdev-add",
81 "arguments": {
82 "driver": "$IMGFMT",
83 "node-name": "disk",
84 "file": {
85 "driver": "null-co"
89 { "execute": "blockdev-add",
90 "arguments": {
91 "driver": "$IMGFMT",
92 "node-name": "test-node",
93 "file": {
94 "driver": "null-co"
98 { "execute": "quit" }
99 EOF
101 echo
102 echo === aio=native without O_DIRECT ===
103 echo
105 run_qemu <<EOF
106 { "execute": "qmp_capabilities" }
107 { "execute": "blockdev-add",
108 "arguments": {
109 "driver": "$IMGFMT",
110 "node-name": "disk",
111 "file": {
112 "driver": "file",
113 "filename": "$TEST_IMG",
114 "aio": "native"
118 { "execute": "quit" }
121 echo
122 echo === Encrypted image QCow ===
123 echo
125 _make_test_img --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 $size
126 run_qemu <<EOF
127 { "execute": "qmp_capabilities" }
128 { "execute": "object-add",
129 "arguments": {
130 "qom-type": "secret",
131 "id": "sec0",
132 "props": {
133 "data": "123456"
137 { "execute": "blockdev-add",
138 "arguments": {
139 "driver": "$IMGFMT",
140 "node-name": "disk",
141 "file": {
142 "driver": "file",
143 "filename": "$TEST_IMG"
145 "encrypt": {
146 "format": "aes",
147 "key-secret": "sec0"
151 { "execute": "quit" }
154 echo
155 echo === Encrypted image LUKS ===
156 echo
158 _make_test_img --object secret,id=sec0,data=123456 -o encrypt.format=luks,encrypt.key-secret=sec0 $size
159 run_qemu <<EOF
160 { "execute": "qmp_capabilities" }
161 { "execute": "object-add",
162 "arguments": {
163 "qom-type": "secret",
164 "id": "sec0",
165 "props": {
166 "data": "123456"
170 { "execute": "blockdev-add",
171 "arguments": {
172 "driver": "$IMGFMT",
173 "node-name": "disk",
174 "file": {
175 "driver": "file",
176 "filename": "$TEST_IMG"
178 "encrypt": {
179 "format": "luks",
180 "key-secret": "sec0"
184 { "execute": "quit" }
187 echo
188 echo === Missing driver ===
189 echo
191 _make_test_img --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 $size
192 run_qemu -S <<EOF
193 { "execute": "qmp_capabilities" }
194 { "execute": "blockdev-add",
195 "arguments": {
196 "node-name": "disk"
199 { "execute": "quit" }
202 # success, all done
203 echo "*** done"
204 rm -f $seq.full
205 status=0