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/>.
22 owner
=kwolf@redhat.com
25 echo "QA output created by $seq"
27 status
=1 # failure is the default!
29 # get standard environment, filters and checks
40 $QEMU -nographic -qmp stdio
-serial none
"$@"
46 do_run_qemu
"$@" 2>&1 | _filter_testdir | _filter_qmp \
47 | _filter_qemu | _filter_imgfmt \
48 | _filter_actual_image_size
56 echo === Missing ID and node-name
===
60 { "execute": "qmp_capabilities" }
61 { "execute": "blockdev-add",
66 "filename": "$TEST_IMG"
74 echo === Duplicate ID
===
77 run_qemu
-drive driver
=$IMGFMT,id
=disk
,node-name
=test-node
,file="$TEST_IMG" <<EOF
78 { "execute": "qmp_capabilities" }
79 { "execute": "blockdev-add",
88 { "execute": "blockdev-add",
91 "node-name": "test-node",
101 echo === aio
=native without O_DIRECT
===
104 # Skip this test if AIO is not enabled in this build
105 run_qemu_filter_aio
()
108 sed -e 's/is not supported in this build/it requires cache.direct=on, which was not specified/'
111 run_qemu_filter_aio
<<EOF
112 { "execute": "qmp_capabilities" }
113 { "execute": "blockdev-add",
119 "filename": "$TEST_IMG",
124 { "execute": "quit" }
128 echo === Encrypted image QCow
===
131 _make_test_img
--object secret
,id
=sec0
,data
=123456 -o encryption
=on
,encrypt.key-secret
=sec0
$size
133 { "execute": "qmp_capabilities" }
134 { "execute": "object-add",
136 "qom-type": "secret",
143 { "execute": "blockdev-add",
149 "filename": "$TEST_IMG"
157 { "execute": "quit" }
161 echo === Encrypted image LUKS
===
164 _make_test_img
--object secret
,id
=sec0
,data
=123456 -o encrypt.format
=luks
,encrypt.key-secret
=sec0
$size
166 { "execute": "qmp_capabilities" }
167 { "execute": "object-add",
169 "qom-type": "secret",
176 { "execute": "blockdev-add",
182 "filename": "$TEST_IMG"
190 { "execute": "quit" }
194 echo === Missing driver
===
197 _make_test_img
--object secret
,id
=sec0
,data
=123456 -o encryption
=on
,encrypt.key-secret
=sec0
$size
199 { "execute": "qmp_capabilities" }
200 { "execute": "blockdev-add",
205 { "execute": "quit" }