#!perl -T
use
5.006;
BEGIN {
use_ok(
'Net::Connection::Match::Username'
) ||
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'
,
uid
=>0,
username
=>
'root'
};
my
%args
=(
usernames
=>[
'root'
,
'foo'
,
],
);
my
$checker
;
my
$worked
=0;
eval
{
$checker
=Net::Connection::Match::Username->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::Username->new( \
%args
);
$worked
=1;
};
ok(
$worked
eq
'1'
,
'init check'
) or diag(
'Calling Net::Connection::Match::Username->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'
,
'match check'
) or diag(
'Failed to match a matching good connection'
);
$connection_args
->{username}=
'linda'
;
$conn
=Net::Connection->new(
$connection_args
);
$returned
=1;
eval
{
$returned
=
$checker
->match(
$conn
);
};
ok(
$returned
eq
'0'
,
'non-match check'
) or diag(
'Matched a connection that it should not of'
);
done_testing(7);