Skip to content

Commit

Permalink
Added a test for 500 from requests without CR
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwald committed Mar 28, 2013
1 parent 4acb573 commit a905cf0
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions t/lf_only_request.t
@@ -0,0 +1,45 @@
use strict;
use warnings;

use Plack::Test;
use HTTP::Request;
use Test::More;

{

package Starman::Server;

# override so we can mangle the HTTP request
use subs 'sysread';

*Starman::Server::sysread = sub {
my $read = CORE::sysread( $_[0], $_[1], $_[2] );
$_[1] =~ s/\r\n/\n/g;

return $read;
};

}

$Plack::Test::Impl = "Server";
$ENV{PLACK_SERVER} = 'Starman';

my $app = sub {
my $env = shift;
return sub {
my $response = shift;
my $writer = $response->( [ 200, [ 'Content-Type', 'text/plain' ] ] );
}
};

test_psgi $app, sub {
my $cb = shift;

my $req = HTTP::Request->new( GET => "http://localhost/" );

my $res = $cb->($req);
is $res->code, 200;

};

done_testing;

0 comments on commit a905cf0

Please sign in to comment.