fuzz: add virtio-9p configurations for fuzzing
[qemu/ar7.git] / tests / qemu-iotests / 184
blob513d167098edd271839ed71fbbd8a30312a717f6
1 #!/usr/bin/env bash
2 # group: rw auto quick
4 # Test I/O throttle block filter driver interface
6 # Copyright (C) 2017 Manos Pitsidianakis
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/>.
22 # creator
23 owner="Manos Pitsidianakis"
25 seq=`basename $0`
26 echo "QA output created by $seq"
28 status=1 # failure is the default!
30 trap "exit \$status" 0 1 2 3 15
32 # get standard environment, filters and checks
33 . ./common.rc
34 . ./common.filter
36 _supported_os Linux
37 _require_drivers throttle
39 do_run_qemu()
41 echo Testing: "$@" | _filter_imgfmt
42 $QEMU -nographic -qmp-pretty stdio -serial none "$@"
43 echo
46 run_qemu()
48 do_run_qemu "$@" 2>&1 | _filter_testdir | _filter_qemu | _filter_qmp\
49 | _filter_qemu_io | _filter_generated_node_ids
52 test_throttle=$($QEMU_IMG --help|grep throttle)
53 [ "$test_throttle" = "" ] && _supported_fmt throttle
55 echo
56 echo "== checking interface =="
58 run_qemu <<EOF
59 { "execute": "qmp_capabilities" }
60 { "execute": "blockdev-add",
61 "arguments": {
62 "driver": "null-co",
63 "node-name": "disk0"
66 { "execute": "object-add",
67 "arguments": {
68 "qom-type": "throttle-group",
69 "id": "group0",
70 "props": {
71 "limits" : {
72 "iops-total": 1000
77 { "execute": "blockdev-add",
78 "arguments": {
79 "driver": "throttle",
80 "node-name": "throttle0",
81 "throttle-group": "group0",
82 "file": "disk0"
85 { "execute": "query-named-block-nodes" }
86 { "execute": "query-block" }
87 { "execute": "quit" }
88 EOF
90 echo
91 echo "== property changes in ThrottleGroup =="
93 run_qemu <<EOF
94 { "execute": "qmp_capabilities" }
95 { "execute": "object-add",
96 "arguments": {
97 "qom-type": "throttle-group",
98 "id": "group0",
99 "props" : {
100 "limits": {
101 "iops-total": 1000
106 { "execute" : "qom-get",
107 "arguments" : {
108 "path" : "group0",
109 "property" : "limits"
112 { "execute" : "qom-set",
113 "arguments" : {
114 "path" : "group0",
115 "property" : "limits",
116 "value" : {
117 "iops-total" : 0
121 { "execute" : "qom-get",
122 "arguments" : {
123 "path" : "group0",
124 "property" : "limits"
127 { "execute": "quit" }
130 echo
131 echo "== object creation/set errors =="
133 run_qemu <<EOF
134 { "execute": "qmp_capabilities" }
135 { "execute": "object-add",
136 "arguments": {
137 "qom-type": "throttle-group",
138 "id": "group0",
139 "props" : {
140 "limits": {
141 "iops-total": 1000
146 { "execute" : "qom-set",
147 "arguments" : {
148 "path" : "group0",
149 "property" : "x-iops-total",
150 "value" : 0
153 { "execute" : "qom-set",
154 "arguments" : {
155 "path" : "group0",
156 "property" : "limits",
157 "value" : {
158 "iops-total" : 10,
159 "iops-read" : 10
163 { "execute": "quit" }
166 echo
167 echo "== don't specify group =="
169 run_qemu <<EOF
170 { "execute": "qmp_capabilities" }
171 { "execute": "blockdev-add",
172 "arguments": {
173 "driver": "null-co",
174 "node-name": "disk0"
177 { "execute": "blockdev-add",
178 "arguments": {
179 "driver": "throttle",
180 "node-name": "throttle0",
181 "file": "disk0"
184 { "execute": "quit" }
187 echo
188 # success, all done
189 echo "*** done"
190 rm -f $seq.full
191 status=0