Replace hacky test-functions.sh with cleaner stuff from nbdkit. Unfortunately some parts of the common/ submodule depend on $TEST_FUNCTIONS too so I had to leave that variable in subdir-rules.mk for the time being.
56 lines
1.7 KiB
Bash
Executable File
56 lines
1.7 KiB
Bash
Executable File
#!/bin/bash -
|
|
# libguestfs virt-v2v test script
|
|
# Copyright (C) 2014-2021 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 virt-v2v -oa (sparse/preallocated) option + -of raw.
|
|
|
|
set -e
|
|
|
|
source ./functions.sh
|
|
set -e
|
|
set -x
|
|
|
|
skip_if_skipped
|
|
# No support for either network or qcow2.
|
|
requires test -f ../test-data/phony-guests/windows.img
|
|
|
|
libvirt_uri="test://$abs_top_builddir/test-data/phony-guests/guests.xml"
|
|
f=../test-data/phony-guests/windows.img
|
|
|
|
export VIRT_TOOLS_DATA_DIR="$srcdir/../test-data/fake-virt-tools"
|
|
|
|
d=test-v2v-oa-option-raw.d
|
|
rm -rf $d
|
|
cleanup_fn rm -r $d
|
|
mkdir $d
|
|
|
|
$VG virt-v2v --debug-gc \
|
|
-i libvirt -ic "$libvirt_uri" windows \
|
|
-o local -os $d -oa preallocated -of raw
|
|
|
|
# Test the disk is qcow2 format.
|
|
if [ "$(guestfish disk-format $d/windows-sda)" != raw ]; then
|
|
echo "$0: test failed: output is not raw"
|
|
exit 1
|
|
fi
|
|
|
|
# Test the disk is fully allocated.
|
|
if [ "$(du -m $d/windows-sda | awk '{print $1}')" -lt 500 ]; then
|
|
echo "$0: test failed: output is not preallocated"
|
|
exit 1
|
|
fi
|