forked from proftpd/proftpd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request proftpd#1297 from proftpd/limit-help-issue1296
Issue proftpd#1296: Support <Limit> configurations for the `HELP`, `SITE HEL…
- Loading branch information
Showing
4 changed files
with
300 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/usr/bin/env perl | ||
|
||
use lib qw(t/lib); | ||
use strict; | ||
|
||
use Test::Unit::HarnessUnit; | ||
|
||
$| = 1; | ||
|
||
my $r = Test::Unit::HarnessUnit->new(); | ||
$r->start("ProFTPD::Tests::Config::Limit::HELP"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,255 @@ | ||
package ProFTPD::Tests::Config::Limit::HELP; | ||
|
||
use lib qw(t/lib); | ||
use base qw(ProFTPD::TestSuite::Child); | ||
use strict; | ||
|
||
use File::Path qw(mkpath); | ||
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 = { | ||
limit_help_issue1296 => { | ||
order => ++$order, | ||
test_class => [qw(forking)], | ||
}, | ||
|
||
limit_site_help_issue1296 => { | ||
order => ++$order, | ||
test_class => [qw(forking)], | ||
}, | ||
|
||
}; | ||
|
||
sub new { | ||
return shift()->SUPER::new(@_); | ||
} | ||
|
||
sub list_tests { | ||
return testsuite_get_runnable_tests($TESTS); | ||
} | ||
|
||
sub limit_help_issue1296 { | ||
my $self = shift; | ||
my $tmpdir = $self->{tmpdir}; | ||
my $setup = test_setup($tmpdir, 'limit'); | ||
|
||
my $config = { | ||
PidFile => $setup->{pid_file}, | ||
ScoreboardFile => $setup->{scoreboard_file}, | ||
SystemLog => $setup->{log_file}, | ||
TraceLog => $setup->{log_file}, | ||
Trace => 'command:10 directory:10', | ||
|
||
AuthUserFile => $setup->{auth_user_file}, | ||
AuthGroupFile => $setup->{auth_group_file}, | ||
DefaultChdir => '~', | ||
|
||
IfModules => { | ||
'mod_delay.c' => { | ||
DelayEngine => 'off', | ||
}, | ||
}, | ||
|
||
Limit => { | ||
HELP => { | ||
DenyAll => '', | ||
}, | ||
} | ||
}; | ||
|
||
my ($port, $config_user, $config_group) = config_write($setup->{config_file}, | ||
$config); | ||
|
||
# Open pipes, for use between the parent and child processes. Specifically, | ||
# the child will indicate when it's done with its test by writing a message | ||
# to the parent. | ||
my ($rfh, $wfh); | ||
unless (pipe($rfh, $wfh)) { | ||
die("Can't open pipe: $!"); | ||
} | ||
|
||
my $ex; | ||
|
||
# Fork child | ||
$self->handle_sigchld(); | ||
defined(my $pid = fork()) or die("Can't fork: $!"); | ||
if ($pid) { | ||
eval { | ||
my $client = ProFTPD::TestSuite::FTP->new('127.0.0.1', $port); | ||
|
||
eval { $client->help() }; | ||
unless ($@) { | ||
die("HELP command succeeded unexpectedly"); | ||
} | ||
|
||
my $resp_code = $client->response_code(); | ||
my $resp_msg = $client->response_msg(); | ||
|
||
my $expected = 501; | ||
$self->assert($expected == $resp_code, | ||
test_msg("Expected response code $expected, got $resp_code")); | ||
|
||
$expected = 'HELP: Permission denied'; | ||
$self->assert($expected eq $resp_msg, | ||
test_msg("Expected response message '$expected', got '$resp_msg'")); | ||
|
||
$client->login($setup->{user}, $setup->{passwd}); | ||
eval { $client->help() }; | ||
unless ($@) { | ||
die("HELP command succeeded unexpectedly"); | ||
} | ||
|
||
$resp_code = $client->response_code(); | ||
$resp_msg = $client->response_msg(); | ||
|
||
$expected = 501; | ||
$self->assert($expected == $resp_code, | ||
test_msg("Expected response code $expected, got $resp_code")); | ||
|
||
$expected = 'HELP: Permission denied'; | ||
$self->assert($expected eq $resp_msg, | ||
test_msg("Expected response message '$expected', got '$resp_msg'")); | ||
|
||
$client->quit(); | ||
}; | ||
if ($@) { | ||
$ex = $@; | ||
} | ||
|
||
$wfh->print("done\n"); | ||
$wfh->flush(); | ||
|
||
} else { | ||
eval { server_wait($setup->{config_file}, $rfh) }; | ||
if ($@) { | ||
warn($@); | ||
exit 1; | ||
} | ||
|
||
exit 0; | ||
} | ||
|
||
# Stop server | ||
server_stop($setup->{pid_file}); | ||
$self->assert_child_ok($pid); | ||
|
||
test_cleanup($setup->{log_file}, $ex); | ||
} | ||
|
||
sub limit_site_help_issue1296 { | ||
my $self = shift; | ||
my $tmpdir = $self->{tmpdir}; | ||
my $setup = test_setup($tmpdir, 'limit'); | ||
|
||
my $config = { | ||
PidFile => $setup->{pid_file}, | ||
ScoreboardFile => $setup->{scoreboard_file}, | ||
SystemLog => $setup->{log_file}, | ||
TraceLog => $setup->{log_file}, | ||
Trace => 'command:10 directory:10', | ||
|
||
AuthUserFile => $setup->{auth_user_file}, | ||
AuthGroupFile => $setup->{auth_group_file}, | ||
DefaultChdir => '~', | ||
|
||
IfModules => { | ||
'mod_delay.c' => { | ||
DelayEngine => 'off', | ||
}, | ||
}, | ||
|
||
Limit => { | ||
SITE_HELP => { | ||
DenyAll => '', | ||
}, | ||
} | ||
}; | ||
|
||
my ($port, $config_user, $config_group) = config_write($setup->{config_file}, | ||
$config); | ||
|
||
# Open pipes, for use between the parent and child processes. Specifically, | ||
# the child will indicate when it's done with its test by writing a message | ||
# to the parent. | ||
my ($rfh, $wfh); | ||
unless (pipe($rfh, $wfh)) { | ||
die("Can't open pipe: $!"); | ||
} | ||
|
||
my $ex; | ||
|
||
# Fork child | ||
$self->handle_sigchld(); | ||
defined(my $pid = fork()) or die("Can't fork: $!"); | ||
if ($pid) { | ||
eval { | ||
my $client = ProFTPD::TestSuite::FTP->new('127.0.0.1', $port); | ||
|
||
eval { $client->site('help') }; | ||
unless ($@) { | ||
die("SITE HELP command succeeded unexpectedly"); | ||
} | ||
|
||
my $resp_code = $client->response_code(); | ||
my $resp_msg = $client->response_msg(); | ||
|
||
my $expected = 501; | ||
$self->assert($expected == $resp_code, | ||
test_msg("Expected response code $expected, got $resp_code")); | ||
|
||
$expected = 'HELP: Permission denied'; | ||
$self->assert($expected eq $resp_msg, | ||
test_msg("Expected response message '$expected', got '$resp_msg'")); | ||
|
||
$client->login($setup->{user}, $setup->{passwd}); | ||
eval { $client->site('help') }; | ||
unless ($@) { | ||
die("SITE HELP command succeeded unexpectedly"); | ||
} | ||
|
||
$resp_code = $client->response_code(); | ||
$resp_msg = $client->response_msg(); | ||
|
||
$expected = 501; | ||
$self->assert($expected == $resp_code, | ||
test_msg("Expected response code $expected, got $resp_code")); | ||
|
||
$expected = 'HELP: Permission denied'; | ||
$self->assert($expected eq $resp_msg, | ||
test_msg("Expected response message '$expected', got '$resp_msg'")); | ||
|
||
$client->quit(); | ||
}; | ||
if ($@) { | ||
$ex = $@; | ||
} | ||
|
||
$wfh->print("done\n"); | ||
$wfh->flush(); | ||
|
||
} else { | ||
eval { server_wait($setup->{config_file}, $rfh) }; | ||
if ($@) { | ||
warn($@); | ||
exit 1; | ||
} | ||
|
||
exit 0; | ||
} | ||
|
||
# Stop server | ||
server_stop($setup->{pid_file}); | ||
$self->assert_child_ok($pid); | ||
|
||
test_cleanup($setup->{log_file}, $ex); | ||
} | ||
|
||
1; |