The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use Test::More tests => 7;
use File::Scan::ClamAV;
use Cwd;

do "t/mkconf.pl";

# start clamd
my $pid = fork;
die "Fork failed" unless defined $pid;
if (!$pid) {
    exec "$ENV{CLAMD_PATH}/clamd -c clamav.conf";
    die "clamd failed to start: $!";
}
for (1..120) {
  last if (-e "clamsock");
  if (kill(0 => $pid) == 0) {
    die "clamd appears to have died";
  }
  sleep(1);
}

my $av = new File::Scan::ClamAV(port => "clamsock");
ok($av, "Init ok");

my $dir = cwd;
ok($dir, "cd ok");
my $test = "$dir/testfiles/clamavtest";
ok(-f $test, "File exists");

my $data;
if(open(my $fh, $test)){
	local $/;
	$data = <$fh>;
	close($fh);
}

ok($data, "Data exists");

my ($ans, $vir) = $av->streamscan($data);

cmp_ok($ans, 'eq', 'FOUND', "Positive hit");
cmp_ok($vir, 'eq', 'ClamAV-Test-Signature', "Match correct sig");

ok(kill(9 => $pid), "Kill ok");


waitpid($pid, 0);
unlink("clamsock");