Add tests for search uris
[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/ repo1 nodescription bare.git opml search /) {
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
25 {
26   # URI tests for repo1
27   local *test = curry_test_uri('repo1');
28   test('');
29   test('search');
30   test('shortlog');
31   test('log');
32   test('reflog');
33   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818');
34   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/tree');
35   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/diff');
36   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/patch');
37   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/patches/1');
38   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/patches/2');
39   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/history/dir1');
40   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/blame/file1');
41   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/raw/file1');
42   test('36c6c6708b8360d7023e8a1649c45bcf9b3bd818/blob/file1');
43
44   TODO: {
45       local $TODO = "FIXME";
46       test('search', 'type=commit&text=added');
47
48       # FIXME - What's the difference here?
49       #test('patch', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e');
50       #test('patch', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e;hp=3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
51       #test('patches', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e');
52       #test('patches', 'h=3f7567c7bdf7e7ebf410926493b92d398333116e;hp=3bc0634310b9c62222bb0e724c11ffdfb297b4ac');
53   }
54 }
55
56 done_testing;