Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Sebastian Schrader
Kea
Commits
9b317f5b
Commit
9b317f5b
authored
Sep 15, 2014
by
Tomek Mrugalski
🛰
Browse files
[3591] Unit-tests for new variables implemented.
parent
e2a3d672
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/bin/d2/tests/d2_process_tests.sh.in
View file @
9b317f5b
...
...
@@ -239,3 +239,4 @@ dynamic_reconfiguration_test
shutdown_test "dhcp-ddns.sigterm_test" 15
shutdown_test "dhcp-ddns.sigint_test" 2
version_test "dhcp-ddns.version"
logger_vars_test "dhcpv6.variables"
src/bin/dhcp4/tests/dhcp4_process_tests.sh.in
View file @
9b317f5b
...
...
@@ -272,3 +272,4 @@ dynamic_reconfiguration_test
shutdown_test "dhcpv4.sigterm_test" 15
shutdown_test "dhcpv4.sigint_test" 2
version_test "dhcpv4.version"
logger_vars_test "dhcpv6.variables"
src/bin/dhcp6/tests/dhcp6_process_tests.sh.in
View file @
9b317f5b
...
...
@@ -276,3 +276,4 @@ dynamic_reconfiguration_test
shutdown_test "dhcpv6.sigterm_test" 15
shutdown_test "dhcpv6.sigint_test" 2
version_test "dhcpv6.version"
logger_vars_test "dhcpv6.variables"
src/lib/testutils/Makefile.am
View file @
9b317f5b
...
...
@@ -4,6 +4,8 @@ AM_CPPFLAGS = -I$(top_srcdir)/src/lib -I$(top_builddir)/src/lib
AM_CPPFLAGS
+=
$(BOOST_INCLUDES)
AM_CXXFLAGS
=
$(KEA_CXXFLAGS)
noinst_SCRIPTS
=
dhcp_test_lib.sh
if
HAVE_GTEST
noinst_LTLIBRARIES
=
libkea-testutils.la
...
...
src/lib/testutils/dhcp_test_lib.sh.in
View file @
9b317f5b
...
...
@@ -421,3 +421,94 @@ version_test() {
test_finish 1
fi
}
# This test verifies that the server is using logger variable
# KEA_LOCKFILE_DIR properly (it should be used to point out to the directory,
# where lockfile should be created. Also, "none" value means to not create
# the lockfile at all).
logger_vars_test() {
test_name=${1} # Test name
# Log the start of the test and print test name.
test_start ${test_name}
# Remove dangling Kea instances and remove log files.
cleanup
# Create bogus configuration file. We don't really want the server to start,
# just want it to log something and die. Empty config is an easy way to
# enforce that behavior.
create_config "{ }"
printf "Please ignore any config error messages.\n"
# Remember old KEA_LOCKFILE_DIR
KEA_LOCKFILE_DIR_OLD=${KEA_LOCKFILE_DIR}
# Set lockfile directory to current directory.
KEA_LOCKFILE_DIR=.
# Start Kea.
start_kea ${bin_path}/${bin}
# Wait for Kea to process the invalid configuration and die.
sleep 1
# Check if it is still running. It should have terminated.
get_pids ${bin}
if [ ${_GET_PIDS_NUM} -ne 0 ]; then
printf "ERROR: expected Kea process to not start. Found %d processes"
printf " running.\n" ${_GET_PIDS_NUM}
# Revert to the old KEA_LOCKFILE_DIR value
KEA_LOCKFILE_DIR=${KEA_LOCKFILE_DIR_OLD}
clean_exit 1
fi
if [ ! -f "./logger_lockfile" ]; then
printf "ERROR: Expect ${bin} to create logger_lockfile in the\n"
printf "current directory, but no such file exists.\n"
# Revert to the old KEA_LOCKFILE_DIR value
KEA_LOCKFILE_DIR=${KEA_LOCKFILE_DIR__OLD}
clean_exit 1
fi
# Remove the lock file
rm -f ./logger_lockfile
# Tell Kea to NOT create logfiles at all
KEA_LOCKFILE_DIR="none"
# Start Kea.
start_kea ${bin_path}/${bin}
# Wait for Kea to process the invalid configuration and die.
sleep 1
# Check if it is still running. It should have terminated.
get_pids ${bin}
if [ ${_GET_PIDS_NUM} -ne 0 ]; then
printf "ERROR: expected Kea process to not start. Found %d processes"
printf " running.\n" ${_GET_PIDS_NUM}
# Revert to the old KEA_LOCKFILE_DIR value
KEA_LOCKFILE_DIR=${KEA_LOCKFILE_DIR_OLD}
clean_exit 1
fi
if [ -f "./logger_lockfile" ]; then
printf "ERROR: Expect ${bin} to NOT create logger_lockfile in the\n"
printf "current directory, but the file exists."
# Revert to the old KEA_LOCKFILE_DIR value
KEA_LOCKFILE_DIR=${KEA_LOCKFILE_DIR_OLD}
clean_exit 1
fi
# Revert to the old KEA_LOCKFILE_DIR value
printf "Reverting KEA_LOCKFILE_DIR to ${KEA_LOCKFILE_DIR_OLD}\n"
KEA_LOCKFILE_DIR=${KEA_LOCKFILE_DIR_OLD}
test_finish 0
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment