Bring _log_pager back from the dead to somewhat unfuck log action..
[catagits/Gitalist.git] / t / 01app.t
CommitLineData
89de6a33 1#!/usr/bin/env perl
2use strict;
3use warnings;
a38862e5 4use Test::More;
5use FindBin qw/$Bin/;
89de6a33 6
a38862e5 7BEGIN {
8 $ENV{GITALIST_CONFIG} = $Bin;
eb7978f3 9 $ENV{GITALIST_REPO_DIR} = '';
1819cb18 10 use_ok 'Catalyst::Test', 'Gitalist';
a38862e5 11}
28e35997 12
840edca5 13for my $p ('', qw/ repo1 nodescription bare.git opml /) {
2a172f65 14 my $path = '/' . $p;
5fd1f586 15 ok( request($path)->is_success, "$path should succeed");
16}
28e35997 17
2a172f65 18my $response = request('/DoesNotExist');
82bc0f05 19is $response->code, 404, 'invalid repository 404s';
20like $response->content, qr/Page not found/, 'invalid repository handled correctly';
b4439022 21
2a172f65 22is request('/../../../')->code, 404, 'directory traversal failed';
23is request('/..%2F..%2F../')->code, 404, 'directory traversal failed';
b4439022 24
f9466a6c 25{
f2338f4f 26 # URI tests for repo1
f9466a6c 27 local *test = curry_test_uri('repo1');
28 test('/summary');
29 test('/shortlog');
30 test('/log');
d8abdf1c 31 test('/reflog');
f9466a6c 32 test('/commit');
33 test('/commitdiff', 'h=36c6c6708b8360d7023e8a1649c45bcf9b3bd818');
34 test('/tree', 'h=145dc3ef5d307be84cb9b325d70bd08aeed0eceb;hb=36c6c6708b8360d7023e8a1649c45bcf9b3bd818');
d8abdf1c 35 test('/search', 'h=36c6c6708b8360d7023e8a1649c45bcf9b3bd818&f=&type=commit&text=added');
6cfcd548 36 test('/blobdiff', 'f=file1;h=5716ca5987cbf97d6bb54920bea6adde242d87e6;hp=257cc5642cb1a054f08cc83f2d943e56fd3ebe99;hb=refs/heads/master;hpb=3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
8bb7649b 37 test('/blob', 'f=dir1/file2;hb=36c6c6708b8360d7023e8a1649c45bcf9b3bd818');
377bf360 38 test('/patch');
39 test('/patch', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e');
40 test('/patch', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e;hp=3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
61ba8635 41 test('/patches');
42 test('/patches', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e');
43 test('/patches', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e;hp=3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
f9466a6c 44}
e8b87f6b 45
a38862e5 46done_testing;
47
f2338f4f 48sub test_uri {
49 my ($p, $uri, $qs) = @_;
50 $qs ||= '';
51 my $request = "$uri?p=repo1;$qs";
f2338f4f 52 my $response = request($request);
6cfcd548 53 ok($response->is_success, "ok $p - $uri - $qs");
f2338f4f 54}
55
56sub curry_test_uri {
57 my $p = shift;
58 sub {
46aab84d 59 my ($uri, $qs) = @_;
60 test_uri($p, $uri, $qs);
f2338f4f 61 };
62};