26ba25
From b9ae582a81d3f92dcb23adce12c0068a6e3abaf5 Mon Sep 17 00:00:00 2001
26ba25
From: Max Reitz <mreitz@redhat.com>
26ba25
Date: Mon, 18 Jun 2018 14:59:42 +0200
26ba25
Subject: [PATCH 069/268] iotests: Test help option for unsupporting formats
26ba25
26ba25
RH-Author: Max Reitz <mreitz@redhat.com>
26ba25
Message-id: <20180618145943.4489-7-mreitz@redhat.com>
26ba25
Patchwork-id: 80760
26ba25
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 6/7] iotests: Test help option for unsupporting formats
26ba25
Bugzilla: 1537956
26ba25
RH-Acked-by: John Snow <jsnow@redhat.com>
26ba25
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
26ba25
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
26ba25
26ba25
This adds test cases to 082 for qemu-img create/convert/amend "-o help"
26ba25
on formats that do not support creation or amendment, respectively.
26ba25
26ba25
Signed-off-by: Max Reitz <mreitz@redhat.com>
26ba25
Reviewed-by: John Snow <jsnow@redhat.com>
26ba25
Reviewed-by: Eric Blake <eblake@redhat.com>
26ba25
Message-id: 20180509210023.20283-7-mreitz@redhat.com
26ba25
Signed-off-by: Max Reitz <mreitz@redhat.com>
26ba25
(cherry picked from commit e53995eb19b546b18d1a34cd6eaa07faedbade79)
26ba25
Signed-off-by: Max Reitz <mreitz@redhat.com>
26ba25
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
26ba25
---
26ba25
 tests/qemu-iotests/082     | 9 +++++++++
26ba25
 tests/qemu-iotests/082.out | 9 +++++++++
26ba25
 2 files changed, 18 insertions(+)
26ba25
26ba25
diff --git a/tests/qemu-iotests/082 b/tests/qemu-iotests/082
26ba25
index d5c83d4..a872f77 100755
26ba25
--- a/tests/qemu-iotests/082
26ba25
+++ b/tests/qemu-iotests/082
26ba25
@@ -97,6 +97,9 @@ run_qemu_img create -f $IMGFMT -o backing_file="$TEST_IMG" -o ,, -o help "$TEST_
26ba25
 run_qemu_img create -f $IMGFMT -o help
26ba25
 run_qemu_img create -o help
26ba25
 
26ba25
+# Try help option for a format that does not support creation
26ba25
+run_qemu_img create -f bochs -o help
26ba25
+
26ba25
 echo
26ba25
 echo === convert: Options specified more than once ===
26ba25
 
26ba25
@@ -151,6 +154,9 @@ run_qemu_img convert -O $IMGFMT -o backing_file="$TEST_IMG" -o ,, -o help "$TEST
26ba25
 run_qemu_img convert -O $IMGFMT -o help
26ba25
 run_qemu_img convert -o help
26ba25
 
26ba25
+# Try help option for a format that does not support creation
26ba25
+run_qemu_img convert -O bochs -o help
26ba25
+
26ba25
 echo
26ba25
 echo === amend: Options specified more than once ===
26ba25
 
26ba25
@@ -201,6 +207,9 @@ run_qemu_img amend -f $IMGFMT -o backing_file="$TEST_IMG" -o ,, -o help "$TEST_I
26ba25
 run_qemu_img amend -f $IMGFMT -o help
26ba25
 run_qemu_img convert -o help
26ba25
 
26ba25
+# Try help option for a format that does not support amendment
26ba25
+run_qemu_img amend -f bochs -o help
26ba25
+
26ba25
 # success, all done
26ba25
 echo "*** done"
26ba25
 rm -f $seq.full
26ba25
diff --git a/tests/qemu-iotests/082.out b/tests/qemu-iotests/082.out
26ba25
index 4e52dce..60ef87c 100644
26ba25
--- a/tests/qemu-iotests/082.out
26ba25
+++ b/tests/qemu-iotests/082.out
26ba25
@@ -249,6 +249,9 @@ Testing: create -o help
26ba25
 Supported options:
26ba25
 size             Virtual disk size
26ba25
 
26ba25
+Testing: create -f bochs -o help
26ba25
+qemu-img: Format driver 'bochs' does not support image creation
26ba25
+
26ba25
 === convert: Options specified more than once ===
26ba25
 
26ba25
 Testing: create -f qcow2 TEST_DIR/t.qcow2 128M
26ba25
@@ -502,6 +505,9 @@ Testing: convert -o help
26ba25
 Supported options:
26ba25
 size             Virtual disk size
26ba25
 
26ba25
+Testing: convert -O bochs -o help
26ba25
+qemu-img: Format driver 'bochs' does not support image creation
26ba25
+
26ba25
 === amend: Options specified more than once ===
26ba25
 
26ba25
 Testing: amend -f foo -f qcow2 -o lazy_refcounts=on TEST_DIR/t.qcow2
26ba25
@@ -763,4 +769,7 @@ Note that not all of these options may be amendable.
26ba25
 Testing: convert -o help
26ba25
 Supported options:
26ba25
 size             Virtual disk size
26ba25
+
26ba25
+Testing: amend -f bochs -o help
26ba25
+qemu-img: Format driver 'bochs' does not support option amendment
26ba25
 *** done
26ba25
-- 
26ba25
1.8.3.1
26ba25