Add virt-inspector --xpath to run XPath queries directly.
[libguestfs.git] / clone / test-virt-sysprep.sh
1 #!/bin/bash -
2 # libguestfs virt-sysprep test script
3 # Copyright (C) 2011 Red Hat Inc.
4 #
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.
9 #
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.
14 #
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., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 export LANG=C
20 set -e
21
22 if [ ! -w /dev/fuse ]; then
23     echo "SKIPPING virt-sysprep test, because there is no /dev/fuse."
24     exit 0
25 fi
26
27 if ! xmlstarlet --help >/dev/null 2>&1; then
28     echo "SKIPPING virt-sysprep test, because xmlstarlet is not installed."
29     exit 0
30 fi
31
32 rm -f test.img guestfish
33
34 qemu-img create -f qcow2 -o backing_file=../images/fedora.img test.img
35
36 # Provide alternate 'virt-inspector' and 'guestmount' binaries
37 # that run the just-built programs.
38
39 cat <<'EOF' > virt-inspector
40 #!/bin/sh -
41 ../run ../inspector/virt-inspector "$@"
42 EOF
43 chmod +x virt-inspector
44 cat <<'EOF' > guestmount
45 #!/bin/sh -
46 ../run ../fuse/guestmount "$@"
47 EOF
48 chmod +x guestmount
49
50 PATH=.:$PATH
51
52 ./virt-sysprep -a test.img
53
54 rm -f test.img virt-inspector guestmount