Merge remote-tracking branch 'remotes/nvme/tags/nvme-fixes-20210407-pull-request...
[qemu/ar7.git] / tests / qemu-iotests / 282
blob3140445989fa7202528284dbe557a572428a9a39
1 #!/usr/bin/env bash
2 # group: rw img quick
4 # Test qemu-img file cleanup for LUKS when using a non-UTF8 secret
6 # Copyright (C) 2020, IBM Corporation.
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 seq=`basename $0`
23 echo "QA output created by $seq"
25 status=1 # failure is the default!
26 TEST_IMAGE_FILE='vol.img'
28 _cleanup()
30 _cleanup_test_img
31 rm non_utf8_secret
32 rm -f $TEST_IMAGE_FILE
34 trap "_cleanup; exit \$status" 0 1 2 3 15
36 # get standard environment, filters and checks
37 . ./common.rc
38 . ./common.filter
40 _supported_fmt luks
41 _supported_proto generic
43 echo "== Create non-UTF8 secret =="
44 echo -n -e '\x3a\x3c\x3b\xff' > non_utf8_secret
45 SECRET="secret,id=sec0,file=non_utf8_secret"
47 echo "== Throws an error because of invalid UTF-8 secret =="
48 $QEMU_IMG create -f $IMGFMT --object $SECRET -o "key-secret=sec0" $TEST_IMAGE_FILE 4M
50 echo "== Image file should not exist after the error =="
51 if test -f "$TEST_IMAGE_FILE"; then
52 exit 1
55 echo "== Create a stub image file and run qemu-img again =="
56 touch $TEST_IMAGE_FILE
57 $QEMU_IMG create -f $IMGFMT --object $SECRET -o "key-secret=sec0" $TEST_IMAGE_FILE 4M
59 echo "== Pre-existing image file should also be deleted after the error =="
60 if test -f "$TEST_IMAGE_FILE"; then
61 exit 1
64 # success, all done
65 echo "*** done"
66 rm -f $seq.full
67 status=0