]>
Commit | Line | Data |
---|---|---|
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 | ||
24 | seq=`basename $0` | |
25 | echo "QA output created by $seq" | |
26 | ||
27 | here=`pwd` | |
c75203c8 KW |
28 | status=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 | ||
38 | function do_run_qemu() | |
39 | { | |
40 | echo Testing: "$@" | |
41 | $QEMU -nographic -qmp stdio -serial none "$@" | |
42 | echo | |
43 | } | |
44 | ||
45 | function run_qemu() | |
46 | { | |
e6ff69bf DB |
47 | do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp \ |
48 | | _filter_qemu | _filter_imgfmt \ | |
44673a0b | 49 | | _filter_actual_image_size |
c75203c8 KW |
50 | } |
51 | ||
52 | size=128M | |
53 | ||
54 | _make_test_img $size | |
55 | ||
56 | echo | |
be4b67bc | 57 | echo === Missing ID and node-name === |
c75203c8 KW |
58 | echo |
59 | ||
60 | run_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" } | |
72 | EOF | |
73 | ||
f2d953ec KW |
74 | echo |
75 | echo === Duplicate ID === | |
76 | echo | |
77 | ||
5feb08ed | 78 | run_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" } |
99 | EOF | |
100 | ||
c75203c8 KW |
101 | echo |
102 | echo === aio=native without O_DIRECT === | |
103 | echo | |
104 | ||
c0012e9a HR |
105 | # Skip this test if AIO is not enabled in this build |
106 | function run_qemu_filter_aio() | |
107 | { | |
108 | run_qemu "$@" | \ | |
109 | sed -e 's/is not supported in this build/it requires cache.direct=on, which was not specified/' | |
110 | } | |
111 | ||
112 | run_qemu_filter_aio <<EOF | |
c75203c8 KW |
113 | { "execute": "qmp_capabilities" } |
114 | { "execute": "blockdev-add", | |
115 | "arguments": { | |
0153d2f5 KW |
116 | "driver": "$IMGFMT", |
117 | "node-name": "disk", | |
118 | "file": { | |
119 | "driver": "file", | |
120 | "filename": "$TEST_IMG", | |
121 | "aio": "native" | |
c75203c8 KW |
122 | } |
123 | } | |
124 | } | |
125 | { "execute": "quit" } | |
126 | EOF | |
127 | ||
128 | echo | |
426d52d8 | 129 | echo === Encrypted image QCow === |
c75203c8 KW |
130 | echo |
131 | ||
b25b387f DB |
132 | _make_test_img --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 $size |
133 | run_qemu <<EOF | |
c3adb58f | 134 | { "execute": "qmp_capabilities" } |
b25b387f | 135 | { "execute": "object-add", |
c3adb58f | 136 | "arguments": { |
b25b387f DB |
137 | "qom-type": "secret", |
138 | "id": "sec0", | |
139 | "props": { | |
140 | "data": "123456" | |
c3adb58f | 141 | } |
c3adb58f | 142 | } |
b25b387f | 143 | } |
c75203c8 KW |
144 | { "execute": "blockdev-add", |
145 | "arguments": { | |
0153d2f5 KW |
146 | "driver": "$IMGFMT", |
147 | "node-name": "disk", | |
148 | "file": { | |
149 | "driver": "file", | |
150 | "filename": "$TEST_IMG" | |
b25b387f DB |
151 | }, |
152 | "encrypt": { | |
153 | "format": "aes", | |
154 | "key-secret": "sec0" | |
c75203c8 KW |
155 | } |
156 | } | |
157 | } | |
158 | { "execute": "quit" } | |
159 | EOF | |
160 | ||
426d52d8 DB |
161 | echo |
162 | echo === Encrypted image LUKS === | |
163 | echo | |
164 | ||
165 | _make_test_img --object secret,id=sec0,data=123456 -o encrypt.format=luks,encrypt.key-secret=sec0 $size | |
166 | run_qemu <<EOF | |
167 | { "execute": "qmp_capabilities" } | |
168 | { "execute": "object-add", | |
169 | "arguments": { | |
170 | "qom-type": "secret", | |
171 | "id": "sec0", | |
172 | "props": { | |
173 | "data": "123456" | |
174 | } | |
175 | } | |
176 | } | |
177 | { "execute": "blockdev-add", | |
178 | "arguments": { | |
179 | "driver": "$IMGFMT", | |
180 | "node-name": "disk", | |
181 | "file": { | |
182 | "driver": "file", | |
183 | "filename": "$TEST_IMG" | |
184 | }, | |
185 | "encrypt": { | |
186 | "format": "luks", | |
187 | "key-secret": "sec0" | |
188 | } | |
189 | } | |
190 | } | |
191 | { "execute": "quit" } | |
192 | EOF | |
193 | ||
fe509ee2 FZ |
194 | echo |
195 | echo === Missing driver === | |
196 | echo | |
197 | ||
b25b387f | 198 | _make_test_img --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 $size |
fe509ee2 FZ |
199 | run_qemu -S <<EOF |
200 | { "execute": "qmp_capabilities" } | |
201 | { "execute": "blockdev-add", | |
202 | "arguments": { | |
0153d2f5 | 203 | "node-name": "disk" |
fe509ee2 FZ |
204 | } |
205 | } | |
206 | { "execute": "quit" } | |
207 | EOF | |
208 | ||
c75203c8 KW |
209 | # success, all done |
210 | echo "*** done" | |
211 | rm -f $seq.full | |
212 | status=0 |