X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FWeb%2FSimple%2FApplication.pm;h=febd830208a533a5348b77bf024009e5d23c7876;hb=8c3623e2a1cd54122eee642e9816bd4b3acb52bb;hp=87d3259d6812ec5221a8a3c65f16bd9b31083630;hpb=b5b4423b5305950d881360799ec3e24d138c7d89;p=catagits%2FWeb-Simple.git diff --git a/lib/Web/Simple/Application.pm b/lib/Web/Simple/Application.pm index 87d3259..febd830 100644 --- a/lib/Web/Simple/Application.pm +++ b/lib/Web/Simple/Application.pm @@ -1,5 +1,7 @@ package Web::Simple::Application; +use Scalar::Util 'weaken'; + use Moo; has 'config' => ( @@ -85,7 +87,8 @@ sub run { my $self = shift; if ( $ENV{PHP_FCGI_CHILDREN} || $ENV{FCGI_ROLE} || $ENV{FCGI_SOCKET_PATH} - || -S STDIN # STDIN is a socket, almost certainly FastCGI + || ( -S STDIN && !$ENV{GATEWAY_INTERFACE} ) + # If STDIN is a socket, almost certainly FastCGI, except for mod_cgid ) { return $self->_run_fcgi; } elsif ($ENV{GATEWAY_INTERFACE}) { @@ -97,7 +100,7 @@ sub run { my @args = @ARGV; - unshift(@args, 'GET') if $args[0] =~ m{^/}; + unshift(@args, 'GET') if $args[0] =~ m{^/} or $args[0] =~ m{\@}; $self->_run_cli_test_request(@args); } @@ -108,6 +111,14 @@ sub _test_request_spec_to_http_request { # if it's a reference, assume a request object return $method if ref($method); + if ($path =~ s/^(.*?)\@//) { + my $basic = $1; + require MIME::Base64; + unshift @rest, 'Authorization:', 'Basic '.MIME::Base64::encode($basic); + } + + require HTTP::Request; + my $request = HTTP::Request->new($method => $path); my @params; @@ -142,7 +153,6 @@ sub _test_request_spec_to_http_request { sub run_test_request { my ($self, @req) = @_; - require HTTP::Request; require Plack::Test; my $request = $self->_test_request_spec_to_http_request(@req); @@ -296,6 +306,10 @@ The body of the response is sent to STDOUT and the headers to STDERR, so will generally do the right thing. +To send basic authentication credentials, use user:pass@ syntax - + + $ ./myapp GET bob:secret@/protected/path + Additionally, you can treat the file as though it were a standard PSGI application file (*.psgi). For example you can start up up with C @@ -367,6 +381,13 @@ this to create a form style message body. If you need to test an upload, then create an L object by hand or use the C subroutine provided by L. +If you prefix the URL with 'user:pass@' this will be converted into +an Authorization header for HTTP basic auth: + + my $res = $app->run_test_request( + GET => 'bob:secret@/protected/resource' + ); + If pairs are passed where the key ends in :, it is instead treated as a headers, so: