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