mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
65 lines
1.3 KiB
Perl
65 lines
1.3 KiB
Perl
#!/usr/bin/perl -w
|
|
|
|
package FTPTest;
|
|
|
|
use strict;
|
|
|
|
use FTPServer;
|
|
use WgetTest;
|
|
|
|
our @ISA = qw(WgetTest);
|
|
my $VERSION = 0.01;
|
|
|
|
|
|
{
|
|
my %_attr_data = ( # DEFAULT
|
|
);
|
|
|
|
sub _default_for
|
|
{
|
|
my ($self, $attr) = @_;
|
|
return $_attr_data{$attr} if exists $_attr_data{$attr};
|
|
return $self->SUPER::_default_for($attr);
|
|
}
|
|
|
|
sub _standard_keys
|
|
{
|
|
my ($self) = @_;
|
|
($self->SUPER::_standard_keys(), keys %_attr_data);
|
|
}
|
|
}
|
|
|
|
|
|
sub _setup_server {
|
|
my $self = shift;
|
|
|
|
foreach my $url (keys %{$self->{_input}}) {
|
|
my $filename = $url;
|
|
$filename =~ s/^\///;
|
|
open (FILE, ">$filename")
|
|
or return "Test failed: cannot open input file $filename\n";
|
|
|
|
print FILE $self->{_input}->{$url}->{content}
|
|
or return "Test failed: cannot write input file $filename\n";
|
|
|
|
close (FILE);
|
|
}
|
|
}
|
|
|
|
|
|
sub _launch_server {
|
|
my $self = shift;
|
|
my $synch_func = shift;
|
|
|
|
my $server = FTPServer->new (LocalAddr => 'localhost',
|
|
LocalPort => '8021',
|
|
ReuseAddr => 1,
|
|
rootDir => "$self->{_workdir}/$self->{_name}/input") or die "Cannot create server!!!";
|
|
$server->run ($synch_func);
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: et ts=4 sw=4
|
|
|