]> Git Repo - qemu.git/blame - tests/qemu-iotests/087
qemu-iotests: improve nbd-fault-injector.py startup protocol
[qemu.git] / tests / qemu-iotests / 087
CommitLineData
c75203c8
KW
1#!/bin/bash
2#
3# Test unsupported blockdev-add cases
4#
5# Copyright (C) 2014 Red Hat, Inc.
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
22[email protected]
23
24seq=`basename $0`
25echo "QA output created by $seq"
26
27here=`pwd`
c75203c8
KW
28status=1 # failure is the default!
29
30# get standard environment, filters and checks
31. ./common.rc
32. ./common.filter
33
34_supported_fmt qcow2
35_supported_proto file
36_supported_os Linux
37
38function do_run_qemu()
39{
40 echo Testing: "$@"
41 $QEMU -nographic -qmp stdio -serial none "$@"
42 echo
43}
44
45function run_qemu()
46{
e6ff69bf
DB
47 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp \
48 | _filter_qemu | _filter_imgfmt \
4dd7b8d3 49 | sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g'
c75203c8
KW
50}
51
52size=128M
53
54_make_test_img $size
55
56echo
be4b67bc 57echo === Missing ID and node-name ===
c75203c8
KW
58echo
59
60run_qemu <<EOF
61{ "execute": "qmp_capabilities" }
62{ "execute": "blockdev-add",
63 "arguments": {
0153d2f5
KW
64 "driver": "$IMGFMT",
65 "file": {
66 "driver": "file",
67 "filename": "$TEST_IMG"
c75203c8
KW
68 }
69 }
70 }
71{ "execute": "quit" }
72EOF
73
f2d953ec
KW
74echo
75echo === Duplicate ID ===
76echo
77
5feb08ed 78run_qemu -drive driver=$IMGFMT,id=disk,node-name=test-node,file="$TEST_IMG" <<EOF
f2d953ec
KW
79{ "execute": "qmp_capabilities" }
80{ "execute": "blockdev-add",
81 "arguments": {
0153d2f5
KW
82 "driver": "$IMGFMT",
83 "node-name": "disk",
84 "file": {
d5b8336a 85 "driver": "null-co"
90d9d301
KW
86 }
87 }
88 }
89{ "execute": "blockdev-add",
90 "arguments": {
0153d2f5
KW
91 "driver": "$IMGFMT",
92 "node-name": "test-node",
93 "file": {
d5b8336a 94 "driver": "null-co"
90d9d301
KW
95 }
96 }
97 }
f2d953ec
KW
98{ "execute": "quit" }
99EOF
100
c75203c8
KW
101echo
102echo === aio=native without O_DIRECT ===
103echo
104
105run_qemu <<EOF
106{ "execute": "qmp_capabilities" }
107{ "execute": "blockdev-add",
108 "arguments": {
0153d2f5
KW
109 "driver": "$IMGFMT",
110 "node-name": "disk",
111 "file": {
112 "driver": "file",
113 "filename": "$TEST_IMG",
114 "aio": "native"
c75203c8
KW
115 }
116 }
117 }
118{ "execute": "quit" }
119EOF
120
121echo
426d52d8 122echo === Encrypted image QCow ===
c75203c8
KW
123echo
124
b25b387f
DB
125_make_test_img --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 $size
126run_qemu <<EOF
c3adb58f 127{ "execute": "qmp_capabilities" }
b25b387f 128{ "execute": "object-add",
c3adb58f 129 "arguments": {
b25b387f
DB
130 "qom-type": "secret",
131 "id": "sec0",
132 "props": {
133 "data": "123456"
c3adb58f 134 }
c3adb58f 135 }
b25b387f 136}
c75203c8
KW
137{ "execute": "blockdev-add",
138 "arguments": {
0153d2f5
KW
139 "driver": "$IMGFMT",
140 "node-name": "disk",
141 "file": {
142 "driver": "file",
143 "filename": "$TEST_IMG"
b25b387f
DB
144 },
145 "encrypt": {
146 "format": "aes",
147 "key-secret": "sec0"
c75203c8
KW
148 }
149 }
150 }
151{ "execute": "quit" }
152EOF
153
426d52d8
DB
154echo
155echo === Encrypted image LUKS ===
156echo
157
158_make_test_img --object secret,id=sec0,data=123456 -o encrypt.format=luks,encrypt.key-secret=sec0 $size
159run_qemu <<EOF
160{ "execute": "qmp_capabilities" }
161{ "execute": "object-add",
162 "arguments": {
163 "qom-type": "secret",
164 "id": "sec0",
165 "props": {
166 "data": "123456"
167 }
168 }
169}
170{ "execute": "blockdev-add",
171 "arguments": {
172 "driver": "$IMGFMT",
173 "node-name": "disk",
174 "file": {
175 "driver": "file",
176 "filename": "$TEST_IMG"
177 },
178 "encrypt": {
179 "format": "luks",
180 "key-secret": "sec0"
181 }
182 }
183 }
184{ "execute": "quit" }
185EOF
186
fe509ee2
FZ
187echo
188echo === Missing driver ===
189echo
190
b25b387f 191_make_test_img --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 $size
fe509ee2
FZ
192run_qemu -S <<EOF
193{ "execute": "qmp_capabilities" }
194{ "execute": "blockdev-add",
195 "arguments": {
0153d2f5 196 "node-name": "disk"
fe509ee2
FZ
197 }
198 }
199{ "execute": "quit" }
200EOF
201
c75203c8
KW
202# success, all done
203echo "*** done"
204rm -f $seq.full
205status=0
This page took 0.232279 seconds and 4 git commands to generate.