Blame SOURCES/kvm-iotests-Test-help-option-for-unsupporting-formats.patch

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