Plack-App-GitSmartHttp
view release on metacpan or search on metacpan
t/07_no_access_wrong_method_rcp.t view on Meta::CPAN
use strict;
use Test::More;
use File::Which qw(which);
plan skip_all => 'could not find git' unless which('git');
use Plack::Test;
use HTTP::Request::Common;
use Plack::App::GitSmartHttp;
my $app = Plack::App::GitSmartHttp->new(
root => "t/test_repos",
upload_pack => 1,
received_pack => 1,
);
test_psgi $app, sub {
my $cb = shift;
my $res = $cb->( GET "/repo1/git-upload-pack" );
is $res->code, 405;
};
test_psgi $app, sub {
my $cb = shift;
my $req = HTTP::Request->new( GET => "/repo1/git-upload-pack" );
$req->protocol("HTTP/1.0");
my $res = $cb->($req);
is $res->code, 400;
};
done_testing
( run in 0.771 second using v1.01-cache-2.11-cpan-140bd7fdf52 )