Test::Rsyslog - Creates a temporary instance of rsyslog to run tests against
Version 0.07
my $rsyslog = Test::Rsyslog->new();
Sys::Syslog::setlogsock({ type => 'unix', path => $rsyslog->socket_path() });
# or "Sys::Syslog::setlogsock('unix', $rsyslog->socket_path());" for older Sys::Syslogs
Sys::Syslog::openlog('program[' . $$ . ']','cons','LOG_LOCAL7');
Sys::Syslog::syslog('info|LOG_LOCAL7','This is a test message');
Sys::Syslog::closelog();
ok($rsyslog->find('This is a test message'), 'Rsyslog is okay');
This module allows easy creation and tear down of a rsyslog instance. When the variable goes out of scope, the rsyslog instance is torn down and the file system objects it relies on are removed.
This method will setup and start the rsyslog instance. It currently has no parameters, but this may change in response to feature requests
This method returns that path to the UNIX file system socket that is connected to the current running instance of rsyslog
This method searches the existing logs that rsyslog has processed to see if a message has been found matching $string. It will return a list of every line in the log file that matches $string.
This method starts the rsyslog instance
This method stops the rsyslog instance
This method checks to make sure that the rsyslogd instance is still running
This method returns the content of the rsyslogd log file
This method truncates the rsyslogd log file. Rsyslogd must be stopped to truncate the log file
-
Failed to open %s for reading
There has been a file system error trying to read from the rsyslog logfile.
-
Failed to print to %s
There has been a file system error trying to write to the rsyslog configuration file.
-
Failed to fork
The operating system was unable to fork a subprocess for use by the rsyslog daemon.
-
Failed to rmdir %s
There has been a file system error trying to remove the temporary directory.
-
Failed to unlink %s
There has been a file system error trying to unlink a temporary file
-
Failed to close %s
There has been a file system error trying to close a temporary file
-
Failed to mkdir %s
There has been a file system error trying to make the temporary directory
-
Temporary rsyslog daemon is already running...
The rsyslog daemon has already started
-
Unable to truncate while rsyslogd is still running
This module will not truncate the messages file while rsyslogd could still be writing to it
-
Unable to untaint the directory path
The module generated an unrecognisable temporary path for rsyslogd
Test::Rsyslog requires no configuration files or environment variables.
Test::Rsyslog requires Perl 5.6 or better.
None reported
Please report any bugs or feature requests to bug-test-rsyslog at rt.cpan.org
, or through
the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Test-Rsyslog. I will be notified, and then you'll
automatically be notified of progress on your bug as I make changes.
You can find documentation for this module with the perldoc command.
perldoc Test::Rsyslog
You can also look for information at:
-
RT: CPAN's request tracker (report bugs here)
-
AnnoCPAN: Annotated CPAN documentation
-
CPAN Ratings
-
Search CPAN
David Dick, <ddick at cpan.org>
Copyright 2022 David Dick.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.