1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.pl'
######################### We start with some black magic to print on failure.
# Change 1..1 below to 1..last_test_to_print .
# (It may become useful if the test is moved to ./t subdirectory.)
$number_of_tests = 55;
BEGIN { $| = 1; print "1..$number_of_tests\n"; }
END {print "not ok 1\n" unless $loaded;}
use Unix::Syslog qw(:macros :subs);
$loaded = 1;
print "ok 1\n";
######################### End of black magic.
# Insert your test code below (better if it prints "ok 13"
# (correspondingly "not ok 13") depending on the success of chunk 13
# of the test code):
# print result from last eval expression
sub print_result($) {
if (shift) { print " not ok"; return 1 }
else { print " ok"; return 0 }
}
my $n = 2;
my $failures = 0;
print "Testing priorities:\n";
printf "%-20s", 'LOG_EMERG'; eval { LOG_EMERG() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_ALERT'; eval { LOG_ALERT() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_CRIT'; eval { LOG_CRIT() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_ERR'; eval { LOG_ERR() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_WARNING'; eval { LOG_WARNING() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_NOTICE'; eval { LOG_NOTICE() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_INFO'; eval { LOG_INFO() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_DEBUG'; eval { LOG_DEBUG() }; $failures += print_result($@); print " $n\n"; $n++;
print "\nTesting facilities\n";
$fac = 0;
printf "%-20s", 'LOG_KERN'; eval { LOG_KERN() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_USER'; eval { LOG_USER() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_MAIL'; eval { LOG_MAIL() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_DAEMON'; eval { LOG_DAEMON() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_AUTH'; eval { LOG_AUTH() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_SYSLOG'; eval { LOG_SYSLOG() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_LPR'; eval { LOG_LPR() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_NEWS'; eval { LOG_NEWS() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_UUCP'; eval { LOG_UUCP() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_CRON'; eval { LOG_CRON() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_LOCAL0'; eval { LOG_LOCAL0() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_LOCAL1'; eval { LOG_LOCAL1() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_LOCAL2'; eval { LOG_LOCAL2() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_LOCAL3'; eval { LOG_LOCAL3() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_LOCAL4'; eval { LOG_LOCAL4() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_LOCAL5'; eval { LOG_LOCAL5() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_LOCAL6'; eval { LOG_LOCAL6() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_LOCAL7'; eval { LOG_LOCAL7() }; $failures += print_result($@); print " $n\n"; $n++;
print "\nThese facilities are not defined on all systems:\n";
printf "%-20s", 'LOG_AUTHPRIV'; eval { LOG_AUTHPRIV() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_FTP'; eval { LOG_FTP() }; $failures += print_result($@); print " $n\n"; $n++;
print "\nThe number of available facilities is:\n";
printf "%-20s", 'LOG_NFACILITIES '; eval { LOG_NFACILITIES() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_FACMASK'; eval { LOG_FACMASK }; $failures += print_result($@); print " $n\n"; $n++;
print "\nTesting options\n";
printf "%-20s", 'LOG_PID'; eval { LOG_PID() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_CONS'; eval { LOG_CONS() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_ODELAY'; eval { LOG_ODELAY() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_NDELAY'; eval { LOG_NDELAY() }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_NOWAIT'; eval { LOG_NOWAIT() }; $failures += print_result($@); print " $n\n"; $n++;
print "\nThese options are not defined on all systems:\n";
printf "%-20s", 'LOG_PERROR'; eval{ LOG_PERROR() }; $failures += print_result($@); print " $n\n"; $n++;
print "\nTesting macros for setlogmask()\n";
printf "%-20s", 'LOG_MASK'; eval { LOG_MASK(1) }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_UPTO'; eval { LOG_UPTO(1) }; $failures += print_result($@); print " $n\n"; $n++;
print "\nThese macros are not defined on all systems:\n";
printf "%-20s", 'LOG_PRI'; eval { LOG_PRI(1) }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_MAKEPRI'; eval { LOG_MAKEPRI(1,1) }; $failures += print_result($@); print " $n\n"; $n++;
printf "%-20s", 'LOG_FAC'; eval { LOG_FAC(1) }; $failures += print_result($@); print " $n\n"; $n++;
print "\nTesting setlogmask:\n";
print "Setting mask to ", LOG_MASK(LOG_INFO), "\n";
$oldmask = setlogmask(LOG_MASK(LOG_INFO));
$newmask = setlogmask($oldmask);
print "New mask is $newmask ";
$failures += print_result($newmask!=LOG_MASK(LOG_INFO)); print " $n\n"; $n++;
if ($failures == 0) {
print "\n*** Congratulations! All tests passed.\n\n";
}
else {
print "\n*** Test results: ", $n-1-$failures, " tests of ", $n-1, " passed!\n\n";
}
print <<EOM;
Testing functions
As the functions `openlog', `closelog' and `syslog' do not return any
value that indicates success or failure, please have a look at the log
file generated by syslogd(8). The following tests print a message of
the facility `local7' and the priority `info'.
EOM
sub basename {
my $name = shift;
$name =~ s@.*/@@;
return $name;
}
print "openlog\n";
openlog(basename($0), LOG_PID, LOG_LOCAL7);
print "syslog\n";
syslog(LOG_INFO, "Unix::Syslog testsuite: The ident string should be \`%s\' (Test %d)", basename($0), $n++);
syslog(LOG_INFO, "Unix::Syslog testsuite: Testing quote character \`%%\' (Test %d)", $n++);
syslog(LOG_INFO, "Unix::Syslog testsuite: This message prints an error message: %m (Test %d)", $n++);
syslog(LOG_INFO, "Unix::Syslog testsuite: This message prints a percent sign followed by the character \`m\': %%m (Test %d)", $n++);
syslog(LOG_INFO, "Unix::Syslog testsuite: This message prints a percent sign followed by an error message: %%%m (Test %d)", $n++);
syslog(LOG_INFO, "Unix::Syslog testsuite: This message prints a percent sign followed by the character \`m\': %s (Test %d)", '%m', $n++);
syslog(LOG_INFO, "Unix::Syslog testsuite: This message prints two percent signs followed by the character \`m\': %s (Test %d)", '%%m', $n++);
syslog(LOG_INFO, "Unix::Syslog testsuite: This message prints three percent signs followed by the character \`m\': %s (Test %d)", '%%%m', $n++);
print "setlogmask\n";
setlogmask(LOG_MASK(LOG_INFO));
print "syslog\n";
syslog(LOG_INFO, "Unix::Syslog testsuite: (LOG_MASK) This message should be visible (Test %d)\n", $n++);
syslog(LOG_EMERG, "Unix::Syslog testsuite: (LOG_MASK) This message should NOT be visible (Test %d)\n", $n++);
setlogmask(LOG_UPTO(LOG_INFO));
syslog(LOG_INFO, "Unix::Syslog testsuite: (LOG_UPTO) This message should be visible (Test %d)\n", $n++);
syslog(LOG_EMERG, "Unix::Syslog testsuite: (LOG_UPTO) This message should be visible (Test %d)\n", $n++);
syslog((LOG_INFO()+1), "Unix::Syslog testsuite: (LOG_UPTO) This message should NOT be visible (Test %d)\n", $n++);
print "closelog\n\n";
closelog;
print "Testing pointer handling in closelog().\n";
print "Calling closelog() a second time.\n";
closelog;
print "This message should not be preceeded by an error message\n";
print " about dereferenced pointers.\n\n";
|