Clean tests up to test both top level and fragment uris in the same code and remove...
[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 use lib "$Bin/lib";
7
8 BEGIN {
9     $ENV{GITALIST_CONFIG} = $Bin;
10     $ENV{GITALIST_REPO_DIR} = '';
11     use_ok 'Catalyst::Test', 'Gitalist';
12 }
13 use TestGitalist;
14
15 for my $p ('', qw{
16     repo1 nodescription bare.git opml search
17     fragment/collectionofrepositories
18 }) {
19     my $path = '/' . $p;
20     ok( request($path)->is_success, "$path should succeed");
21 }
22
23 my $response = request('/DoesNotExist');
24 is $response->code, 404, 'invalid repository 404s';
25 like $response->content, qr/Page not found/, 'invalid repository handled correctly';
26
27 # URI tests for repo1
28 foreach my $test (map {curry_test_uri($_)} ('fragment/repo1', 'repo1') ) {
29   $test->('');
30   $test->('shortlog');
31   $test->('log');
32   $test->('heads');
33   $test->('tags');
34   $test->('36c6c6708b8360d7023e8a1649c45bcf9b3bd818');
35   $test->('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/tree');
36   $test->('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/tree/dir1');
37   $test->('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/diff');
38   $test->('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/diff/plain');
39   #test->('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/shortlog/dir1');
40   $test->('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/history/dir1');
41   $test->('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/blame/file1');
42   $test->('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/blob/file1');
43 }
44
45 {
46   # URI tests for repo1
47   local *test = curry_test_uri('repo1');
48   test('search');
49   test('reflog');
50
51   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/patch');
52   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/patches/1');
53   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/patches/2');
54   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/raw/file1');
55
56   TODO: {
57       local $TODO = "FIXME";
58       test('search', 'type=commit&text=added');
59
60       # FIXME - What's the difference here?
61       #test('patch', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e');
62       #test('patch', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e;hp=3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
63       #test('patches', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e');
64       #test('patches', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e;hp=3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
65   }
66 }
67
68 done_testing;