blob: 2610da7dd40d7981015d8886748253cc22892f9c [file] [log] [blame]
#!/usr/bin/perl -T
use lib '.'; use lib 't';
use SATest; sa_t_init("spamc_l");
use Test::More;
plan skip_all => "No SPAMC exe" if $NO_SPAMC_EXE;
plan tests => 4;
diag("NOTE: Failure might be because some other process is running on port 8. Test assumes nothing is listening on port 8.");
# ---------------------------------------------------------------------------
my $errmsg = ($RUNNING_ON_WINDOWS?"10061":"Connection refused");
%patterns = (
q{ hello world }, 'spamc_l',
q{ spamc: connect to spamd on }, 'connfailed_a',
q{ failed, retrying (#1 of 3): } . $errmsg, 'connfailed_b',
);
# connect on port 8 (unassigned): should always fail
ok (scrunwithstderr ("-l -p 8 < data/etc/hello.txt", \&patterns_run_cb));
ok_all_patterns();