1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- #!/bin/sh
- # Copyright (C) 2011 Internet Systems Consortium, Inc. ("ISC")
- #
- # Permission to use, copy, modify, and/or distribute this software for any
- # purpose with or without fee is hereby granted, provided that the above
- # copyright notice and this permission notice appear in all copies.
- #
- # THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- # REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- # AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- # INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- # PERFORMANCE OF THIS SOFTWARE.
- # \brief Severity test
- #
- # Checks that the logger will limit the output of messages less severy than
- # the severity/debug setting.
- testname="Severity test"
- echo $testname
- failcount=0
- tempfile=@abs_builddir@/severity_test_tempfile_$$
- passfail() {
- if [ $1 -eq 0 ]; then
- echo " -- pass"
- else
- echo " ** FAIL"
- failcount=`expr $failcount + $1`
- fi
- }
- echo "1. runInitTest default parameters: "
- cat > $tempfile << .
- FATAL [alpha.example] MSG_WRITERR, error writing to test1: 42
- ERROR [alpha.example] MSG_RDLOCMES, reading local message file dummy/file
- WARN [alpha.dlm] MSG_READERR, error reading from message file a.txt: dummy reason
- INFO [alpha.dlm] MSG_OPENIN, unable to open message file example.msg for input: dummy reason
- .
- ./logger_example -c stdout | cut -d' ' -f3- | diff $tempfile -
- passfail $?
- echo "2. Severity filter: "
- cat > $tempfile << .
- FATAL [alpha.example] MSG_WRITERR, error writing to test1: 42
- ERROR [alpha.example] MSG_RDLOCMES, reading local message file dummy/file
- .
- ./logger_example -c stdout -s error | cut -d' ' -f3- | diff $tempfile -
- passfail $?
- echo "3. Debug level: "
- cat > $tempfile << .
- FATAL [alpha.example] MSG_WRITERR, error writing to test1: 42
- ERROR [alpha.example] MSG_RDLOCMES, reading local message file dummy/file
- WARN [alpha.dlm] MSG_READERR, error reading from message file a.txt: dummy reason
- INFO [alpha.dlm] MSG_OPENIN, unable to open message file example.msg for input: dummy reason
- DEBUG [alpha.example] MSG_RDLOCMES, reading local message file dummy/0
- DEBUG [alpha.example] MSG_RDLOCMES, reading local message file dummy/24
- DEBUG [alpha.example] MSG_RDLOCMES, reading local message file dummy/25
- .
- ./logger_example -c stdout -s debug -d 25 | cut -d' ' -f3- | diff $tempfile -
- passfail $?
- rm -f $tempfile
- if [ $failcount -eq 0 ]; then
- echo "PASS: $testname"
- elif [ $failcount -eq 1 ]; then
- echo "FAIL: $testname - 1 test failed"
- else
- echo "FAIL: $testname - $failcount tests failed"
- fi
- exit $failcount
|