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 add-domain command.
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 >test.out <<EOF
66 domain guest libvirturi:test://$cwd/test.xml readonly:true
69 grep -sq "test1.img.*snapshot=on" test.out
70 ! grep -sq "test1.img.*format" test.out
71 grep -sq "test2.img.*snapshot=on.*format=raw" test.out
72 grep -sq "test3.img.*snapshot=on.*format=qcow2" test.out
74 # Test readonlydisk = "ignore".
75 ../fish/guestfish >test.out <<EOF
76 -domain guest libvirturi:test://$cwd/test.xml readonly:true readonlydisk:ignore
79 grep -sq "test1.img" test.out
80 grep -sq "test2.img" test.out
81 grep -sq "test3.img" test.out
82 ! grep -sq "test4.img" test.out
87 ../fish/guestfish >test.out <<EOF
88 -domain guest libvirturi:test://$cwd/test.xml readonly:true
91 ! grep -sq "test1.img" test.out
92 ! grep -sq "test2.img" test.out
93 ! grep -sq "test3.img" test.out
94 ! grep -sq "test4.img" test.out
96 rm -f test1.img test2.img test3.img test4.img test.xml test.out