mirror of
https://github.com/libguestfs/libguestfs.git
synced 2026-03-21 22:53:37 +00:00
All tests run under the ./run binary. For a long time the ./run binary has set the $PATH environment variable to contain all of the directories with binaries in them. Therefore there is no reason to use ../fish/guestfish instead of just plain guestfish (and the same applies to other built binaries).
81 lines
2.3 KiB
Bash
Executable File
81 lines
2.3 KiB
Bash
Executable File
#!/bin/bash -
|
|
# libguestfs
|
|
# 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.
|
|
|
|
# Regression test for:
|
|
# https://bugzilla.redhat.com/show_bug.cgi?id=1044014
|
|
|
|
set -e
|
|
export LANG=C
|
|
|
|
if [ -n "$SKIP_TEST_RHBZ1044014_SH" ]; then
|
|
echo "$0: test skipped because environment variable is set."
|
|
exit 77
|
|
fi
|
|
|
|
# Check we are running against the libvirt backend.
|
|
backend="$(guestfish get-backend)"
|
|
if [[ ! ( "$backend" =~ ^libvirt ) ]]; then
|
|
echo "$0: test skipped because backend ($backend) is not libvirt."
|
|
exit 77
|
|
fi
|
|
|
|
if [ ! -x ../../src/libvirt-is-version ]; then
|
|
echo "$0: test skipped because libvirt-is-version is not built yet"
|
|
exit 77
|
|
fi
|
|
|
|
if ! ../../src/libvirt-is-version 1 2 1; then
|
|
echo "$0: test skipped because libvirt is too old (< 1.2.1)"
|
|
exit 77
|
|
fi
|
|
|
|
# Set the backend to the test driver.
|
|
export LIBGUESTFS_BACKEND="libvirt:test://$(pwd)/$srcdir/rhbz1044014.xml"
|
|
|
|
rm -f rhbz1044014.out
|
|
|
|
guestfish -- -run < $srcdir/rhbz1044014.in > rhbz1044014.out 2>&1 || {
|
|
r=$?
|
|
if [ $r -ne 0 ]; then
|
|
cat rhbz1044014.out
|
|
exit $r
|
|
fi
|
|
}
|
|
|
|
# We are expecting this message to be printed (see commit which fixed
|
|
# RHBZ#1044014).
|
|
grep "libvirt needs authentication to connect to libvirt URI" rhbz1044014.out || {
|
|
echo "$0: expecting to see message from commit which fixed RHBZ#1044014"
|
|
echo
|
|
echo "actual output was:"
|
|
echo
|
|
cat rhbz1044014.out
|
|
exit 1
|
|
}
|
|
|
|
# This is the error we are expecting to see. If we see it then it
|
|
# indicates that authentication was successful.
|
|
grep "error: libvirt hypervisor doesn't support qemu or KVM" rhbz1044014.out || {
|
|
echo "$0: unexpected output:"
|
|
echo
|
|
cat rhbz1044014.out
|
|
exit 1
|
|
}
|
|
|
|
rm rhbz1044014.out
|