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
|
package Test::HTTP::LocalServer;
# start a fake webserver, fork, and connect to ourselves
use strict;
use LWP::Simple;
use FindBin;
use File::Spec;
use File::Temp;
use URI::URL qw();
use Carp qw(carp croak);
use vars qw($VERSION);
$VERSION = '0.50';
=head2 C<Test::HTTP::LocalServer-E<gt>spawn %ARGS>
This spawns a new HTTP server. The server will stay running until
$server->stop
is called.
Valid arguments are :
html => scalar containing the page to be served
file => filename containing the page to be served
debug => 1 # to make the spawned server output debug information
All served HTML will have the first %s replaced by the current location.
=cut
sub spawn {
my ($class,%args) = @_;
my $self = { %args };
bless $self,$class;
local $ENV{TEST_HTTP_VERBOSE} = 1
if (delete $args{debug});
$self->{delete} = [];
if (my $html = delete $args{html}) {
# write the html to a temp file
my ($fh,$tempfile) = File::Temp::tempfile();
binmode $fh;
print $fh $html
or die "Couldn't write tempfile $tempfile : $!";
close $fh;
push @{$self->{delete}},$tempfile;
$args{file} = $tempfile;
};
my ($fh,$logfile) = File::Temp::tempfile();
close $fh;
push @{$self->{delete}},$logfile;
$self->{logfile} = $logfile;
my $web_page = delete $args{file} || "";
#if (defined $web_page) {
# $web_page = qq{$web_page}
#} else {
# $web_page = "";
#};
my $server_file = File::Spec->catfile( $FindBin::Bin,File::Spec->updir,'inc','Test','HTTP','log-server' );
open my $server, qq'$^X "$server_file" "$web_page" "$logfile" |'
or die "Couldn't spawn fake server $server_file : $!";
my $url = <$server>;
chomp $url;
die "Couldn't find fake server url" unless $url;
$self->{_fh} = $server;
$self->{_server_url} = URI::URL->new($url);
$self;
};
=head2 C<$server-E<gt>port>
This returns the port of the current server. As new instances
will most likely run under a different port, this is convenient
if you need to compare results from two runs.
=cut
sub port {
carp __PACKAGE__ . "::port called without a server" unless $_[0]->{_server_url};
$_[0]->{_server_url}->port
};
=head2 C<$server-E<gt>url>
This returns the url where you can contact the server. This url
is valid until the C<$server> goes out of scope or you call
$server->stop;
=cut
sub url {
$_[0]->{_server_url}->abs
};
=head2 C<$server-E<gt>stop>
This stops the server process by requesting a special
url.
=cut
sub stop {
get( $_[0]->{_server_url} . "quit_server" );
undef $_[0]->{_server_url}
};
=head2 C<$server-E<gt>get_output>
This stops the server by calling C<stop> and then returns the
output of the server process. This output will be a list of
all requests made to the server concatenated together
as a string.
=cut
sub get_output {
my ($self) = @_;
return get( $self->{_server_url} . "get_server_log" );
};
sub DESTROY {
$_[0]->stop if $_[0]->{_server_url};
for my $file (@{$_[0]->{delete}}) {
unlink $file or warn "Couldn't remove tempfile $file : $!\n";
};
};
=head1 EXPORT
None by default.
=head1 COPYRIGHT AND LICENSE
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Copyright (C) 2003 Max Maischein
=head1 AUTHOR
Max Maischein, E<lt>corion@cpan.orgE<gt>
Please contact me if you find bugs or otherwise improve the module. More tests are also very welcome !
=head1 SEE ALSO
L<WWW::Mechanize>,L<WWW::Mechanize::Shell>
=cut
1;
|