diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:15:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 12:15:43 +0000 |
commit | f5f56e1a1c4d9e9496fcb9d81131066a964ccd23 (patch) | |
tree | 49e44c6f87febed37efb953ab5485aa49f6481a7 /src/lib/log/tests/console_test.sh.in | |
parent | Initial commit. (diff) | |
download | isc-kea-f5f56e1a1c4d9e9496fcb9d81131066a964ccd23.tar.xz isc-kea-f5f56e1a1c4d9e9496fcb9d81131066a964ccd23.zip |
Adding upstream version 2.4.1.upstream/2.4.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/lib/log/tests/console_test.sh.in')
-rw-r--r-- | src/lib/log/tests/console_test.sh.in | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/src/lib/log/tests/console_test.sh.in b/src/lib/log/tests/console_test.sh.in new file mode 100644 index 0000000..7c5ebeb --- /dev/null +++ b/src/lib/log/tests/console_test.sh.in @@ -0,0 +1,54 @@ +#!/bin/sh + +# Copyright (C) 2011-2020 Internet Systems Consortium, Inc. ("ISC") +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +# The logger supports the idea of a "console" logger than logs to either stdout +# or stderr. This test checks that both these options work. + +# Exit with error if commands exit with non-zero and if undefined variables are +# used. +set -eu + +# Include common test library. +# shellcheck disable=SC1091 +# SC1091: Not following: ... was not specified as input (see shellcheck -x). +. "@abs_top_builddir@/src/lib/testutils/dhcp_test_lib.sh" + +tempfile="@abs_builddir@/console_test_tempfile_$$" + +# Look at tempfile and check that the count equals the expected count +passfail() { + count=$(wc -l $tempfile | awk '{print $1}') + if [ "${count}" -eq "${1}" ]; then + test_finish 0 + else + test_finish 1 + fi +} + +test_start 'console-output.stdout' +rm -f $tempfile +./logger_example -c stdout -s error 1> $tempfile 2> /dev/null +passfail 4 + +test_start 'console-output.stdout-not-stderr' +rm -f $tempfile +./logger_example -c stdout -s error 1> /dev/null 2> $tempfile +passfail 0 + +test_start 'console-output.stderr' +rm -f $tempfile +./logger_example -c stderr -s error 1> /dev/null 2> $tempfile +passfail 4 + +test_start 'console-output.stderr-not-stdout' +rm -f $tempfile +./logger_example -c stderr -s error 1> $tempfile 2> /dev/null +passfail 0 + +# Tidy up +rm -f $tempfile |