Add 'make extra-tests' rule and run extra tests.
[libguestfs.git] / extratests / Makefile.am
1 # libguestfs
2 # Copyright (C) 2009-2011 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17
18 # Extra tests.
19 #
20 # Requires:
21 #   - some local libvirt guests are available
22 #   - the disks of these guests are accessible by the current user
23 #     (tip: add yourself to the 'disk' group)
24 #   - valgrind
25 #
26 # These tests may fail for reasons which aren't necessarily real problems.
27
28 VG = ../run \
29         valgrind \
30         --log-file=valgrind.log \
31         --leak-check=full \
32         --error-exitcode=119 \
33         --suppressions=suppressions
34
35 export LIBVIRT_DEFAULT_URI = \
36         qemu+unix:///system?socket=/var/run/libvirt/libvirt-sock-ro
37
38 GUESTS = $(shell virsh -c $(LIBVIRT_DEFAULT_URI) list --all | \
39                  head -n -1 | \
40                  tail -n +3 | \
41                  awk '{print $$2}')
42
43 extra-tests: test-tools-null test-tools-internal test-tools-real
44
45 # Null invocations of the basic tools shouldn't leak memory.
46 test-tools-null:
47         $(VG) ../fish/guestfish -N part exit
48         $(VG) ../align/virt-alignment-scan -a test1.img >/dev/null
49         rm test1.img
50         $(VG) ../cat/virt-filesystems -a /dev/null >/dev/null
51         $(VG) ../cat/virt-filesystems -a /dev/null --all --long -h --uuid >/dev/null
52         $(VG) ../df/virt-df -a /dev/null >/dev/null
53         $(VG) ../fish/guestfish -a /dev/null run
54         $(VG) ../inspector/virt-inspector -a /dev/null >/dev/null
55         $(VG) ../test-tool/libguestfs-test-tool >/dev/null 2>&1
56
57 # Invocations of tools on internal images shouldn't leak memory.
58 test-tools-internal:
59         $(VG) ../cat/virt-cat -a ../images/fedora.img /etc/fstab >/dev/null
60         $(VG) ../cat/virt-filesystems -a ../images/fedora.img >/dev/null
61         $(VG) ../cat/virt-filesystems -a ../images/fedora.img --all --long -h --uuid >/dev/null
62         $(VG) ../cat/virt-ls -a ../images/fedora.img / >/dev/null
63         $(VG) ../cat/virt-ls -a ../images/fedora.img -l / >/dev/null
64         $(VG) ../cat/virt-ls -a ../images/fedora.img -R / >/dev/null
65         $(VG) ../cat/virt-ls -a ../images/fedora.img -lR / >/dev/null
66         $(VG) ../df/virt-df -a ../images/fedora.img >/dev/null
67         $(VG) ../df/virt-df -a ../images/fedora.img -h >/dev/null
68         $(VG) ../fish/guestfish -a ../images/fedora.img run
69         $(VG) ../fish/guestfish -a ../images/fedora.img -i exit
70         $(VG) ../inspector/virt-inspector -a ../images/debian.img >/dev/null
71         $(VG) ../inspector/virt-inspector -a ../images/fedora.img >/dev/null
72         $(VG) ../inspector/virt-inspector -a ../images/fedora-md1.img -a ../images/fedora-md2.img >/dev/null
73         $(VG) ../inspector/virt-inspector -a ../images/ubuntu.img >/dev/null
74         $(VG) ../inspector/virt-inspector -a ../images/windows.img >/dev/null
75
76 # Invocations of tools on real images shouldn't leak memory.
77 test-tools-real:
78         $(VG) virt-df >/dev/null
79         $(VG) virt-df -h >/dev/null
80         @for g in $(GUESTS); do \
81           echo $(VG) ../inspector/virt-inspector -d $$g; \
82           $(VG) ../inspector/virt-inspector -d $$g > /dev/null; \
83           r=$$?; \
84           if [ $$r -ne 0 ]; then exit $$r; fi; \
85         done
86         @for g in $(GUESTS); do \
87           echo $(VG) ../cat/virt-filesystems -d $$g --all --long -h --uuid; \
88           $(VG) ../cat/virt-filesystems -d $$g --all --long -h --uuid > /dev/null; \
89           r=$$?; \
90           if [ $$r -ne 0 ]; then exit $$r; fi; \
91         done
92
93
94 # XXX Not tested:
95 # ../clone/virt-sysprep
96 # ../edit/virt-edit
97 # ../edit/virt-edit -e
98 # ../fuse/guestmount
99 # ../resize/virt-resize (OCaml)
100 # ../sparsify/virt-sparsify (OCaml)
101 # ../tools/virt-win-reg (Perl)
102 # ../tools/virt-make-fs (Perl)