mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-22 07:03:38 +00:00
added icat API tests
Signed-off-by: Matteo Cafasso <noxdafox@gmail.com>
This commit is contained in:
committed by
Richard W.M. Jones
parent
acd3f235ae
commit
ac0d2adf56
@@ -83,6 +83,7 @@ SUBDIRS += tests/journal
|
||||
SUBDIRS += tests/relative-paths
|
||||
SUBDIRS += tests/gdisk
|
||||
SUBDIRS += tests/regressions
|
||||
SUBDIRS += tests/tsk
|
||||
endif
|
||||
|
||||
# libguestfs-test-tool
|
||||
|
||||
@@ -282,6 +282,7 @@ AC_CONFIG_FILES([Makefile
|
||||
tests/selinux/Makefile
|
||||
tests/syslinux/Makefile
|
||||
tests/tmpdirs/Makefile
|
||||
tests/tsk/Makefile
|
||||
tests/xfs/Makefile
|
||||
tests/xml/Makefile
|
||||
tools/Makefile
|
||||
|
||||
26
tests/tsk/Makefile.am
Normal file
26
tests/tsk/Makefile.am
Normal file
@@ -0,0 +1,26 @@
|
||||
# libguestfs
|
||||
# Copyright (C) 2016 Red Hat Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
include $(top_srcdir)/subdir-rules.mk
|
||||
|
||||
TESTS = \
|
||||
test-icat.sh
|
||||
|
||||
TESTS_ENVIRONMENT = $(top_builddir)/run --test
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(TESTS)
|
||||
53
tests/tsk/test-icat.sh
Executable file
53
tests/tsk/test-icat.sh
Executable file
@@ -0,0 +1,53 @@
|
||||
#!/bin/bash -
|
||||
# libguestfs
|
||||
# Copyright (C) 2016 Red Hat Inc.
|
||||
#
|
||||
# This program is free software; you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation; either version 2 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# This program is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with this program; if not, write to the Free Software
|
||||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
# Test the icat command.
|
||||
|
||||
set -e
|
||||
|
||||
if [ -n "$SKIP_TEST_ICAT_SH" ]; then
|
||||
echo "$0: test skipped because environment variable is set."
|
||||
exit 77
|
||||
fi
|
||||
|
||||
rm -f test-mft.bin
|
||||
|
||||
# Skip if TSK is not supported by the appliance.
|
||||
if ! guestfish add /dev/null : run : available "icat"; then
|
||||
echo "$0: skipped because TSK is not available in the appliance"
|
||||
exit 77
|
||||
fi
|
||||
|
||||
if [ ! -s ../../test-data/phony-guests/windows.img ]; then
|
||||
echo "$0: skipped because windows.img is zero-sized"
|
||||
exit 77
|
||||
fi
|
||||
|
||||
# download Master File Table ($MFT).
|
||||
guestfish --ro -a ../../test-data/phony-guests/windows.img <<EOF
|
||||
run
|
||||
icat /dev/sda2 0 test-mft.bin
|
||||
EOF
|
||||
|
||||
# test extracted file is the Master File Table
|
||||
if [ `head -c 5 test-mft.bin` != "FILE0" ]; then
|
||||
echo "$0: wrong file extracted."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
rm -f test-mft.bin
|
||||
Reference in New Issue
Block a user