2013-08-22 10:49:41 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2016-04-21 17:50:18 +00:00
|
|
|
. "$(dirname $0)/test-lib.sh"
|
2013-08-22 10:49:41 +00:00
|
|
|
|
|
|
|
# This test checks if virsh obeys the proper precedence of different
|
|
|
|
# URI settings
|
|
|
|
test_intro "virsh-uriprecedence"
|
|
|
|
|
|
|
|
virsh_bin="$abs_top_builddir/tools/virsh"
|
2016-04-21 12:06:10 +00:00
|
|
|
virsh_cmd="$virsh_bin"
|
|
|
|
counter=0
|
2013-08-22 10:49:41 +00:00
|
|
|
ret=0
|
|
|
|
|
2019-03-27 18:42:45 +00:00
|
|
|
mock_xdg_ || framework_failure
|
2013-08-22 10:49:41 +00:00
|
|
|
|
2016-04-21 12:06:10 +00:00
|
|
|
is_uri_good()
|
|
|
|
{
|
|
|
|
echo "$1" | grep -q -F "$good_uri"
|
|
|
|
}
|
|
|
|
|
|
|
|
test_uri_internal()
|
|
|
|
{
|
|
|
|
test_name=$1
|
|
|
|
test_cmd="$virsh_cmd \"$2\""
|
|
|
|
result=0
|
|
|
|
|
|
|
|
debug "Running '$test_cmd'"
|
|
|
|
out="$($virsh_cmd "$2")"
|
|
|
|
|
|
|
|
if ! is_uri_good "$out"; then
|
|
|
|
debug "Invalid output: '$out'"
|
|
|
|
result=1
|
|
|
|
ret=1
|
|
|
|
fi
|
|
|
|
|
|
|
|
counter="$((counter+1))"
|
|
|
|
test_result "$counter" "$1" "$result"
|
|
|
|
}
|
|
|
|
|
|
|
|
test_uri_connect()
|
|
|
|
{
|
|
|
|
test_uri_internal "$1" "connect; uri"
|
|
|
|
}
|
|
|
|
|
|
|
|
test_uri_noconnect()
|
|
|
|
{
|
|
|
|
test_uri_internal "$1" "uri"
|
|
|
|
}
|
|
|
|
|
2013-08-22 10:49:41 +00:00
|
|
|
test_uri()
|
|
|
|
{
|
2016-04-21 12:06:10 +00:00
|
|
|
test_uri_connect "$1"
|
|
|
|
test_uri_noconnect "$1"
|
2013-08-22 10:49:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Precedence is the following (lowest priority first):
|
|
|
|
#
|
|
|
|
# 1) if run as root, 'uri_default' from /etc/libvirtd/libvirt.conf,
|
|
|
|
# otherwise qemu:///session. There is no way to mock this file for
|
|
|
|
# virsh/libvirt.so and the user may have set anything in there that
|
|
|
|
# would spoil the test, so we don't test this
|
|
|
|
#
|
|
|
|
# 2) 'uri_default' from $XDG_CONFIG_HOME/libvirt/libvirt.conf
|
|
|
|
#
|
|
|
|
# 3) LIBVIRT_DEFAULT_URI
|
|
|
|
#
|
|
|
|
# 4) VIRSH_DEFAULT_CONNECT_URI
|
|
|
|
#
|
|
|
|
# 5) parameter -c (--connect)
|
|
|
|
|
|
|
|
unset LIBVIRT_DEFAULT_URI
|
|
|
|
unset VIRSH_DEFAULT_CONNECT_URI
|
|
|
|
bad_uri="test:///default?bad_uri"
|
|
|
|
good_uri="test:///default?good_uri"
|
|
|
|
|
|
|
|
printf "uri_default=\"%s\"\n" "$good_uri" >"$XDG_CONFIG_HOME/libvirt/libvirt.conf"
|
2013-09-12 10:15:23 +00:00
|
|
|
if uid_is_privileged_; then
|
2016-04-21 12:06:10 +00:00
|
|
|
counter="$((counter+1))"
|
2013-09-12 10:15:23 +00:00
|
|
|
test_skip_case "$counter" "User config file" "must not be run as root"
|
|
|
|
else
|
|
|
|
test_uri "User config file"
|
|
|
|
fi
|
2013-08-22 10:49:41 +00:00
|
|
|
|
|
|
|
printf "uri_default=\"%s\"\n" "$bad_uri" >"$XDG_CONFIG_HOME/libvirt/libvirt.conf"
|
|
|
|
export LIBVIRT_DEFAULT_URI="$good_uri"
|
|
|
|
test_uri "LIBVIRT_DEFAULT_URI"
|
|
|
|
|
|
|
|
export LIBVIRT_DEFAULT_URI="$bad_uri"
|
|
|
|
export VIRSH_DEFAULT_CONNECT_URI="$good_uri"
|
|
|
|
test_uri "VIRSH_DEFAULT_CONNECT_URI"
|
|
|
|
|
|
|
|
export VIRSH_DEFAULT_CONNECT_URI="$bad_uri"
|
2016-04-21 12:06:10 +00:00
|
|
|
virsh_cmd="$virsh_bin --connect $good_uri"
|
2013-08-22 10:49:41 +00:00
|
|
|
test_uri "Parameter"
|
|
|
|
|
2016-04-21 12:06:10 +00:00
|
|
|
test_final "$counter" "$ret"
|
2013-08-22 10:49:41 +00:00
|
|
|
(exit "$ret"); exit "$ret"
|