3 # Copyright (C) 2010 Red Hat Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 # Test guestfish -d option.
23 rm -f test1.img test2.img test3.img test4.img test.xml test.out
27 truncate -s 1M test1.img test2.img test3.img test4.img
29 # Libvirt test XML, see libvirt.git/examples/xml/test/testnode.xml
38 <memory>524288</memory>
41 <source file="$cwd/test1.img"/>
45 <driver name="qemu" type="raw"/>
46 <source file="$cwd/test2.img"/>
50 <driver name="qemu" type="qcow2"/>
51 <source file="$cwd/test3.img"/>
55 <driver name="qemu" type="raw"/>
56 <source file="$cwd/test4.img"/>
65 ../fish/guestfish -c "test://$cwd/test.xml" --ro -d guest \
66 debug-drives </dev/null >test.out
67 grep -sq "test1.img.*snapshot=on" test.out
68 ! grep -sq "test1.img.*format" test.out
69 grep -sq "test2.img.*snapshot=on.*format=raw" test.out
70 grep -sq "test3.img.*snapshot=on.*format=qcow2" test.out
71 grep -sq "test4.img.*snapshot=on.*format=raw" test.out
73 rm -f test1.img test2.img test3.img test4.img test.xml test.out