#!perl -T
use
5.006;
BEGIN {
use_ok(
'Net::Connection::Match::Protos'
) ||
print
"Bail out!\n"
;
}
my
$connection_args
={
foreign_host
=>
'10.0.0.1'
,
foreign_port
=>
'22'
,
local_host
=>
'10.0.0.2'
,
local_port
=>
'12322'
,
proto
=>
'tcp4'
,
state
=>
'LISTEN'
,
};
my
%args
=(
protos
=>[
'tcp4'
,
],
);
my
$checker
;
my
$worked
=0;
eval
{
$checker
=Net::Connection::Match::Protos->new();
$worked
=1;
};
ok(
$worked
eq
'0'
,
'empty init check'
) or diag(
'Calling new with empty args worked'
);
$worked
=0;
eval
{
$checker
=Net::Connection::Match::Protos->new( \
%args
);
$worked
=1;
};
ok(
$worked
eq
'1'
,
'init check'
) or diag(
'Calling Net::Connection::Match::Protos->new resulted in... '
.$@);
my
$returned
=1;
eval
{
$returned
=
$checker
->match;
};
ok(
$returned
eq
'0'
,
'proto undef check'
) or diag(
'match accepted undefined input'
);
$returned
=1;
eval
{
$returned
=
$checker
->match(
$checker
);
};
ok(
$returned
eq
'0'
,
'match improper ref check'
) or diag(
'match accepted a ref other than Net::Connection'
);
my
$conn
=Net::Connection->new(
$connection_args
);
$returned
=0;
eval
{
$returned
=
$checker
->match(
$conn
);
};
ok(
$returned
eq
'1'
,
'proto match check'
) or diag(
'Failed to match a matching good protocol'
);
$connection_args
->{proto}=
'udp4'
;
$conn
=Net::Connection->new(
$connection_args
);
$returned
=1;
eval
{
$returned
=
$checker
->match(
$conn
);
};
ok(
$returned
eq
'0'
,
'proto non-match check'
) or diag(
'Matched a protocol that it should not of'
);
done_testing(7);