#!perl -T
use
5.006;
BEGIN {
use_ok(
'Net::Connection::Match::RegexPTR'
) ||
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'
,
local_ptr
=>
'foo.bar'
,
foreign_ptr
=>
'test'
,
};
my
%args
=(
ptrs
=>[
'foo'
,
],
);
my
%largs
=(
lptrs
=>[
'bar'
,
],
);
my
%fargs
=(
fptrs
=>[
'bar'
,
],
);
my
$checker
;
my
$worked
=0;
eval
{
$checker
=Net::Connection::Match::RegexPTR->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::RegexPTR->new( \
%args
);
$worked
=1;
};
ok(
$worked
eq
'1'
,
'init check, general'
) or diag(
'Calling Net::Connection::Match::RegexPTR->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'
);
$returned
=0;
my
$conn
=Net::Connection->new(
$connection_args
);
eval
{
$returned
=
$checker
->match(
$conn
);
};
ok(
$returned
eq
'1'
,
'general PTR match check, general local'
) or diag(
'failed to match a Net::Connection for a general PTR check when local matches'
);
$connection_args
->{local_ptr}=
'test'
;
$connection_args
->{foreign_ptr}=
'foo'
;
$conn
=Net::Connection->new(
$connection_args
);
eval
{
$returned
=
$checker
->match(
$conn
);
};
ok(
$returned
eq
'1'
,
'general PTR match check, foriegn'
) or diag(
'failed to match a Net::Connection for a general PTR check when one of the two matches'
);
$worked
=0;
eval
{
$checker
=Net::Connection::Match::RegexPTR->new( \
%largs
);
$worked
=1;
};
ok(
$worked
eq
'1'
,
'init check, local'
) or diag(
'Calling Net::Connection::Match::RegexPTR->new resulted in... '
.$@);
$returned
=0;
eval
{
$returned
=
$checker
->match(
$conn
);
};
ok(
$returned
eq
'0'
,
'local PTR match check, foreign'
) or diag(
'matched a Net::Connection object when looking for local PTRs when the foreign matches'
);
$returned
=0;
$connection_args
->{foreign_ptr}=
'test'
;
$connection_args
->{local_ptr}=
'foo.bar'
;
$conn
=Net::Connection->new(
$connection_args
);
eval
{
$returned
=
$checker
->match(
$conn
);
};
ok(
$returned
eq
'1'
,
'local PTR match check, local'
) or diag(
'did not match a Net::Connection object when looking for local PTRs when the local matches'
);
$worked
=0;
eval
{
$checker
=Net::Connection::Match::RegexPTR->new( \
%fargs
);
$worked
=1;
};
ok(
$worked
eq
'1'
,
'init check, foreign'
) or diag(
'Calling Net::Connection::Match::RegexPTR->new resulted in... '
.$@);
$returned
=0;
eval
{
$returned
=
$checker
->match(
$conn
);
};
ok(
$returned
eq
'0'
,
'foreign PTR match check, local'
) or diag(
'matched a Net::Connection object when looking for foreign PTRs when the local matches'
);
$returned
=0;
$connection_args
->{local_ptr}=
'test'
;
$connection_args
->{foreign_ptr}=
'foo.bar'
;
$conn
=Net::Connection->new(
$connection_args
);
eval
{
$returned
=
$checker
->match(
$conn
);
};
ok(
$returned
eq
'1'
,
'local PTR match check, foreign'
) or diag(
'did not match a Net::Connection object when looking for foreign PTRs when the foreign matches'
);
done_testing(13);