The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use lib qw(./lib ./blib/lib);
require './t/600-lhost-code';
my $enginename = 'SurfControl';
my $samplepath = sprintf("./set-of-emails/private/lhost-%s", lc $enginename);
my $enginetest = Sisimai::Lhost::Code->makeinquiry;
my $isexpected = {
# INDEX => [['D.S.N.', 'replycode', 'REASON', 'hardbounce'], [...]]
'1001' => [['5.0.0', '550', 'filtered', 0]],
'1002' => [['5.0.0', '550', 'filtered', 0]],
'1003' => [['5.0.0', '550', 'filtered', 0]],
'1004' => [['5.0.0', '554', 'systemerror', 0]],
'1005' => [['5.0.0', '554', 'systemerror', 0]],
};
plan 'skip_all', sprintf("%s not found", $samplepath) unless -d $samplepath;
$enginetest->($enginename, $isexpected, 1, 0);
done_testing;