a3b9a2f0d19fd78de087f7056ce963b7d9b84524
[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 EXTRA_DIST = suppressions
29
30 VG = valgrind \
31         --log-file=$(abs_builddir)/valgrind.log \
32         --leak-check=full \
33         --error-exitcode=119 \
34         --suppressions=$(abs_srcdir)/suppressions
35 RUN_VG = ../run $(VG)
36
37 export LIBVIRT_DEFAULT_URI = \
38         qemu+unix:///system?socket=/var/run/libvirt/libvirt-sock-ro
39
40 GUESTS = $(shell virsh -c $(LIBVIRT_DEFAULT_URI) list --all | \
41                  head -n -1 | \
42                  tail -n +3 | \
43                  awk '{print $$2}')
44
45 extra-tests: test-tools-null test-tools-internal test-tools-real
46
47 # Null invocations of the basic tools shouldn't leak memory.
48 test-tools-null:
49         $(RUN_VG) ../fish/guestfish -N part exit
50         $(RUN_VG) ../align/virt-alignment-scan -a test1.img >/dev/null
51         rm test1.img
52         $(RUN_VG) ../cat/virt-filesystems -a /dev/null >/dev/null
53         $(RUN_VG) ../cat/virt-filesystems -a /dev/null --all --long -h --uuid >/dev/null
54         $(RUN_VG) ../df/virt-df -a /dev/null >/dev/null
55         $(RUN_VG) ../fish/guestfish -a /dev/null run
56         $(RUN_VG) ../inspector/virt-inspector -a /dev/null >/dev/null
57         $(RUN_VG) ../test-tool/libguestfs-test-tool >/dev/null 2>&1
58
59 # Invocations of tools on internal images shouldn't leak memory.
60 test-tools-internal:
61         $(RUN_VG) ../cat/virt-cat -a ../images/fedora.img /etc/fstab >/dev/null
62         $(RUN_VG) ../cat/virt-filesystems -a ../images/fedora.img >/dev/null
63         $(RUN_VG) ../cat/virt-filesystems -a ../images/fedora.img --all --long -h --uuid >/dev/null
64         $(RUN_VG) ../cat/virt-ls -a ../images/fedora.img / >/dev/null
65         $(RUN_VG) ../cat/virt-ls -a ../images/fedora.img -l / >/dev/null
66         $(RUN_VG) ../cat/virt-ls -a ../images/fedora.img -R / >/dev/null
67         $(RUN_VG) ../cat/virt-ls -a ../images/fedora.img -lR / >/dev/null
68         $(RUN_VG) ../df/virt-df -a ../images/fedora.img >/dev/null
69         $(RUN_VG) ../df/virt-df -a ../images/fedora.img -h >/dev/null
70         $(RUN_VG) ../fish/guestfish -a ../images/fedora.img run
71         $(RUN_VG) ../fish/guestfish -a ../images/fedora.img -i exit
72         $(RUN_VG) ../inspector/virt-inspector -a ../images/debian.img >/dev/null
73         $(RUN_VG) ../inspector/virt-inspector -a ../images/fedora.img >/dev/null
74         $(RUN_VG) ../inspector/virt-inspector -a ../images/fedora-md1.img -a ../images/fedora-md2.img >/dev/null
75         $(RUN_VG) ../inspector/virt-inspector -a ../images/ubuntu.img >/dev/null
76         $(RUN_VG) ../inspector/virt-inspector -a ../images/windows.img >/dev/null
77
78 # Invocations of tools on real images shouldn't leak memory.
79 test-tools-real:
80         $(RUN_VG) virt-df >/dev/null
81         $(RUN_VG) virt-df -h >/dev/null
82         @for g in $(GUESTS); do \
83           echo $(RUN_VG) ../inspector/virt-inspector -d $$g; \
84           $(RUN_VG) ../inspector/virt-inspector -d $$g > /dev/null; \
85           r=$$?; \
86           if [ $$r -ne 0 ]; then exit $$r; fi; \
87         done
88         @for g in $(GUESTS); do \
89           echo $(RUN_VG) ../cat/virt-filesystems -d $$g --all --long -h --uuid; \
90           $(RUN_VG) ../cat/virt-filesystems -d $$g --all --long -h --uuid > /dev/null; \
91           r=$$?; \
92           if [ $$r -ne 0 ]; then exit $$r; fi; \
93         done
94
95
96 # XXX Not tested:
97 # ../clone/virt-sysprep
98 # ../edit/virt-edit
99 # ../edit/virt-edit -e
100 # ../fuse/guestmount
101 # ../resize/virt-resize (OCaml)
102 # ../sparsify/virt-sparsify (OCaml)
103 # ../tools/virt-win-reg (Perl)
104 # ../tools/virt-make-fs (Perl)