RM: removed logging test

Its hard to create a logging test for different systems and evaluate
their output. Therefore we remove it at the moment.
This commit is contained in:
Dominik Meyer 2019-12-20 12:40:29 +01:00
parent 36f2b8d665
commit 69eb60f461
No known key found for this signature in database
GPG Key ID: B4C312B600606B64
1 changed files with 0 additions and 43 deletions

View File

@ -1,43 +0,0 @@
use 5.006;
use strict;
use warnings;
use Test::More;
use Test::Exception;
use OSSEC;
use File::Temp qw/ tempfile tempdir /;
#first create a tempdirectory where we put the logs
my $tempDir = tempdir( CLEANUP => 0);
#create basic directory hierarchy
readpipe("mkdir $tempDir" . "/logs");
my $ossec;
lives_ok( sub {
$ossec = OSSEC->new(ossecPath=>$tempDir);
});
my $log;
lives_ok( sub {
$log = $ossec->arLog();
});
lives_ok( sub {
$log->error("test app" , "this is a test");
});
dies_ok( sub {
$log->fatal("test app" , "this is a test");
});
lives_ok( sub {
$log->info("test app" , "this is a test");
});
lives_ok( sub {
$log->debug("test app" , "this is a test");
});
done_testing();