xref: /qemu/tests/qemu-iotests/082 (revision ab9056ff)
1#!/usr/bin/env bash
2#
3# Test qemu-img command line parsing
4#
5# Copyright (C) 2014 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
22owner=kwolf@redhat.com
23
24seq=`basename $0`
25echo "QA output created by $seq"
26
27status=1	# failure is the default!
28
29_cleanup()
30{
31	_cleanup_test_img
32}
33trap "_cleanup; exit \$status" 0 1 2 3 15
34
35# get standard environment, filters and checks
36. ./common.rc
37. ./common.filter
38
39_supported_fmt qcow2
40_supported_proto file nfs
41
42run_qemu_img()
43{
44    echo
45    echo Testing: "$@" | _filter_testdir
46    "$QEMU_IMG" "$@" 2>&1 | _filter_testdir
47}
48
49size=128M
50
51echo
52echo === create: Options specified more than once ===
53
54# Last -f should win
55run_qemu_img create -f foo -f $IMGFMT "$TEST_IMG" $size
56_img_info
57
58# Multiple -o should be merged
59run_qemu_img create -f $IMGFMT -o cluster_size=4k -o lazy_refcounts=on "$TEST_IMG" $size
60_img_info --format-specific
61
62# If the same -o key is specified more than once, the last one wins
63run_qemu_img create -f $IMGFMT -o cluster_size=4k -o lazy_refcounts=on -o cluster_size=8k "$TEST_IMG" $size
64_img_info --format-specific
65run_qemu_img create -f $IMGFMT -o cluster_size=4k,cluster_size=8k "$TEST_IMG" $size
66_img_info
67
68echo
69echo === create: help for -o ===
70
71# Adding the help option to a command without other -o options
72run_qemu_img create -f $IMGFMT -o help "$TEST_IMG" $size
73run_qemu_img create -f $IMGFMT -o \? "$TEST_IMG" $size
74
75# Adding the help option to the same -o option
76run_qemu_img create -f $IMGFMT -o cluster_size=4k,help "$TEST_IMG" $size
77run_qemu_img create -f $IMGFMT -o cluster_size=4k,\? "$TEST_IMG" $size
78run_qemu_img create -f $IMGFMT -o help,cluster_size=4k "$TEST_IMG" $size
79run_qemu_img create -f $IMGFMT -o \?,cluster_size=4k "$TEST_IMG" $size
80
81# Adding the help option to a separate -o option
82run_qemu_img create -f $IMGFMT -o cluster_size=4k -o help "$TEST_IMG" $size
83run_qemu_img create -f $IMGFMT -o cluster_size=4k -o \? "$TEST_IMG" $size
84
85# Looks like a help option, but is part of the backing file name
86run_qemu_img create -f $IMGFMT -u -o backing_file="$TEST_IMG",,help "$TEST_IMG" $size
87run_qemu_img create -f $IMGFMT -u -o backing_file="$TEST_IMG",,\? "$TEST_IMG" $size
88
89# Try to trick qemu-img into creating escaped commas
90run_qemu_img create -f $IMGFMT -o backing_file="$TEST_IMG", -o help "$TEST_IMG" $size
91run_qemu_img create -f $IMGFMT -o backing_file="$TEST_IMG" -o ,help "$TEST_IMG" $size
92run_qemu_img create -f $IMGFMT -o backing_file="$TEST_IMG" -o ,, -o help "$TEST_IMG" $size
93
94# Leave out everything that isn't needed
95run_qemu_img create -f $IMGFMT -o help
96run_qemu_img create -o help
97
98# Try help option for a format that does not support creation
99run_qemu_img create -f bochs -o help
100
101echo
102echo === convert: Options specified more than once ===
103
104# We need a valid source image
105run_qemu_img create -f $IMGFMT "$TEST_IMG" $size
106
107# Last -f should win
108run_qemu_img convert -f foo -f $IMGFMT "$TEST_IMG" "$TEST_IMG".base
109TEST_IMG="${TEST_IMG}.base" _img_info
110
111# Last -O should win
112run_qemu_img convert -O foo -O $IMGFMT "$TEST_IMG" "$TEST_IMG".base
113TEST_IMG="${TEST_IMG}.base" _img_info
114
115# Multiple -o should be merged
116run_qemu_img convert -O $IMGFMT -o cluster_size=4k -o lazy_refcounts=on "$TEST_IMG" "$TEST_IMG".base
117TEST_IMG="${TEST_IMG}.base" _img_info --format-specific
118
119# If the same -o key is specified more than once, the last one wins
120run_qemu_img convert -O $IMGFMT -o cluster_size=4k -o lazy_refcounts=on -o cluster_size=8k "$TEST_IMG" "$TEST_IMG".base
121TEST_IMG="${TEST_IMG}.base" _img_info --format-specific
122run_qemu_img convert -O $IMGFMT -o cluster_size=4k,cluster_size=8k "$TEST_IMG" "$TEST_IMG".base
123TEST_IMG="${TEST_IMG}.base" _img_info
124
125echo
126echo === convert: help for -o ===
127
128# Adding the help option to a command without other -o options
129run_qemu_img convert -O $IMGFMT -o help "$TEST_IMG" "$TEST_IMG".base
130run_qemu_img convert -O $IMGFMT -o \? "$TEST_IMG" "$TEST_IMG".base
131
132# Adding the help option to the same -o option
133run_qemu_img convert -O $IMGFMT -o cluster_size=4k,help "$TEST_IMG" "$TEST_IMG".base
134run_qemu_img convert -O $IMGFMT -o cluster_size=4k,\? "$TEST_IMG" "$TEST_IMG".base
135run_qemu_img convert -O $IMGFMT -o help,cluster_size=4k "$TEST_IMG" "$TEST_IMG".base
136run_qemu_img convert -O $IMGFMT -o \?,cluster_size=4k "$TEST_IMG" "$TEST_IMG".base
137
138# Adding the help option to a separate -o option
139run_qemu_img convert -O $IMGFMT -o cluster_size=4k -o help "$TEST_IMG" "$TEST_IMG".base
140run_qemu_img convert -O $IMGFMT -o cluster_size=4k -o \? "$TEST_IMG" "$TEST_IMG".base
141
142# Looks like a help option, but is part of the backing file name
143run_qemu_img convert -O $IMGFMT -o backing_file="$TEST_IMG",,help "$TEST_IMG" "$TEST_IMG".base
144run_qemu_img convert -O $IMGFMT -o backing_file="$TEST_IMG",,\? "$TEST_IMG" "$TEST_IMG".base
145
146# Try to trick qemu-img into creating escaped commas
147run_qemu_img convert -O $IMGFMT -o backing_file="$TEST_IMG", -o help "$TEST_IMG" "$TEST_IMG".base
148run_qemu_img convert -O $IMGFMT -o backing_file="$TEST_IMG" -o ,help "$TEST_IMG" "$TEST_IMG".base
149run_qemu_img convert -O $IMGFMT -o backing_file="$TEST_IMG" -o ,, -o help "$TEST_IMG" "$TEST_IMG".base
150
151# Leave out everything that isn't needed
152run_qemu_img convert -O $IMGFMT -o help
153run_qemu_img convert -o help
154
155# Try help option for a format that does not support creation
156run_qemu_img convert -O bochs -o help
157
158echo
159echo === convert: -C and other options ===
160
161# Adding the help option to a command without other -o options
162run_qemu_img convert -C -S 4k -O $IMGFMT "$TEST_IMG" "$TEST_IMG".target
163run_qemu_img convert -C -S 8k -O $IMGFMT "$TEST_IMG" "$TEST_IMG".target
164run_qemu_img convert -C -c -O $IMGFMT "$TEST_IMG" "$TEST_IMG".target
165run_qemu_img convert -C --salvage -O $IMGFMT "$TEST_IMG" "$TEST_IMG".target
166
167echo
168echo === amend: Options specified more than once ===
169
170# Last -f should win
171run_qemu_img amend -f foo -f $IMGFMT -o lazy_refcounts=on "$TEST_IMG"
172_img_info --format-specific
173
174# Multiple -o should be merged
175run_qemu_img amend -f $IMGFMT -o size=130M -o lazy_refcounts=off "$TEST_IMG"
176_img_info --format-specific
177
178# If the same -o key is specified more than once, the last one wins
179run_qemu_img amend -f $IMGFMT -o size=8M -o lazy_refcounts=on -o size=132M "$TEST_IMG"
180_img_info --format-specific
181run_qemu_img amend -f $IMGFMT -o size=4M,size=148M "$TEST_IMG"
182_img_info
183
184echo
185echo === amend: help for -o ===
186
187# Adding the help option to a command without other -o options
188run_qemu_img amend -f $IMGFMT -o help "$TEST_IMG"
189run_qemu_img amend -f $IMGFMT -o \? "$TEST_IMG"
190
191# Adding the help option to the same -o option
192run_qemu_img amend -f $IMGFMT -o cluster_size=4k,help "$TEST_IMG"
193run_qemu_img amend -f $IMGFMT -o cluster_size=4k,\? "$TEST_IMG"
194run_qemu_img amend -f $IMGFMT -o help,cluster_size=4k "$TEST_IMG"
195run_qemu_img amend -f $IMGFMT -o \?,cluster_size=4k "$TEST_IMG"
196
197# Adding the help option to a separate -o option
198run_qemu_img amend -f $IMGFMT -o cluster_size=4k -o help "$TEST_IMG"
199run_qemu_img amend -f $IMGFMT -o cluster_size=4k -o \? "$TEST_IMG"
200
201# Looks like a help option, but is part of the backing file name
202run_qemu_img amend -f $IMGFMT -o backing_file="$TEST_IMG",,help "$TEST_IMG"
203run_qemu_img rebase -u -b "" -f $IMGFMT "$TEST_IMG"
204
205run_qemu_img amend -f $IMGFMT -o backing_file="$TEST_IMG",,\? "$TEST_IMG"
206run_qemu_img rebase -u -b "" -f $IMGFMT "$TEST_IMG"
207
208# Try to trick qemu-img into creating escaped commas
209run_qemu_img amend -f $IMGFMT -o backing_file="$TEST_IMG", -o help "$TEST_IMG"
210run_qemu_img amend -f $IMGFMT -o backing_file="$TEST_IMG" -o ,help "$TEST_IMG"
211run_qemu_img amend -f $IMGFMT -o backing_file="$TEST_IMG" -o ,, -o help "$TEST_IMG"
212
213# Leave out everything that isn't needed
214run_qemu_img amend -f $IMGFMT -o help
215
216# amend requires specifying either a format explicitly, or a file
217# which it can probe
218run_qemu_img amend -o help
219
220# Try help option for a format that does not support amendment
221run_qemu_img amend -f bochs -o help
222
223# success, all done
224echo "*** done"
225rm -f $seq.full
226status=0
227