X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FTest.pm;h=affc9f72bde2cd19c05314b90f85fbefc0019e01;hb=7bcd5e155575e1e2ccc82c00db6eb50daa7874c5;hp=1810aff3e4362c663b7af3987e51e0e33982289c;hpb=49faa307375117d01ccb6453642c0cf77244e66f;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Test.pm b/lib/Catalyst/Test.pm index 1810aff..affc9f7 100644 --- a/lib/Catalyst/Test.pm +++ b/lib/Catalyst/Test.pm @@ -12,7 +12,6 @@ require Catalyst; my $class; $ENV{CATALYST_ENGINE} = 'CGI'; -$ENV{CATALYST_TEST} = 1; =head1 NAME @@ -21,8 +20,6 @@ Catalyst::Test - Test Catalyst applications =head1 SYNOPSIS # Helper - script/cgi-server.pl - script/server.pl script/test.pl # Tests @@ -33,9 +30,6 @@ Catalyst::Test - Test Catalyst applications # Request perl -MCatalyst::Test=MyApp -e1 index.html - # Server - perl -MCatalyst::Test=MyApp -e1 3000 - =head1 DESCRIPTION Test Catalyst applications. @@ -60,8 +54,7 @@ Returns a C object. no warnings; CHECK { if ( ( caller(0) )[1] eq '-e' ) { - if ( $ARGV[0] =~ /^\d+$/ ) { server( $ARGV[0] ) } - else { print request( $ARGV[0] || 'http://localhost' )->content } + print request( $ARGV[0] || 'http://localhost' )->content; } } } @@ -89,13 +82,16 @@ sub request { $request = HTTP::Request->new( 'GET', $request ); } local ( *STDIN, *STDOUT ); - my %clean = %ENV; + my %clean = %ENV; + my $output = ''; $ENV{CONTENT_TYPE} ||= $request->header('Content-Type') || ''; $ENV{CONTENT_LENGTH} ||= $request->header('Content-Length') || ''; $ENV{GATEWAY_INTERFACE} ||= 'CGI/1.1'; + $ENV{HTTP_USER_AGENT} ||= 'Catalyst'; $ENV{HTTP_HOST} ||= $request->uri->host || 'localhost'; $ENV{QUERY_STRING} ||= $request->uri->query || ''; $ENV{REQUEST_METHOD} ||= $request->method; + $ENV{PATH_INFO} ||= $request->uri->path || '/'; $ENV{SCRIPT_NAME} ||= $request->uri->path || '/'; $ENV{SERVER_NAME} ||= $request->uri->host || 'localhost'; $ENV{SERVER_PORT} ||= $request->uri->port; @@ -121,87 +117,6 @@ sub request { return HTTP::Response->parse($output); } -=head3 server - -Starts a testserver. - - Catalyst::Test::server(3000); - -=cut - -sub server { - my ( $port, $script ) = @_; - - # Listen - my $tcp = getprotobyname('tcp'); - socket( HTTPDaemon, PF_INET, SOCK_STREAM, $tcp ) or die $!; - setsockopt( HTTPDaemon, SOL_SOCKET, SO_REUSEADDR, pack( "l", 1 ) ) - or warn $!; - bind( HTTPDaemon, sockaddr_in( $port, INADDR_ANY ) ) or die $!; - listen( HTTPDaemon, SOMAXCONN ) or die $!; - - print "You can connect to your server at http://localhost:$port\n"; - - # Process - my %clean = %ENV; - for ( ; accept( Remote, HTTPDaemon ) ; close Remote ) { - *STDIN = *Remote; - *STDOUT = *Remote; - my $remote_sockaddr = getpeername(STDIN); - my ( undef, $iaddr ) = sockaddr_in($remote_sockaddr); - my $peername = gethostbyaddr( $iaddr, AF_INET ) || "localhost"; - my $peeraddr = inet_ntoa($iaddr) || "127.0.0.1"; - my $local_sockaddr = getsockname(STDIN); - my ( undef, $localiaddr ) = sockaddr_in($local_sockaddr); - my $localname = gethostbyaddr( $localiaddr, AF_INET ) || 'localhost'; - my $localaddr = inet_ntoa($localiaddr) || '127.0.0.1'; - my $chunk; - - while ( sysread( STDIN, my $buff, 1 ) ) { - last if $buff eq "\n"; - $chunk .= $buff; - } - my ( $method, $request_uri, $proto, undef ) = split /\s+/, $chunk; - my ( $file, undef, $query_string ) = - ( $request_uri =~ /([^?]*)(\?(.*))?/ ); - last if ( $method !~ /^(GET|POST|HEAD)$/ ); - %ENV = %clean; - - $chunk = ''; - while ( sysread( STDIN, my $buff, 1 ) ) { - if ( $buff eq "\n" ) { - $chunk =~ s/[\r\l\n\s]+$//; - if ( $chunk =~ /^([\w\-]+): (.+)/i ) { - my $tag = uc($1); - $tag =~ s/^COOKIES$/COOKIE/; - my $val = $2; - $tag =~ s/-/_/g; - $tag = "HTTP_" . $tag - unless ( grep /^$tag$/, qw(CONTENT_LENGTH CONTENT_TYPE) ); - if ( $ENV{$tag} ) { $ENV{$tag} .= "; $val" } - else { $ENV{$tag} = $val } - } - last if $chunk =~ /^$/; - $chunk = ''; - } - else { $chunk .= $buff } - } - $ENV{SERVER_PROTOCOL} = $proto; - $ENV{SERVER_PORT} = $port; - $ENV{SERVER_NAME} = $localname; - $ENV{SERVER_URL} = "http://$localname:$port/"; - $ENV{PATH_INFO} = $file; - $ENV{REQUEST_URI} = $request_uri; - $ENV{REQUEST_METHOD} = $method; - $ENV{REMOTE_ADDR} = $peeraddr; - $ENV{REMOTE_HOST} = $peername; - $ENV{QUERY_STRING} = $query_string || ''; - $ENV{CONTENT_TYPE} ||= 'multipart/form-data'; - $ENV{SERVER_SOFTWARE} ||= "Catalyst/$Catalyst::VERSION"; - $script ? print STDOUT `$script` : $class->run; - } -} - =head1 SEE ALSO L.