4 # Test unsupported blockdev-add cases
6 # Copyright (C) 2014 Red Hat, Inc.
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
26 echo "QA output created by $seq"
28 status=1 # failure is the default!
34 trap "_cleanup; exit \$status" 0 1 2 3 15
36 # get standard environment, filters and checks
48 $QEMU -nographic -qmp stdio -serial none "$@"
54 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp \
55 | _filter_qemu | _filter_imgfmt \
56 | _filter_actual_image_size
64 echo === Missing ID and node-name ===
68 { "execute": "qmp_capabilities" }
69 { "execute": "blockdev-add",
74 "filename": "$TEST_IMG"
82 echo === Duplicate ID ===
85 run_qemu -drive driver=$IMGFMT,id=disk,node-name=test-node,file="$TEST_IMG" <<EOF
86 { "execute": "qmp_capabilities" }
87 { "execute": "blockdev-add",
96 { "execute": "blockdev-add",
99 "node-name": "test-node",
105 { "execute": "quit" }
109 echo === aio=native without O_DIRECT ===
112 # Skip this test if AIO is not enabled in this build
113 run_qemu_filter_aio()
116 sed -e 's/is not supported in this build/it requires cache.direct=on, which was not specified/'
119 run_qemu_filter_aio <<EOF
120 { "execute": "qmp_capabilities" }
121 { "execute": "blockdev-add",
127 "filename": "$TEST_IMG",
132 { "execute": "quit" }
136 echo === Encrypted image QCow ===
139 _make_test_img --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 $size
141 { "execute": "qmp_capabilities" }
142 { "execute": "object-add",
144 "qom-type": "secret",
149 { "execute": "blockdev-add",
155 "filename": "$TEST_IMG"
163 { "execute": "quit" }
167 echo === Encrypted image LUKS ===
170 _make_test_img --object secret,id=sec0,data=123456 -o encrypt.format=luks,encrypt.key-secret=sec0 $size
172 { "execute": "qmp_capabilities" }
173 { "execute": "object-add",
175 "qom-type": "secret",
180 { "execute": "blockdev-add",
186 "filename": "$TEST_IMG"
194 { "execute": "quit" }
198 echo === Missing driver ===
201 _make_test_img --object secret,id=sec0,data=123456 -o encryption=on,encrypt.key-secret=sec0 $size
203 { "execute": "qmp_capabilities" }
204 { "execute": "blockdev-add",
209 { "execute": "quit" }