739f1c2a0b918ec166a8ab40e3da2246c7c2dd82
[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: \
46         test-tools-null \
47         test-tools-internal \
48         test-tools-real \
49         test-ocaml
50
51 # Null invocations of the basic tools shouldn't leak memory.
52 test-tools-null:
53         $(RUN_VG) ../fish/guestfish -N part exit
54         $(RUN_VG) ../align/virt-alignment-scan -a test1.img >/dev/null
55         rm test1.img
56         $(RUN_VG) ../cat/virt-filesystems -a /dev/null >/dev/null
57         $(RUN_VG) ../cat/virt-filesystems -a /dev/null --all --long -h --uuid >/dev/null
58         $(RUN_VG) ../df/virt-df -a /dev/null >/dev/null
59         $(RUN_VG) ../fish/guestfish -a /dev/null run
60         $(RUN_VG) ../inspector/virt-inspector -a /dev/null >/dev/null
61         $(RUN_VG) ../test-tool/libguestfs-test-tool >/dev/null 2>&1
62
63 # Invocations of tools on internal images shouldn't leak memory.
64 test-tools-internal:
65         $(RUN_VG) ../cat/virt-cat -a ../images/fedora.img /etc/fstab >/dev/null
66         $(RUN_VG) ../cat/virt-filesystems -a ../images/fedora.img >/dev/null
67         $(RUN_VG) ../cat/virt-filesystems -a ../images/fedora.img --all --long -h --uuid >/dev/null
68         $(RUN_VG) ../cat/virt-ls -a ../images/fedora.img / >/dev/null
69         $(RUN_VG) ../cat/virt-ls -a ../images/fedora.img -l / >/dev/null
70         $(RUN_VG) ../cat/virt-ls -a ../images/fedora.img -R / >/dev/null
71         $(RUN_VG) ../cat/virt-ls -a ../images/fedora.img -lR / >/dev/null
72         $(RUN_VG) ../df/virt-df -a ../images/fedora.img >/dev/null
73         $(RUN_VG) ../df/virt-df -a ../images/fedora.img -h >/dev/null
74         $(RUN_VG) ../fish/guestfish -a ../images/fedora.img run
75         $(RUN_VG) ../fish/guestfish -a ../images/fedora.img -i exit
76         $(RUN_VG) ../inspector/virt-inspector -a ../images/debian.img >/dev/null
77         $(RUN_VG) ../inspector/virt-inspector -a ../images/fedora.img >/dev/null
78         $(RUN_VG) ../inspector/virt-inspector -a ../images/fedora-md1.img -a ../images/fedora-md2.img >/dev/null
79         $(RUN_VG) ../inspector/virt-inspector -a ../images/ubuntu.img >/dev/null
80         $(RUN_VG) ../inspector/virt-inspector -a ../images/windows.img >/dev/null
81
82 # Invocations of tools on real images shouldn't leak memory.
83 test-tools-real:
84         $(RUN_VG) virt-df >/dev/null
85         $(RUN_VG) virt-df -h >/dev/null
86         @for g in $(GUESTS); do \
87           echo $(RUN_VG) ../inspector/virt-inspector -d $$g; \
88           $(RUN_VG) ../inspector/virt-inspector -d $$g > /dev/null; \
89           r=$$?; \
90           if [ $$r -ne 0 ]; then exit $$r; fi; \
91         done
92         @for g in $(GUESTS); do \
93           echo $(RUN_VG) ../cat/virt-filesystems -d $$g --all --long -h --uuid; \
94           $(RUN_VG) ../cat/virt-filesystems -d $$g --all --long -h --uuid > /dev/null; \
95           r=$$?; \
96           if [ $$r -ne 0 ]; then exit $$r; fi; \
97         done
98
99 # XXX Not tested:
100 # ../clone/virt-sysprep
101 # ../edit/virt-edit
102 # ../edit/virt-edit -e
103 # ../fuse/guestmount
104 # ../resize/virt-resize (OCaml)
105 # ../sparsify/virt-sparsify (OCaml)
106 # ../tools/virt-win-reg (Perl)
107 # ../tools/virt-make-fs (Perl)
108
109 # Test OCaml bindings under valgrind.
110 test-ocaml:
111         $(MAKE) -C ../ocaml VG="$(VG)" check