Stefan Hajnoczi | 908eaf6 | 2010-04-26 11:44:05 +0200 | [diff] [blame] | 1 | #!/bin/bash |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 2 | # |
| 3 | # Combined test to grow the refcount table and test snapshots. |
| 4 | # |
| 5 | # Copyright (C) 2009 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 |
Christoph Hellwig | e8c212d | 2009-07-16 19:26:54 +0200 | [diff] [blame] | 18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 19 | # |
| 20 | |
| 21 | # creator |
| 22 | owner=kwolf@redhat.com |
| 23 | |
| 24 | seq=`basename $0` |
| 25 | echo "QA output created by $seq" |
| 26 | |
| 27 | here=`pwd` |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 28 | status=1 # failure is the default! |
| 29 | |
| 30 | _cleanup() |
| 31 | { |
Christoph Hellwig | e021915 | 2009-07-08 21:39:57 +0200 | [diff] [blame] | 32 | _cleanup_test_img |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 33 | true |
| 34 | } |
| 35 | trap "_cleanup; exit \$status" 0 1 2 3 15 |
| 36 | |
| 37 | # get standard environment, filters and checks |
| 38 | . ./common.rc |
| 39 | . ./common.filter |
| 40 | |
Christoph Hellwig | e76a8e8 | 2009-07-09 15:26:11 +0200 | [diff] [blame] | 41 | # actually any format that supports snapshots |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 42 | _supported_fmt qcow2 |
MORITA Kazutaka | 9cdfa1b | 2011-01-18 02:01:17 +0900 | [diff] [blame] | 43 | _supported_proto generic |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 44 | _supported_os Linux |
Max Reitz | 5262caa | 2015-02-18 17:40:48 -0500 | [diff] [blame] | 45 | # Internal snapshots are (currently) impossible with refcount_bits=1 |
| 46 | _unsupported_imgopts 'refcount_bits=1[^0-9]' |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 47 | |
| 48 | echo |
| 49 | echo "creating image" |
| 50 | |
| 51 | # With 1k clusters a refcount block contains 512 clusters |
| 52 | # This makes 512k of the image file covered by a refcount block |
| 53 | # A refcount table that spans one clusters has 128 refcount |
| 54 | # tables which makes up 64M in the image file. |
| 55 | # |
| 56 | # We use a 36M image, so initially we can be sure that only one cluster is used |
| 57 | # for the refcount table. On the other hand this is big enough to cause a |
| 58 | # refcount table growth when rewriting the image after creating one snapshot. |
| 59 | size=36M |
Kevin Wolf | bfe8524 | 2011-06-08 13:23:33 +0200 | [diff] [blame] | 60 | CLUSTER_SIZE=1k |
| 61 | _make_test_img $size |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 62 | |
| 63 | # Create two snapshots which fill the image with two different patterns |
| 64 | echo "creating first snapshot" |
Jeff Cody | fef9c19 | 2013-09-25 08:12:22 -0400 | [diff] [blame] | 65 | $QEMU_IO -c "aio_write -P 123 0 $size" "$TEST_IMG" | _filter_qemu_io |
| 66 | $QEMU_IMG snapshot -c snap1 "$TEST_IMG" |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 67 | echo "creating second snapshot" |
Jeff Cody | fef9c19 | 2013-09-25 08:12:22 -0400 | [diff] [blame] | 68 | $QEMU_IO -c "aio_write -P 165 0 $size" "$TEST_IMG" | _filter_qemu_io |
| 69 | $QEMU_IMG snapshot -c snap2 "$TEST_IMG" |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 70 | |
| 71 | # Now check the pattern |
| 72 | echo "checking first snapshot" |
Jeff Cody | fef9c19 | 2013-09-25 08:12:22 -0400 | [diff] [blame] | 73 | $QEMU_IMG snapshot -a snap1 "$TEST_IMG" |
| 74 | $QEMU_IO -c "aio_read -P 123 0 $size" "$TEST_IMG" | _filter_qemu_io |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 75 | echo "checking second snapshot" |
Jeff Cody | fef9c19 | 2013-09-25 08:12:22 -0400 | [diff] [blame] | 76 | $QEMU_IMG snapshot -a snap2 "$TEST_IMG" |
| 77 | $QEMU_IO -c "aio_read -P 165 0 $size" "$TEST_IMG" | _filter_qemu_io |
Kevin Wolf | 3778057 | 2009-07-03 17:45:56 +0200 | [diff] [blame] | 78 | |
| 79 | echo |
| 80 | echo "checking image for errors" |
| 81 | _check_test_img |
| 82 | |
| 83 | # success, all done |
| 84 | echo "*** done" |
| 85 | rm -f $seq.full |
| 86 | status=0 |