Files
libguestfs/v2v/test-v2v-i-ova-subfolders.sh
Tomáš Golembiovský c96bcb4e24 tests: rename guestfs-hashsums.sh to test-utils.sh
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com>
2017-01-04 10:41:48 +01:00

66 lines
1.8 KiB
Bash
Executable File

#!/bin/bash -
# libguestfs virt-v2v test script
# Copyright (C) 2014 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 -i ova option with files located in a subfolder.
unset CDPATH
export LANG=C
set -e
if [ -n "$SKIP_TEST_V2V_I_OVA_SUBFOLDERS_SH" ]; then
echo "$0: test skipped because environment variable is set"
exit 77
fi
if [ "$(guestfish get-backend)" = "uml" ]; then
echo "$0: test skipped because UML backend does not support network"
exit 77
fi
export VIRT_TOOLS_DATA_DIR="$srcdir/../test-data/fake-virt-tools"
. $srcdir/../test-data/test-utils.sh
d=test-v2v-i-ova-subfolders.d
rm -rf $d
mkdir -p $d/subfolder
cp test-v2v-i-ova-subfolders.ovf $d/subfolder/
pushd $d/subfolder
truncate -s 10k disk1.vmdk
sha=`do_sha1 disk1.vmdk`
echo -e "SHA1(disk1.vmdk)= $sha\r" > disk1.mf
cd ..
tar -cf test.ova subfolder
popd
# Run virt-v2v but only as far as the --print-source stage, and
# normalize the output.
$VG virt-v2v --debug-gc --quiet \
-i ova $d/test.ova \
--print-source |
sed 's,[^ \t]*\(subfolder/disk.*\.vmdk\),\1,' > $d/source
# Check the parsed source is what we expect.
diff -u test-v2v-i-ova-subfolders.expected $d/source
rm -rf $d