The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;
use autodie qw(:file :filesys);
use File::Temp;
use File::Spec;
use IO::Scalar;
use Test::More tests => 4;
use Test::Output;
use App::Sysadmin::Log::Simple;

my $rand = rand;
my $logentry = IO::Scalar->new(\$rand);
my $year  = 2011;
my $month = 2;
my $day   = 18;

my $log = new_ok('App::Sysadmin::Log::Simple' => [
    logdir      => 't/log',
    read_from   => $logentry,
    date        => "$year/$month/$day",
]);

my $idx_old = do {
    local $/;
    open my $idxfh, '<', File::Spec->catfile(qw/ t log index.log/);
    <$idxfh>
};

stdout_like
    sub { $log->run() }, # will read from $logentry
    qr/Log entry:/,
    'log ok';

my $idx_new = do {
    local $/;
    open my $idxfh, '<', File::Spec->catfile(qw/ t log index.log/);
    <$idxfh>
};

isnt $idx_old, $idx_new, 'The index did change' ;
like $idx_new, qr{\Q($year/$month/$day)\E}, 'The date we wanted appears in the index';

END { # Set things back the way they were
    unlink File::Spec->catfile('t', 'log', $year, $month, "$day.log")
        if -e File::Spec->catfile('t', 'log', $year, $month, "$day.log");
    require App::Sysadmin::Log::Simple::File;
    my $file_logger = App::Sysadmin::Log::Simple::File->new(logdir => File::Spec->catfile(qw/t log/));
    $file_logger->_generate_index();
}