Add qemu 2.4.0
[kvmfornfv.git] / qemu / tests / qemu-iotests / 067
1 #!/bin/bash
2 #
3 # Test automatic deletion of BDSes created by -drive/drive_add
4 #
5 # Copyright (C) 2013 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 owner=kwolf@redhat.com
23
24 seq=`basename $0`
25 echo "QA output created by $seq"
26
27 here=`pwd`
28 tmp=/tmp/$$
29 status=1        # failure is the default!
30
31 # get standard environment, filters and checks
32 . ./common.rc
33 . ./common.filter
34
35 _supported_fmt qcow2
36 _supported_proto file
37 _supported_os Linux
38 # Because anything other than 16 would change the output of query-block
39 _unsupported_imgopts 'refcount_bits=\([^1]\|.\([^6]\|$\)\)'
40
41 function do_run_qemu()
42 {
43     echo Testing: "$@"
44     $QEMU -nographic -qmp-pretty stdio -serial none "$@"
45     echo
46 }
47
48 function run_qemu()
49 {
50     do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp | _filter_qemu \
51                           | sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g'
52 }
53
54 size=128M
55
56 _make_test_img $size
57
58 echo
59 echo === -drive/-device and device_del ===
60 echo
61
62 run_qemu -drive file=$TEST_IMG,format=$IMGFMT,if=none,id=disk -device virtio-blk-pci,drive=disk,id=virtio0 <<EOF
63 { "execute": "qmp_capabilities" }
64 { "execute": "query-block" }
65 { "execute": "device_del", "arguments": { "id": "virtio0" } }
66 { "execute": "system_reset" }
67 { "execute": "query-block" }
68 { "execute": "quit" }
69 EOF
70
71 echo
72 echo === -drive/device_add and device_del ===
73 echo
74
75 run_qemu -drive file=$TEST_IMG,format=$IMGFMT,if=none,id=disk <<EOF
76 { "execute": "qmp_capabilities" }
77 { "execute": "query-block" }
78 { "execute": "device_add",
79    "arguments": { "driver": "virtio-blk-pci", "drive": "disk",
80                   "id": "virtio0" } }
81 { "execute": "device_del", "arguments": { "id": "virtio0" } }
82 { "execute": "system_reset" }
83 { "execute": "query-block" }
84 { "execute": "quit" }
85 EOF
86
87 echo
88 echo === drive_add/device_add and device_del ===
89 echo
90
91 run_qemu <<EOF
92 { "execute": "qmp_capabilities" }
93 { "execute": "human-monitor-command",
94   "arguments": { "command-line": "drive_add 0 file=$TEST_IMG,format=$IMGFMT,if=none,id=disk" } }
95 { "execute": "query-block" }
96 { "execute": "device_add",
97    "arguments": { "driver": "virtio-blk-pci", "drive": "disk",
98                   "id": "virtio0" } }
99 { "execute": "device_del", "arguments": { "id": "virtio0" } }
100 { "execute": "system_reset" }
101 { "execute": "query-block" }
102 { "execute": "quit" }
103 EOF
104
105 echo
106 echo === blockdev_add/device_add and device_del ===
107 echo
108
109 run_qemu <<EOF
110 { "execute": "qmp_capabilities" }
111 { "execute": "blockdev-add",
112   "arguments": {
113       "options": {
114         "driver": "$IMGFMT",
115         "id": "disk",
116         "file": {
117             "driver": "file",
118             "filename": "$TEST_IMG"
119         }
120       }
121     }
122   }
123 { "execute": "query-block" }
124 { "execute": "device_add",
125    "arguments": { "driver": "virtio-blk-pci", "drive": "disk",
126                   "id": "virtio0" } }
127 { "execute": "device_del", "arguments": { "id": "virtio0" } }
128 { "execute": "system_reset" }
129 { "execute": "query-block" }
130 { "execute": "quit" }
131 EOF
132
133 # success, all done
134 echo "*** done"
135 rm -f $seq.full
136 status=0