1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235
|
package ProFTPD::Tests::Modules::mod_ctrls;
use lib qw(t/lib);
use base qw(ProFTPD::TestSuite::Child);
use strict;
use File::Spec;
use IO::Handle;
use ProFTPD::TestSuite::FTP;
use ProFTPD::TestSuite::Utils qw(:auth :config :running :test :testsuite);
$| = 1;
my $order = 0;
my $TESTS = {
ctrls_lsctrl_ok => {
order => ++$order,
test_class => [qw(forking)],
},
ctrls_lsctrl_system_user_ok => {
order => ++$order,
test_class => [qw(forking)],
},
};
sub new {
return shift()->SUPER::new(@_);
}
sub list_tests {
return testsuite_get_runnable_tests($TESTS);
}
sub ftpdctl {
my $sock_file = shift;
my $ctrl_cmd = shift;
my $ftpdctl_bin;
if ($ENV{PROFTPD_TEST_PATH}) {
$ftpdctl_bin = "$ENV{PROFTPD_TEST_PATH}/ftpdctl";
} else {
$ftpdctl_bin = '../ftpdctl';
}
my $cmd = "$ftpdctl_bin -s $sock_file $ctrl_cmd";
if ($ENV{TEST_VERBOSE}) {
print STDERR "Executing ftpdctl: $cmd\n";
}
my @lines = `$cmd`;
return \@lines;
}
sub ctrls_lsctrl_ok {
my $self = shift;
my $tmpdir = $self->{tmpdir};
my $config_file = "$tmpdir/ctrls.conf";
my $pid_file = File::Spec->rel2abs("$tmpdir/ctrls.pid");
my $scoreboard_file = File::Spec->rel2abs("$tmpdir/ctrls.scoreboard");
my $log_file = File::Spec->rel2abs('tests.log');
my $ctrls_sock = File::Spec->rel2abs("$tmpdir/ctrls.sock");
my ($user, $group) = config_get_identity();
my $config = {
PidFile => $pid_file,
ScoreboardFile => $scoreboard_file,
SystemLog => $log_file,
IfModules => {
'mod_ctrls.c' => {
ControlsEngine => 'on',
ControlsLog => $log_file,
ControlsSocket => $ctrls_sock,
ControlsACLs => "all allow user root,$user",
ControlsSocketACL => "allow user root,$user",
},
'mod_delay.c' => {
DelayEngine => 'off',
},
},
};
my ($port, $config_user, $config_group) = config_write($config_file, $config);
my $ex;
# Start server
server_start($config_file);
sleep(1);
eval {
my $lines = ftpdctl($ctrls_sock, 'lsctrl');
$lines = [grep { /mod_ctrls\.c/ } @$lines];
my $expected = 4;
my $matches = scalar(@$lines);
$self->assert($expected == $matches,
test_msg("Expected $expected, got $matches"));
my $actions = '';
foreach my $line (@$lines) {
if ($line =~ /^ftpdctl: (\S+) \S+$/) {
$actions .= "$1 ";
}
}
$expected = 'help insctrl lsctrl rmctrl ';
$self->assert($expected eq $actions,
test_msg("Expected '$expected', got '$actions'"));
};
if ($@) {
$ex = $@;
}
server_stop($pid_file);
if ($ex) {
die($ex);
}
unlink($log_file);
}
sub ctrls_lsctrl_system_user_ok {
my $self = shift;
my $tmpdir = $self->{tmpdir};
my $config_file = "$tmpdir/ctrls.conf";
my $pid_file = File::Spec->rel2abs("$tmpdir/ctrls.pid");
my $scoreboard_file = File::Spec->rel2abs("$tmpdir/ctrls.scoreboard");
my $log_file = File::Spec->rel2abs('tests.log');
my $auth_user_file = File::Spec->rel2abs("$tmpdir/ctrls.passwd");
my $auth_group_file = File::Spec->rel2abs("$tmpdir/ctrls.group");
my $user = 'proftpd';
my $passwd = 'test';
my $home_dir = File::Spec->rel2abs($tmpdir);
my $uid = 500;
my $gid = 500;
auth_user_write($auth_user_file, $user, $passwd, $uid, $gid, $home_dir,
'/bin/bash');
auth_group_write($auth_group_file, 'ftpd', $gid, $user);
my $ctrls_sock = File::Spec->rel2abs("$tmpdir/ctrls.sock");
my ($sys_user, $sys_group) = config_get_identity();
my $config = {
PidFile => $pid_file,
ScoreboardFile => $scoreboard_file,
SystemLog => $log_file,
TraceLog => $log_file,
Trace => 'DEFAULT:10',
AuthUserFile => $auth_user_file,
AuthGroupFile => $auth_group_file,
AuthOrder => 'mod_auth_file.c',
IfModules => {
'mod_ctrls.c' => {
ControlsEngine => 'on',
ControlsLog => $log_file,
ControlsSocket => $ctrls_sock,
ControlsACLs => "all allow user root,$sys_user",
ControlsSocketACL => "allow user root,$sys_user",
},
'mod_delay.c' => {
DelayEngine => 'off',
},
},
};
my ($port, $config_user, $config_group) = config_write($config_file, $config);
my $ex;
# Start server
server_start($config_file);
sleep(1);
eval {
my $lines = ftpdctl($ctrls_sock, 'lsctrl');
$lines = [grep { /mod_ctrls\.c/ } @$lines];
my $expected = 4;
my $matches = scalar(@$lines);
$self->assert($expected == $matches,
test_msg("Expected $expected, got $matches"));
my $actions = '';
foreach my $line (@$lines) {
if ($line =~ /^ftpdctl: (\S+) \S+$/) {
$actions .= "$1 ";
}
}
$expected = 'help insctrl lsctrl rmctrl ';
$self->assert($expected eq $actions,
test_msg("Expected '$expected', got '$actions'"));
};
if ($@) {
$ex = $@;
}
server_stop($pid_file);
if ($ex) {
die($ex);
}
unlink($log_file);
}
1;
|