Kevin Wolf | a9b4339 | 2013-09-18 16:47:41 +0200 | [diff] [blame] | 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 |
Max Reitz | 5262caa | 2015-02-18 17:40:48 -0500 | [diff] [blame] | 38 | # Because anything other than 16 would change the output of query-block |
| 39 | _unsupported_imgopts 'refcount_bits=\([^1]\|.\([^6]\|$\)\)' |
Kevin Wolf | a9b4339 | 2013-09-18 16:47:41 +0200 | [diff] [blame] | 40 | |
| 41 | function do_run_qemu() |
| 42 | { |
| 43 | echo Testing: "$@" |
Max Reitz | 2389eea | 2014-11-17 13:31:06 +0100 | [diff] [blame] | 44 | $QEMU -nographic -qmp-pretty stdio -serial none "$@" |
Kevin Wolf | a9b4339 | 2013-09-18 16:47:41 +0200 | [diff] [blame] | 45 | echo |
| 46 | } |
| 47 | |
Sascha Silbe | f436c94 | 2016-02-19 14:01:09 +0100 | [diff] [blame] | 48 | # Remove QMP events from (pretty-printed) output. Doesn't handle |
| 49 | # nested dicts correctly, but we don't get any of those in this test. |
| 50 | _filter_qmp_events() |
| 51 | { |
| 52 | tr '\n' '\t' | sed -e \ |
| 53 | 's/{\s*"timestamp":\s*{[^}]*},\s*"event":[^,}]*\(,\s*"data":\s*{[^}]*}\)\?\s*}\s*//g' \ |
| 54 | | tr '\t' '\n' |
| 55 | } |
| 56 | |
Kevin Wolf | a9b4339 | 2013-09-18 16:47:41 +0200 | [diff] [blame] | 57 | function run_qemu() |
| 58 | { |
Max Reitz | 4dd7b8d | 2014-12-19 17:17:06 +0100 | [diff] [blame] | 59 | do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qmp | _filter_qemu \ |
Jeff Cody | 15489c7 | 2015-10-12 19:36:50 -0400 | [diff] [blame] | 60 | | sed -e 's/\("actual-size":\s*\)[0-9]\+/\1SIZE/g' \ |
Sascha Silbe | f436c94 | 2016-02-19 14:01:09 +0100 | [diff] [blame] | 61 | | _filter_generated_node_ids | _filter_qmp_events |
Kevin Wolf | a9b4339 | 2013-09-18 16:47:41 +0200 | [diff] [blame] | 62 | } |
| 63 | |
| 64 | size=128M |
| 65 | |
| 66 | _make_test_img $size |
| 67 | |
| 68 | echo |
| 69 | echo === -drive/-device and device_del === |
| 70 | echo |
| 71 | |
Bo Tu | 2711fd3 | 2015-07-03 15:28:47 +0800 | [diff] [blame] | 72 | run_qemu -drive file=$TEST_IMG,format=$IMGFMT,if=none,id=disk -device virtio-blk,drive=disk,id=virtio0 <<EOF |
Kevin Wolf | a9b4339 | 2013-09-18 16:47:41 +0200 | [diff] [blame] | 73 | { "execute": "qmp_capabilities" } |
| 74 | { "execute": "query-block" } |
| 75 | { "execute": "device_del", "arguments": { "id": "virtio0" } } |
| 76 | { "execute": "system_reset" } |
| 77 | { "execute": "query-block" } |
| 78 | { "execute": "quit" } |
| 79 | EOF |
| 80 | |
| 81 | echo |
| 82 | echo === -drive/device_add and device_del === |
| 83 | echo |
| 84 | |
| 85 | run_qemu -drive file=$TEST_IMG,format=$IMGFMT,if=none,id=disk <<EOF |
| 86 | { "execute": "qmp_capabilities" } |
| 87 | { "execute": "query-block" } |
| 88 | { "execute": "device_add", |
Bo Tu | 2711fd3 | 2015-07-03 15:28:47 +0800 | [diff] [blame] | 89 | "arguments": { "driver": "virtio-blk", "drive": "disk", |
Kevin Wolf | a9b4339 | 2013-09-18 16:47:41 +0200 | [diff] [blame] | 90 | "id": "virtio0" } } |
| 91 | { "execute": "device_del", "arguments": { "id": "virtio0" } } |
| 92 | { "execute": "system_reset" } |
| 93 | { "execute": "query-block" } |
| 94 | { "execute": "quit" } |
| 95 | EOF |
| 96 | |
| 97 | echo |
| 98 | echo === drive_add/device_add and device_del === |
| 99 | echo |
| 100 | |
| 101 | run_qemu <<EOF |
| 102 | { "execute": "qmp_capabilities" } |
| 103 | { "execute": "human-monitor-command", |
| 104 | "arguments": { "command-line": "drive_add 0 file=$TEST_IMG,format=$IMGFMT,if=none,id=disk" } } |
| 105 | { "execute": "query-block" } |
| 106 | { "execute": "device_add", |
Bo Tu | 2711fd3 | 2015-07-03 15:28:47 +0800 | [diff] [blame] | 107 | "arguments": { "driver": "virtio-blk", "drive": "disk", |
Kevin Wolf | a9b4339 | 2013-09-18 16:47:41 +0200 | [diff] [blame] | 108 | "id": "virtio0" } } |
| 109 | { "execute": "device_del", "arguments": { "id": "virtio0" } } |
| 110 | { "execute": "system_reset" } |
| 111 | { "execute": "query-block" } |
| 112 | { "execute": "quit" } |
| 113 | EOF |
| 114 | |
| 115 | echo |
| 116 | echo === blockdev_add/device_add and device_del === |
| 117 | echo |
| 118 | |
| 119 | run_qemu <<EOF |
| 120 | { "execute": "qmp_capabilities" } |
| 121 | { "execute": "blockdev-add", |
| 122 | "arguments": { |
| 123 | "options": { |
| 124 | "driver": "$IMGFMT", |
| 125 | "id": "disk", |
| 126 | "file": { |
| 127 | "driver": "file", |
| 128 | "filename": "$TEST_IMG" |
| 129 | } |
| 130 | } |
| 131 | } |
| 132 | } |
| 133 | { "execute": "query-block" } |
| 134 | { "execute": "device_add", |
Bo Tu | 2711fd3 | 2015-07-03 15:28:47 +0800 | [diff] [blame] | 135 | "arguments": { "driver": "virtio-blk", "drive": "disk", |
Kevin Wolf | a9b4339 | 2013-09-18 16:47:41 +0200 | [diff] [blame] | 136 | "id": "virtio0" } } |
| 137 | { "execute": "device_del", "arguments": { "id": "virtio0" } } |
| 138 | { "execute": "system_reset" } |
| 139 | { "execute": "query-block" } |
| 140 | { "execute": "quit" } |
| 141 | EOF |
| 142 | |
| 143 | # success, all done |
| 144 | echo "*** done" |
| 145 | rm -f $seq.full |
| 146 | status=0 |